From b5f0d946b8a4e56de0d3d07b482c17d11b0fde42 Mon Sep 17 00:00:00 2001
From: Radhika Ahuja <36571530+ahujaradhika@users.noreply.github.com>
Date: Fri, 1 May 2020 15:56:30 -0700
Subject: [PATCH 1/3] Updating docs rebase (#94)
* updated docs
* updated docs
* updated command line docs
* Update command-line.md
* added installations info
* updating docs
* updating docs
* initial map + LA county boundary
* neighborhood boundaries
* interactivity on map
* python scraping script
* added a cron job
* add hospitals, put cases on map
* turned on scheduler with commented out jobs
* Delete schedule_scraper.yml
* updated scraper workflow
* temporary change for testing
* Update schedule_scraper.yml
* add per capita toggle. add LB & pasadena cases
* switched dataset for hospitals, fixed typo.
* add layer control
* process data in python script - write directly to geojson
* fix bug
* base line chart
* added beds lines
* updated line chart
* changed colors
* hospital icon attempt
* changed call to L.marker to include modified icons
* fixed path
* updated map styling + hospitals chart
* removed scale change
* UCLA icon added
* tracked png files
* fixed some mobile issues for chart
* show ucla icon, add tooltip for markers
* css style fixes
* increased width of map
* change icon color
* Update schedule_scraper.yml
* Update schedule_scraper.yml
* Rename 2020-04-19-covid-hospitals.md to 2020-04-20-covid-hospitals.md
* update py script, latest data
* 4/19 data
* updated cover photo
* updated cover photo
* added custom legend
* removed model text clarification
* updated python file
* removed docs
* changed docs landing page
* several doc files
Co-authored-by: Laurel Woods
Co-authored-by: Andrew
Co-authored-by: sydneyekovach
Co-authored-by: mattiesansev
---
docs/advanced/frontend.md | 13 ++
docs/beginner/apis.md | 6 +
docs/beginner/chartjs.md | 9 +
docs/beginner/command-line.md | 65 +++++++
docs/beginner/git.md | 84 +++++++++
docs/beginner/good-code-practices.md | 19 +++
docs/beginner/good-visual-practices.md | 7 +
docs/beginner/installations.md | 85 ++++++++++
docs/beginner/markdown.md | 49 ++++++
docs/beginner/website-code.md | 218 ++++++++++++++++++++++++
docs/beginner/workflow.md | 85 ++++++++++
docs/index.html | 14 +-
docs/rough_work.md | 226 +++++++++++++++++++++++++
docs/template.md | 43 +++++
docs/todo.md | 10 ++
15 files changed, 929 insertions(+), 4 deletions(-)
create mode 100644 docs/advanced/frontend.md
create mode 100644 docs/beginner/apis.md
create mode 100644 docs/beginner/chartjs.md
create mode 100644 docs/beginner/command-line.md
create mode 100644 docs/beginner/git.md
create mode 100644 docs/beginner/good-code-practices.md
create mode 100644 docs/beginner/good-visual-practices.md
create mode 100644 docs/beginner/installations.md
create mode 100644 docs/beginner/markdown.md
create mode 100644 docs/beginner/website-code.md
create mode 100644 docs/beginner/workflow.md
create mode 100644 docs/rough_work.md
create mode 100644 docs/template.md
create mode 100644 docs/todo.md
diff --git a/docs/advanced/frontend.md b/docs/advanced/frontend.md
new file mode 100644
index 000000000..5fd8a2b78
--- /dev/null
+++ b/docs/advanced/frontend.md
@@ -0,0 +1,13 @@
+---
+layout: page
+permalink: /docs/frontend/
+---
+
+# Summary
+- HTML
+- CSS
+- Javascript
+- Responsive Design
+
+# Notes
+- maybe include in Beginner topics
diff --git a/docs/beginner/apis.md b/docs/beginner/apis.md
new file mode 100644
index 000000000..b56823a69
--- /dev/null
+++ b/docs/beginner/apis.md
@@ -0,0 +1,6 @@
+---
+layout: page
+permalink: /docs/apis/
+---
+
+## What Are APIs?
diff --git a/docs/beginner/chartjs.md b/docs/beginner/chartjs.md
new file mode 100644
index 000000000..74971192c
--- /dev/null
+++ b/docs/beginner/chartjs.md
@@ -0,0 +1,9 @@
+---
+layout: page
+permalink: /docs/chartjs/
+---
+
+## ChartJS
+- (using tool when available)
+- (+basic HTML/CSS/JS)
+- responsiveness and media queries
\ No newline at end of file
diff --git a/docs/beginner/command-line.md b/docs/beginner/command-line.md
new file mode 100644
index 000000000..e781762e0
--- /dev/null
+++ b/docs/beginner/command-line.md
@@ -0,0 +1,65 @@
+---
+layout: page
+permalink: /docs/command-line/
+---
+
+## Intro to Command Line
+The command line (CLI) is a tool for you to interact with your computer without a graphical interface. You can type in your commands, and they are executed by the computer.
+Though it may seem unnecessary at first, it unlocks functionality and makes other commands more convenient.
+
+On a Mac, open up **Terminal**.
+On Windows, open up **WSL**.
+
+# Summary
+- [Understanding File Structure](http://linuxcommand.org/lc3_lts0020.php)
+- [The Basics](https://www.taniarascia.com/how-to-use-the-command-line-for-apple-macos-and-linux/)
+- [Anatomy Of A Command](#anatomy-of-a-command)
+- [Some Useful Shortcuts](#some-useful-shortcuts)
+
+# Anatomy Of A Command
+Every command has used in the CLI has the following format
+
+command argument -short_option -short_option=(parameter) --long_option --long_option=
+(parameter)
+
+- command: This is the name of the command your system understands, like cd or ls
+- argument: Some commands need arguments, for eg: `mkdir hello` needs the argument hello to create a directory named hello
+- options: Options are a way for you to specify options for a particular command. They may or may not require parameters, some may have optional parameters.
+
+Short options are options that are only one character long (and sometimes have a longer version). They are usually preceded by a single '-'.
+For example: `ls -l` (stands for long), prints the long version of files, showing details like size and date created.
+
+Long options are options that use a full name. They are usually preceded by a double '-'.
+For example: `ls --all` prints all files, even hidden ones. It's shorter version is `ls -a`
+
+Parameters
+Some command line options have parameters. For example, the command find takes an argument for where to search and it's option takes a parameter for the name of the file you're searching for.
+For example: `find . -name my-file.txt` looks for a file named 'my-file.txt' in your current directory. Here 'my-file.txt' is a parameter to the option -name (Alternatively, you can also write `find . -name=my-file.txt`)
+
+The command `man` refers to manual, and you can look up the manual for any command by entering `man command_name` in your terminal.
+
+# Some Useful Shortcuts
+
+- You can open a file or your entire folder (with all it's files and subfolders) directly from the terminal using the command `code .` (or the location of the file/directory instead of '.').
+If this doesn't work for you, you can [easily set it up](https://code.visualstudio.com/docs/setup/mac)
+
+- You can also open the directory in a similar way.
+For Macs, type in `open .` (or the directory name instead of '.').
+For Windows, type in `explorer .` (or the directory name instead of '.')
+
+- VS Code also lets you run command line within the application, so you don't need to switch tabs. More details on [setup](https://code.visualstudio.com/docs/editor/integrated-terminal).
+
+(these two links, annoyingly, require you to [sign up first](https://hellowebbooks.com/learn-command-line/))
+- [Use Tab and Up Arrow to type less](ttps://hellowebbooks.com/course/really-friendly-command-line-intro/tired/)
+- [Ctrl-C and Hidden Files](https://hellowebbooks.com/course/really-friendly-command-line-intro/wrong/)
+
+
+# Practice
+Exercise
+
+# Resources
+> - [Cheatsheet of Commands](https://ryanstutorials.net/linuxtutorial/cheatsheet.php)
+> - [Game](https://overthewire.org/wargames/bandit/bandit0.html): This is a bit advanced, but is a game that teaches you CLI. (Does a better job than 35L :) )
+> - [Solutions](https://medium.com/@secttp): to the above game
+> - [VS Code CLI](https://code.visualstudio.com/docs/editor/command-line): Many more shortcuts to use
+> - [A More Detailed Guide](https://www.learnenough.com/command-line-tutorial/basics)
diff --git a/docs/beginner/git.md b/docs/beginner/git.md
new file mode 100644
index 000000000..c6276a0d6
--- /dev/null
+++ b/docs/beginner/git.md
@@ -0,0 +1,84 @@
+---
+layout: page
+permalink: /docs/beginner/git/
+---
+
+## Git
+Git is a tool for version control, you can install it [here](add link).
+
+It's a convenient way for several people to work together on a project. In some sense, it's also like a glorified google doc, except you can maintain multiple files and directories as well as code, and can revert back to older versions of your code.
+
+Since we want everyone to work on the same project, there is a "remote" version of it online (up on github), and a "local" version that lives on your computer. Git is a way for you to add your changes from your local version to the remote version, and to import the changes your teammates made to your local version.
+
+(add graphic here showing central remote and multiple users)
+
+### Create/Clone Repo
+Your entire project lives in the "repository" or the root directory for your project.
+
+You can initialize (or create) a repository locally and then push it to a remote. (TODO: add link)
+In most cases however, you can simply create a repository online on github, and then clone it (TODO: add images)
+
+In fact, in most cases, you will work on an existing project, and so you can just go to the repository online and clone it
+
+(Note: This is the clone you did above while installing Jekyll)
+
+### Branches
+Imagine your git repository to be a screenplay. Then the main version of the screenplay is "master". You're job as a (script) developer is to add a scene, see if it works with the flow of the general script. Some of your teammates might be working on adding the same scene or some might be working on different scenes.
+
+(TODO: Add image of scenes)
+
+So when you add a scene, you're really testing out another version of the master play, the master play but with your newly added scene. So you create a branch, add your scene, see how it's working, and if you're satisified with it, you merge it to master.
+
+To create your own version, you create a branch off of master. This copies the entire play, and now you can add your changes and new material to it
+
+git checkout -b
+
+### Stage, Commit, Push and Pull
+Imagine your git repository to be a screenplay. The entire project is a bunch of scenes (branches) and you are responsible for some of the scenes, your teammates are responsible for others.
+
+Whenever you make changes to your scene, you can add those changes to the staging area.
+git add name_of_file //this file is now being tracked by git
+git add . //adds everything under the current directory (good shortcut for adding all changes)
+git add js/* //adds everything under a certain directory
+
+(TODO: add git status screenshot)
+
+Whenever you are satisfied with your draft, you can commit your changes
+git commit -m "first draft" //m means message
+git commit -am "first draft" //-a shortcut (explain tracked and untracked file)
+(TODO: add git status screenshot)
+
+If you are ready for others to see your draft, you can push it to the remote so everyone else can see
+git push //sometimes when it's your first push, git may yell at you. But it gives you the right command to use, just copy and run that command
+
+If you want to see the changes other people made to your script, you can do
+git pull //pulls all changes from remote
+
+You can do git status to see what changes you have made
+
+Made an error? use git checkout
+Unstage? git reset HEAD
+Undo a commit?
+view commit history?
+
+Why do we have git add as well as git commit?
+Commits are like snapshots of your repository, they will be stored in the commit history. So if you've added a bunch of changes, but you realized you made a typo. If your work history included every little typo you changed and every line you added, it would be hard to read through. Therefore, commits are used so that we can view *meaningful changes* through time, like adding a new character in your script, or a new monologue, but not word changes here and there.
+
+The flow of work above comprises of what you will do 95% of the time. Yo make a change and add it, after you've added a few you commit them and push them for everyone else to see. Other parts of the process only happen once or twice during the life cycle of the project, so this is the core of what you need to master (and what you can get away with knowing most of the time).
+
+### Pull Requests
+
+### Merge and Merge Conflict
+
+#### Merge Conflicts
+Say two people are working on the same scene. Suppose you pushed "Mattie: Stack is lit'", and then your friend pulled and changed the line to "Mattie: 'Stack is super super lit'". When you pull again, you will have a merge conflict, because git doesn't know which version of the line you want to keep.
+
+You can simply go to the line, save the version you want, say "Mattie: 'Stack is super lit'" and then do the above process all over again (add, commit and push) to fix the conflict
+
+In this case, you can go to the file, edit it to the version you want to keep
+(TODO: add screenshot of the >>>>>>>>> and <<<<<<<<<<>>>>>>>>>>, and "accept incoming change", etc. in VS Code)
+
+
+### Advanced: Stash?
+### Advanced: Rebasing?
+### Advanced: Fork?
diff --git a/docs/beginner/good-code-practices.md b/docs/beginner/good-code-practices.md
new file mode 100644
index 000000000..fd8af2310
--- /dev/null
+++ b/docs/beginner/good-code-practices.md
@@ -0,0 +1,19 @@
+---
+layout: page
+permalink: /docs/good-code-practices/
+---
+
+## Good Code Practices
+- code lints
+- good code structure
+- standardization
+- abstraction
+- code secrets (+env)
+- gitignore
+- DRY (don't repeat yourself)
+- naming conventions
+- html in markdown standards
+- Circle CI Stuff
+[![Build Status](https://travis-ci.org/joemccann/dillinger.svg?branch=master)](https://travis-ci.org/joemccann/dillinger)
+- how to write a good README (README practice for each branch - appended to initial README?)
+
diff --git a/docs/beginner/good-visual-practices.md b/docs/beginner/good-visual-practices.md
new file mode 100644
index 000000000..980d671ce
--- /dev/null
+++ b/docs/beginner/good-visual-practices.md
@@ -0,0 +1,7 @@
+---
+layout: page
+permalink: /docs/good-visual-practices/
+---
+
+## Resources
+- [Tool](https://ft-interactive.github.io/visual-vocabulary/) to decide which chart to use in which case, and to spark ideas
\ No newline at end of file
diff --git a/docs/beginner/installations.md b/docs/beginner/installations.md
new file mode 100644
index 000000000..b6f3dd5d1
--- /dev/null
+++ b/docs/beginner/installations.md
@@ -0,0 +1,85 @@
+---
+layout: page
+permalink: /docs/installations/
+---
+
+## Installations
+
+# Linux
+If you use Windows, download [the Linux distro](https://docs.microsoft.com/en-us/windows/wsl/install-win10).
+Mac and other OS users can move on to the next step.
+
+WSL, as you will see, will make several installations easier and let you use download instructions typically used only for Macs or other Linux systems like Ubuntu.
+
+# Jekyll
+Jekyll is a development tool that lets you generate the site locally, so you can make changes to your Stack post and view it on your browser before publishing it for the world to see.
+
+On a Mac, open Terminal.
+
+On Windows, open WSL and follow these [instructions](https://jekyllrb.com/docs/installation/windows/#installation-via-bash-on-windows-10) first.
+
+Then go ahead and follow the Mac [instructions](https://github.com/dailybruin/the-stack/blob/master/README.md#installation-maclinux) for installation (even for Windows).
+
+# VS Code
+VS Code is a powerful text editor that lets you write code in several languages and run them within the application. It's like Microsoft Word for programming.
+
+Follow instructions [here](https://code.visualstudio.com/download).
+
+# Git
+Git is a version control tool,
+
+For Windows (or Ubuntu), use the following commands in WSL:
+
+```sh
+$ sudo apt-get update
+$ sudo apt-get install git
+```
+
+> Note for people new to command line: The '$' represents the prompt. So the $ sign must not be included in your command when you type it in, it just separates the commands, so 'sudo apt-get update' and 'sudo apt-get install git' are run one after each other.
+
+For Mac, you can use these [instructions](https://gist.github.com/derhuerst/1b15ff4652a867391f03#installing-git-on-a-mac) to install Homebrew and then Git
+
+Once, installation is done, you can test whether git was intalled:
+```sh
+$ git --version
+```
+It should print out something like git version 2.17.1 (or whatever the latest version number is).
+
+Then, you can set your username and password:
+```sh
+$ git config --global user.name "Your Name"
+$ git config --global user.email "Your Media Email"
+```
+> Make sure to use either your media email, or the email that is being added to the dailybruin github
+
+# (Optional) Python
+Python is a very readable, relatively easy to use programming language, and has several libraries that are helpful for data analysis.
+
+On Windows, using WSL, you can run the following commands
+```sh
+$ sudo apt-get update
+$ sudo apt-get install python3.6
+```
+> Or whatever the latest version of Python is.
+
+Most libraries can be installed in Python using pip:
+```sh
+$ pip install library_name
+```
+Newer versions may use this command instead:
+```sh
+$ python -m pip install library_name
+```
+
+On Mac, make sure you have installed [Homebrew](#optional-homebrew) first.
+Then, run on Terminal:
+
+```sh
+$ brew install python
+```
+
+# (Optional) Homebrew
+Homebrew is a package manager for Mac. Essentially, it makes it easier for you to download and install software.
+
+Follow [step 1](https://gist.github.com/derhuerst/1b15ff4652a867391f03#installing-git-on-a-mac).
+
diff --git a/docs/beginner/markdown.md b/docs/beginner/markdown.md
new file mode 100644
index 000000000..64926df33
--- /dev/null
+++ b/docs/beginner/markdown.md
@@ -0,0 +1,49 @@
+---
+layout: page
+permalink: /docs/markdown/
+---
+
+## Intro to Markdown
+
+Every page in The Stack uses Markdown. Markdown is a light-weight formatting tool for all your articles.
+
+In simple terms, markdown is like a glorified Google Doc, which lets you
+- add code (HTML) in your file
+- use standard syntax to create headings, add links and images.
+
+Writing a hashtag before your heading (for example, "# HEADING") creates a heading. And the more hashtags (upto 7) you add in front of it, the smaller the heading gets. For example, ("### SMALLER HEADING" creates a smaller heading).
+
+# HEADING
+This is an example of a heading that uses a single hashtag.
+
+### SMALLER HEADING
+This is an example of a heading that uses 3 hashtags.
+
+There are also ways to add links, images, lists, tables, etc.
+Whenever you need to figure out how to do something, look it up from this [cheatsheet](https://github.com/adam-p/markdown-here/wiki/Markdown-Here-Cheatsheet).
+
+### Internal Links
+One of the things the cheatsheet doesn't explain is how to create internal links, i.e., how to create links to different parts of the page (like how clicking [here](#intro-to-markdown) can take you to the top of the page).
+
+Every title in Markdown can be used as a link. So, for example, "# HEADING" above is a link and you can refer to it by:
+
+`[go to heading](#heading)`
+
+Click this link to go to 'HEADING': [go to heading](#heading)
+
+The syntax to refer to the links is
+- make everything lowercase
+- add a '-' for spaces
+
+So, for example:
+
+`[go to smaller heading](#smaller-heading)`
+
+Click this link to go to 'SMALLER HEADING': [go to smaller heading](#smaller-heading)
+
+# Practice
+Fiddle around with [markdown](https://markdown-it.github.io/#md3=%7B%22source%22%3A%22%23%20Markdown%20Tutorial%5Cn%5CnSolutions%20are%20at%20the%20end%2C%20remember%20to%20use%20the%20cheat%20sheet!%5Cn%5CnMake%20the%20line%20below%20a%20title%3A%5CnI%20Love%20Stack%5Cn%5CnCreate%20a%20smaller%20level%20title%3A%20%5CnStack%20is%20Lit%5Cn%5CnMake%20the%20link%20to%20the%20tutorial%20a%20clickable%20link%3A%20%5Cnhttps%3A%2F%2Fgithub.com%2Fadam-p%2Fmarkdown-here%2Fwiki%2FMarkdown-Cheatsheet%5Cn%5CnMake%20the%20word%20below%20link%20back%20to%20the%20top%3A%5Cnword%5Cn%5CnItalicize%20Me!%5CnMake%20me%20bold!%5Cn%5CnMake%20a%20list%20of%20your%20favorite%20things%3A%5Cn%5Cn%28Make%20these%20unordered%29%5CnRaindrops%20on%20roses%5CnWhiskers%20on%20kittens%5Cn%5Cn%28Make%20these%20ordered%29%5CnBright%20copper%20kettles%5CnWarm%20woolen%20mittens%5Cn%5CnBlockquote%20the%20special%20things%3A%5CnI%20am%20special%20info.%5CnBlock%20quote%20me.%5Cn%5CnTable%20This%3A%5CnCeral%20%20%20How%20much%20I%20Love%20It%5CnRaisin%20Bran%20%20%20%20%2010%2F10%5CnCheerios%20%20%20%20%20%20%20%209%2F10%5CnLucky%20Charms%20%20%20%2015%2F10%5Cn%5Cn%5Cn%23%20Solutions%5Cn%5CnMake%20the%20line%20below%20a%20title%3A%5Cn%23%20I%20Love%20Stack%5Cn%5CnCreate%20a%20smaller%20level%20title%3A%20%5Cn%23%23%23%20Stack%20is%20Lit%5Cn%5CnMake%20the%20link%20to%20the%20tutorial%20a%20clickable%20link%3A%20%5Cn%5Bclick%20click%5D%28https%3A%2F%2Fgithub.com%2Fadam-p%2Fmarkdown-here%2Fwiki%2FMarkdown-Cheatsheet%29%5Cn%5CnMake%20the%20word%20below%20link%20back%20to%20the%20top%3A%5Cn%5Bword%5D%28%23markdown-tutorial%29%5Cn%5Cn%2AItalicize%20Me!%2A%5Cn%2A%2AMake%20me%20bold!%2A%2A%5Cn%5CnMake%20a%20list%20of%20your%20favorite%20things%3A%5Cn-%20Raindrops%20on%20roses%5Cn-%20Whiskers%20on%20kittens%5Cn%5Cn1.%20Bright%20copper%20kettles%5Cn2.%20Warm%20woolen%20mittens%5Cn%5CnBlockquote%20the%20special%20things%3A%5Cn%3EI%20am%20special%20info.%5Cn%3EBlock%20quote%20me.%5Cn%5CnTable%20This%3A%5Cn%7C%20Ceral%20%7C%20How%20much%20I%20Love%20It%20%7C%5Cn%7C-------%7C--------------------%7C%5Cn%7C%20Raisin%20Bran%20%7C%2010%2F10%20%7C%5Cn%7C%20Cheerios%20%7C%209%2F10%20%7C%5Cn%7C%20Lucky%20Charms%20%7C%2015%2F10%20%7C%5Cn%20%20%5Cn%22%2C%22defaults%22%3A%7B%22html%22%3Afalse%2C%22xhtmlOut%22%3Afalse%2C%22breaks%22%3Atrue%2C%22langPrefix%22%3A%22language-%22%2C%22linkify%22%3Atrue%2C%22typographer%22%3Atrue%2C%22_highlight%22%3Atrue%2C%22_strict%22%3Afalse%2C%22_view%22%3A%22html%22%7D%7D)
+
+# Resources
+> - [Markdown Cheatsheet](https://github.com/adam-p/markdown-here/wiki/Markdown-Here-Cheatsheet)
+> - [Mermaid](https://mermaid-js.github.io/mermaid/#/): A cool markdown extension that lets you create flow charts and diagrams.
\ No newline at end of file
diff --git a/docs/beginner/website-code.md b/docs/beginner/website-code.md
new file mode 100644
index 000000000..22ed35464
--- /dev/null
+++ b/docs/beginner/website-code.md
@@ -0,0 +1,218 @@
+---
+layout: page
+permalink: /docs/website-code/
+---
+
+# Website code documentation
+
+## Overview of Jekyll
+
+The Stack is built using [Jekyll](http://jekyllrb.com/). Jekyll is a Ruby
+application which takes files with special markup and organized in a
+[DRY](https://en.wikipedia.org/wiki/Don%27t_repeat_yourself) manner and
+transforms or "compiles" them into a static site that can be served by any
+static file web server without any special software.
+
+[Jekyll's documentation](http://jekyllrb.com/docs/home/) is extensive. Check
+it out.
+
+Jekyll sites have two types of files and directories – those with and without
+a leading underscore. Directories without a leading underscore remain as they
+are after Jekyll's compile process, so if you created a top-level directory
+called `foo`, it would be accessible at `http://website.com/foo/`. Folders
+with leading underscores are "transformed" in some way – they get moved around,
+made into new files, or their data gets incorporated into existing files.
+
+Any file – whether prefixed with an underscore or a "regular"
+file – can be processed by Jekyll by starting the file with a set of
+triple hyphens, `---`, followed by another set of triple hyphens on the next
+line. You can optionally put metadata on lines between these sets of hyphens,
+and Jekyll can use it while processing the file. This data between the
+hyphens is called ["front matter"](http://jekyllrb.com/docs/frontmatter/),
+and it's a very important concept in Jekyll.
+
+Front matter is written in [YAML](http://www.yaml.org/refcard.html), a very
+readable data serialization standard. (They don't like to call it a markup
+language, but you can basically think of it that way.)
+
+## File structure
+
+### [top level] (`/`)
+
+All the global configuration options for a Jekyll site are in `/_config.yml`.
+Here you can set things like the website name, website description,
+timezone, how articles are parsed,
+[and more](https://jekyllrb.com/docs/configuration/).
+
+Regular website pages, like About and Project Gallery, are also at the top
+level at `about.md` and `project-gallery.md`.
+
+`feed.xml` controls the format of the RSS feed that Jekyll automatically
+generates when your site is compiled.
+
+`index.html` is the front page of the blog at http://stack.dailybruin.com.
+
+`README.md` contains information about the project for people landing on
+the GitHub repo and new contributors.
+
+`setup.sh` contains a script for automating initial setup of the project
+for people on Mac/Linux computers.
+
+### `_data`
+
+Stores collections of website data used for the site itself, **NOT** data used
+in posts/data visualizations.
+
+`authors.yml` contains all the information about post authors. Edit this file
+to add a new author. Only `name` is required, but all other fields are
+highly recommended. Mugs are stored at `/img/mugs/author_key.jpg`.
+
+`projects.yml` contains a list of projects for the Project Gallery page. Edit
+it to add more projects to the page. Screenshots are stored at
+`/img/projects/project_key.jpg`. Screenshots can be taken programmatically
+using a tool in `_utils/take-project-screenshots`. Read more on this tool
+further down.
+
+### `_includes`
+
+Reusable chunks of HTML that are used on basically every page are stored here.
+This includes the header, footer, and the `` section of the HTML document.
+You probably won't need/want to add or remove files here, but you may need to
+edit the existing files. Remember, any edits made here will affect every page.
+**DO NOT** put any heavy or page-specific JavaScript/CSS here, and think
+twice before editing these files.
+
+### `_layouts`
+
+Posts and pages can have different layouts which can be configured through
+front matter. By default, posts will have the layout type `post`. Think of
+these like WordPress templates. Add a new template here for an ongoing series,
+for example, where you want all pages to have a shared header.
+
+`projects.html` is used for the Project Gallery page.
+
+### `_posts`
+
+This is where the text and metadata for all posts is stored. Posts follow
+the format: `YYYY-MM-DD-article-url-slug.md`. Posts need to have specific
+front matter that is discussed in the Usage and Style document.
+
+### `_sass`
+
+Global styles for the whole site written in [Sass](http://sass-lang.com/).
+Sass is amazing and very easy to learn if you already know CSS. Don't
+repeat yourself and write Sass exactly like CSS. Learn Sass and you'll be
+happy and *sassy*.
+
+`_base.scss` contains styles for **basic HTML elements** like headers and
+blockquotes. It **is NOT** for layout purposes.
+
+`_globals.scss` contains global variables. Whenever you want to use a shared
+style like the primary brand color, import this file to use it.
+
+`_layout.scss` is where you'll find styles for the site header, footer,
+individual posts, the post list, etc. The bulk of the styles are here.
+
+`_syntax-highlighting.scss` contains rules for syntax highlighting, which
+Jekyll
+[supports out of the box](https://jekyllrb.com/docs/templates/#code-snippet-highlighting).
+This file is supplied by the Jekyll framework, and you should probably not
+edit it.
+
+### `_site`
+
+This is the output folder for your static site that is generated by Jekyll.
+If you haven't generated the site locally by running `jekyll serve`, you won't
+have this folder. **NEVER version control this directory** and **NEVER edit
+any files in this directory**. It will be overwritten when the site is
+recompiled. Basically do not touch.
+
+### `_utils`
+
+This folder contains tools for automating administrative tasks related to
+The Stack website.
+
+`take-project-screenshots` is a node.js application that automatically
+takes screenshots of project pages stored in `/_data/projects.yml` and puts
+the screenshots in `/img/projects`. Running `npm install` this project
+directory will install the dependencies, and `node app.js` will run the program.
+**CAUTION:** Executing this program will cause all screenshots currently in the
+`/img/projects` directory to be deleted. More information on using this tool
+is available in the Usage and Style document.
+
+### `css`
+
+This folder stores page-specific css styles and the `main.scss` file which
+imports all sitewide styles from `/_sass`.
+
+CSS libraries that are **NOT**
+available from a CDN (preferred method of loading CSS/JS libraries), you
+can put them in the `lib` folder. CSS styles associated with a post should
+be placed in `css/posts/post-slug`.
+
+### `datasets`
+
+Data used in post visualizations is stored here in `post-slug` folders. Data
+is usually in `.json`, `.csv`, or `.tsv` formats, but may be in any format
+appropriate for the visualizations.
+
+### `docs`
+
+Documentation for The Stack is kept here, including this document. Keep docs
+up to date whenever you change a feature of the site.
+
+### `img`
+
+Stores all the images used on the site, including site banner, logo, favicon,
+and nameplate.
+
+`icons` holds reusable icons like social media icons.
+
+`mugs` stores author photos. Photos should be 400x400px and have the name
+`author_key.jpg` where "author_key" is the unique identifier of the author in
+`/_data/authors.yml`.
+
+`posts` holds all images used in posts. This includes the post's featured
+image, Open Graph image (used for Facebook), and any other images used in the
+post. The format for the folder names is `post-slug`.
+
+`projects` contains screenshots or other image for projects on the Project
+Gallery page. The images in this folder can be automatically created/updated
+using the `/_utils/take-project-screenshots` utility.
+
+### `js`
+
+Stores all JavaScript files and similar scripts used on the website.
+
+`site.js` is loaded on every page. Take care that this file contains the least
+amount of code possible for both performance and debugging reasons.
+
+The `lib` directory is for any JavaScript libraries that cannot be loaded from
+a CDN (preferred method for loading CSS and JS libraries).
+
+`posts` contains all JavaScript files for a particular post. These scripts
+are stored within a folder with the name of the `post-slug`.
+
+### `static`
+
+This folder stores **HTML-only** files that **cannot** be incorporated into
+a post directly. Wherever possible, this directory should not be used and a
+data visualization/application should reside within the post itself instead.
+Sometimes, however, this is simply not practical if, for example, the
+application uses a custom CSS library that conflicts with styles on the
+regular website. If this is the case, store the required HTML here under a
+`post-slug` folder, and use the `img`/`js`/`css`/`datasets` folders for
+the other assets the page requires as you would for a normal post.
+
+## Deployment
+
+The Stack website is hosted on GitHub pages because:
+
+- It's free.
+- It's reliable.
+- It makes for an easy deployment process.
+- GitHub Pages has strong native support for Jekyll sites.
+
+The `gh-pages` branch is the production branch. `master` is used for staging.
+Posts should be developed on their own feature branches. See the Workflow
+document for more details.
diff --git a/docs/beginner/workflow.md b/docs/beginner/workflow.md
new file mode 100644
index 000000000..c53bebf58
--- /dev/null
+++ b/docs/beginner/workflow.md
@@ -0,0 +1,85 @@
+---
+layout: page
+permalink: /docs/workflow/
+---
+
+## Workflow
+
+# Pitch and ideas development meeting
+
+The Stack holds a weekly pitch and ideas development meeting where any
+interested parties – developers, journalists, etc. can come to pitch new ideas
+and/or develop existing ideas. Development of existing ideas involves
+discussing angles for stories, technical implementation, and
+design/presentation of posts.
+
+# Story assignment
+
+When possible, stories are assigned at the pitch/ideas meeting. If people
+are not present or not immediately contactable, stories may be assigned later.
+When a story is assigned, a time is chosen for an initial meeting with all
+interested parties.
+
+# Initial meeting (angle, approach)
+
+The initial meeting is to get everyone on the same page with the scope, goal,
+and implementation of the project. Deadlines for specific components and
+mockups happen here. This is also where the git story branch is created.
+If the contributor is a new contributor, they are set up with a local
+copy of the site for development. A follow-up meeting is scheduled.
+
+# Follow-up meetings (development)
+
+Follow-up meetings happen as necessary to check progress on development, work
+through any issues, and discuss any changes in scope/angle. These meetings
+should happen no less frequently than once a week until completion of the
+project.
+
+# Code review and findings meeting (development, writing)
+
+When the developer has finished the technical part of the post, the data
+editor will do a code review and discuss any changes to be made at this
+meeting. At this point, the developer or whoever is doing the writing will
+also discuss the text content of the post with the data editor. A deadline is
+set for writing.
+
+# Writing
+
+The developer or other individual writes the post.
+
+# Editing
+
+The data editor edits the post. He or she adds post metadata including
+headline, teaser, featured image, open graph image, and key takeaways.
+
+# Edits meeting (address edits, retro)
+
+The data editor and writer discuss edits, and the writer addresses any changes
+at this meeting. A project retro is also performed here where interested
+parties discuss what went well and what could be improved in communication,
+workflow, development, writing, etc. If any of the contributors to the post
+are new contributors, they create an author profile here.
+
+# Copy edits
+
+The data editor sends the post to Copy. Copy makes edits on the story branch
+and commits changes.
+
+# Merge to master
+
+The data editor merges the story branch to master and resolves any merge
+conflicts.
+
+# Verification
+
+The data editor verifies that the merge hasn't broken anything and that
+everything in the post works as expected.
+
+# Deployment
+
+The data editor merges master to the production branch, gh-pages, and pushes
+to remote to deploy.
+
+# Social media
+
+The data editor schedules or sends social media.
diff --git a/docs/index.html b/docs/index.html
index 3c675d442..316827bb3 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -53,15 +53,19 @@ {{ post.teaser }}
advanced sections for topics you can dive into once you feel comfortable with the basics.
Happy Learning!
-
+
+
-
+
+
+
diff --git a/docs/rough_work.md b/docs/rough_work.md
new file mode 100644
index 000000000..f1f240d20
--- /dev/null
+++ b/docs/rough_work.md
@@ -0,0 +1,226 @@
+---
+layout: page
+permalink: /docs/guide/
+---
+
+## Jekyll
+TODO: Just improve existing documentation
+
+https://stack.dailybruin.com/docs/
+Installation: https://github.com/dailybruin/the-stack/blob/master/README.md
+Jekyll: https://stack.dailybruin.com/docs/website-code/
+Workflow: https://stack.dailybruin.com/docs/workflow/
+
+- Go on over to [the Stack repository](https://github.com/dailybruin/the-stack) and follow the installation process.
+
+## Markdown
+
+Every page in The Stack uses Markdown. Markdown is a light-weight formatting tool for all your articles.
+
+In simple terms, markdown is like a glorified Google Doc, which lets you
+- add code (HTML) in your file
+- use standard syntax to create headings, add links and images.
+
+Writing a hashtag before your heading (for example, "# HEADING") creates a heading. And the more hashtags (upto 7) you add in front of it, the smaller the heading gets. For example, ("### SMALLER HEADING" creates a smaller heading).
+
+# HEADING
+This heading uses a single hashtag.
+
+### SMALLER HEADING
+This heading uses 3 hashtags.
+
+There are standard ways to add links, images, lists, tables, etc.
+Whenever you need to figure out how to do something, look it up from this [cheatsheet](https://github.com/adam-p/markdown-here/wiki/Markdown-Here-Cheatsheet).
+
+### Internal Links
+One of the things the cheatsheet doesn't explain is how to create internal links, i.e., how to create links to different parts of the page (like how clicking on "Markdown" in the Topics list leads you here).
+
+Every title in Markdown is a link. So, for example, "# HEADING" earlier is a link and you can refer to it by:
+
+`[go to heading](#heading)`
+
+[go to heading](#heading)
+
+The syntax to refer to the links is
+- make everything lowercase
+- add a '-' for spaces
+
+So, for example:
+
+`[go to smaller heading](#smaller-heading)`
+
+[go to smaller heading](#smaller-heading)
+
+## Command Line
+
+### File Structure
+- Open up Terminal
+- There are two types of files: directories and files
+A Directory is a folder, it contains links to other files or directories
+Files are what you usually think of as files, a word doc, a jpeg, a code file, etc.
+
+The root directory is where your file system begins in your computer, inside it are all the directories and files.
+
+We can refer to directories multiple levels down using forward slashes. For example, under the stak repo (a git root directory), this file lives in the-stack/docs/about.md, where "the-stack" and "docs" are directories, and "about.md" is a file.
+
+#### Moving Around
+You can move around within a file system using the command cd which stands for "change directory", and lists all the files in the directory you currently are in using "ls".
+
+"." refers to your current directory and
+".." refers to the directory above
+pwd - print working directory
+
+So if you're in the-stack directory, you can go into docs
+by doing cd docs
+and then go back by doing cd ..
+And to go through multiple directories in one command, you can chain them together with the forward slash. So, for example, you can go to the javascript files of some article by doing
+cd js/posts/primaries/
+(show ls output)
+and you can go back by doing
+cd ../../..
+ls (back in the main repo)
+(add screenshot here), also shows you where you currently are
+
+"Tab" to complete file names
+"Up arrow" to look up your previous commands
+
+#### Command Structure
+Every command has a few of these
+
+- the command name
+
+command argument -short_option -short_option=(parameter) --long_option --long_option=(parameter)
+
+- look up command descriptions using man (name of command) (or by good old google search)
+"how to ..."
+
+- common commands
+mkdir
+rmdir
+rm
+touch
+cat
+head
+tail
+cp
+mv
+wget
+
+find
+grep
+sed
+sudo
+
+echo
+sort
+
+Fun:
+cal
+
+#### Exercises
+
+(VSCODE Shortcut: you can open the file in VS Code by using this fun trick)
+
+- Directories and file structure
+- common commands
+- options and arguments
+
+## Git
+Git is a tool for version control, you can install it [here](add link).
+
+It's a convenient way for several people to work together on a project. In some sense, it's also like a glorified google doc, except you can maintain multiple files and directories as well as code, and can revert back to older versions of your code.
+
+Since we want everyone to work on the same project, there is a "remote" version of it online (up on github), and a "local" version that lives on your computer. Git is a way for you to add your changes from your local version to the remote version, and to import the changes your teammates made to your local version.
+
+(add graphic here showing central remote and multiple users)
+
+### Create/Clone Repo
+Your entire project lives in the "repository" or the root directory for your project.
+
+You can initialize (or create) a repository locally and then push it to a remote. (TODO: add link)
+In most cases however, you can simply create a repository online on github, and then clone it (TODO: add images)
+
+In fact, in most cases, you will work on an existing project, and so you can just go to the repository online and clone it
+
+(Note: This is the clone you did above while installing Jekyll)
+
+### Branches
+Imagine your git repository to be a screenplay. Then the main version of the screenplay is "master". You're job as a (script) developer is to add a scene, see if it works with the flow of the general script. Some of your teammates might be working on adding the same scene or some might be working on different scenes.
+
+(TODO: Add image of scenes)
+
+So when you add a scene, you're really testing out another version of the master play, the master play but with your newly added scene. So you create a branch, add your scene, see how it's working, and if you're satisified with it, you merge it to master.
+
+To create your own version, you create a branch off of master. This copies the entire play, and now you can add your changes and new material to it
+
+git checkout -b
+
+### Stage, Commit, Push and Pull
+Imagine your git repository to be a screenplay. The entire project is a bunch of scenes (branches) and you are responsible for some of the scenes, your teammates are responsible for others.
+
+Whenever you make changes to your scene, you can add those changes to the staging area.
+git add name_of_file //this file is now being tracked by git
+git add . //adds everything under the current directory (good shortcut for adding all changes)
+git add js/* //adds everything under a certain directory
+
+(TODO: add git status screenshot)
+
+Whenever you are satisfied with your draft, you can commit your changes
+git commit -m "first draft" //m means message
+git commit -am "first draft" //-a shortcut (explain tracked and untracked file)
+(TODO: add git status screenshot)
+
+If you are ready for others to see your draft, you can push it to the remote so everyone else can see
+git push //sometimes when it's your first push, git may yell at you. But it gives you the right command to use, just copy and run that command
+
+If you want to see the changes other people made to your script, you can do
+git pull //pulls all changes from remote
+
+You can do git status to see what changes you have made
+
+Made an error? use git checkout
+Unstage? git reset HEAD
+Undo a commit?
+view commit history?
+
+Why do we have git add as well as git commit?
+Commits are like snapshots of your repository, they will be stored in the commit history. So if you've added a bunch of changes, but you realized you made a typo. If your work history included every little typo you changed and every line you added, it would be hard to read through. Therefore, commits are used so that we can view *meaningful changes* through time, like adding a new character in your script, or a new monologue, but not word changes here and there.
+
+The flow of work above comprises of what you will do 95% of the time. Yo make a change and add it, after you've added a few you commit them and push them for everyone else to see. Other parts of the process only happen once or twice during the life cycle of the project, so this is the core of what you need to master (and what you can get away with knowing most of the time).
+
+### Pull Requests
+
+### Merge and Merge Conflict
+
+#### Merge Conflicts
+Say two people are working on the same scene. Suppose you pushed "Mattie: Stack is lit'", and then your friend pulled and changed the line to "Mattie: 'Stack is super super lit'". When you pull again, you will have a merge conflict, because git doesn't know which version of the line you want to keep.
+
+You can simply go to the line, save the version you want, say "Mattie: 'Stack is super lit'" and then do the above process all over again (add, commit and push) to fix the conflict
+
+In this case, you can go to the file, edit it to the version you want to keep
+(TODO: add screenshot of the >>>>>>>>> and <<<<<<<<<<>>>>>>>>>>, and "accept incoming change", etc. in VS Code)
+
+
+### Advanced: Stash?
+### Advanced: Rebasing?
+### Advanced: Fork?
+
+## ChartJS
+- (using tool when available)
+- (+basic HTML/CSS/JS)
+- responsiveness and media queries
+
+## Good Code Practices
+- code lints
+- good code structure
+- standardization
+- abstraction
+- code secrets (+env)
+- gitignore
+- DRY (don't repeat yourself)
+
+## What Are APIs?
+(+ some good ones to use)
+
+
+
diff --git a/docs/template.md b/docs/template.md
new file mode 100644
index 000000000..43838f1d0
--- /dev/null
+++ b/docs/template.md
@@ -0,0 +1,43 @@
+layout: page
+permalink: /docs/template/
+---
+
+## A Guide to Guide
+
+# Topic
+Introduce your topic
+
+# Summary
+Summarize your tutorial, ideally breaking it down into sections linked here, so people can skip over stuff they already know
+
+# Practice
+It's always helpful to add some simple practice, because programming is all about #learning-by-doing
+(TODO: add links for JSFiddle, or other fiddling software)
+
+# Resources
+Include links to other resources and guides to allow further exploration, or to cite your sources.
+It's also great to include reference cheat sheets if your topic warrants it.
+
+# Template
+Copy this to create your own guide.
+
+```markdown
+---
+layout: page
+permalink: /docs/name_of_file/
+---
+
+## Title
+
+# Topic
+
+# Summary
+- [section-1](#template)
+- [section-2](#template)
+- [section-3](#template)
+- ...
+
+# Practice
+
+# Resources
+```
\ No newline at end of file
diff --git a/docs/todo.md b/docs/todo.md
new file mode 100644
index 000000000..2142026a4
--- /dev/null
+++ b/docs/todo.md
@@ -0,0 +1,10 @@
+---
+layout: page
+permalink: /docs/todo/
+---
+
+- issues, PRs, TODOs, bugs dashboard (some Jira like system but better)
+- include virtual environments, docker, envs in installations?
+- get input from beginners
+- default onboarding (create media email, add to Slack, create github account, do tutorial, do all installations create required environment)
+- write some code for path independence in python and js? may not be necessary in js)
From 2b6798c092142e6551e40ab12df53c456c22cf31 Mon Sep 17 00:00:00 2001
From: GitHub Action
Date: Sat, 2 May 2020 00:04:19 +0000
Subject: [PATCH 2/3] ci: Automated build push
---
datasets/covid-hospitals/neighborhoods.geojson | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/datasets/covid-hospitals/neighborhoods.geojson b/datasets/covid-hospitals/neighborhoods.geojson
index d43a94438..eab1b2195 100644
--- a/datasets/covid-hospitals/neighborhoods.geojson
+++ b/datasets/covid-hospitals/neighborhoods.geojson
@@ -1 +1 @@
-{"type": "FeatureCollection", "features": [{"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.2026174792054, 34.53898972076929], [-118.18946958918569, 34.5385546636616], [-118.18950400422953, 34.5349457732411], [-118.18512483634102, 34.53482956044709], [-118.18516440876347, 34.53124651970553], [-118.17601577983017, 34.531354702430015], [-118.17618930843811, 34.52380318562459], [-118.16702561365966, 34.52351227823281], [-118.16294026595283, 34.523716853632315], [-118.16298888279478, 34.52758691891819], [-118.1542679776641, 34.52778986108284], [-118.15402725922898, 34.527320039393956], [-118.15365520720269, 34.527429379780635], [-118.15063530637566, 34.52459083233748], [-118.1506441823148, 34.524313334147], [-118.15033449729292, 34.52430740894222], [-118.14850508010561, 34.52258602710374], [-118.14850638270086, 34.52199529568578], [-118.1478640542421, 34.521983357228365], [-118.14301598797277, 34.51742182339587], [-118.14300391540229, 34.51688741100935], [-118.14243635370282, 34.51687554873165], [-118.13292042712894, 34.5079196554126], [-118.1315149885402, 34.50797105874297], [-118.12342857629446, 34.500365923139725], [-118.12284845735702, 34.49878370216131], [-118.12242053861624, 34.49878438140744], [-118.12277940488678, 34.498399398663054], [-118.12246490434278, 34.497537010677036], [-118.12274394249323, 34.4972209172346], [-118.12209828447689, 34.49683022396537], [-118.12209634940832, 34.4965295572172], [-118.12099588531962, 34.49508309698031], [-118.07970439167389, 34.49536813309862], [-118.07985085316027, 34.48084042740588], [-118.07970177853352, 34.473579517385176], [-118.09672894180616, 34.47352001660662], [-118.09679656118362, 34.48076701266776], [-118.11862856604758, 34.480677896362835], [-118.11862411128782, 34.47704643673872], [-118.11823562296836, 34.4770468157905], [-118.1178503709481, 34.476425875279766], [-118.11866052023461, 34.47642461898611], [-118.11872970749987, 34.46616923814347], [-118.13164148693322, 34.466174605450966], [-118.1404854110729, 34.466422355307934], [-118.1496201698695, 34.46643908081293], [-118.14960678145502, 34.45200987113323], [-118.18470858752102, 34.45195843862283], [-118.1847435105529, 34.45570100985002], [-118.19719472198943, 34.45580246193274], [-118.19752455957536, 34.45552458355188], [-118.19726145537918, 34.455802353469466], [-118.19753094645864, 34.45567158380637], [-118.19756307757581, 34.45630908760043], [-118.19810239462436, 34.45584428851268], [-118.20630231208393, 34.45613571872994], [-118.20660896333821, 34.462886925156575], [-118.2078463648407, 34.46286485199525], [-118.20800446863116, 34.463656896194394], [-118.20789867089195, 34.46403864877573], [-118.20799261212717, 34.46605746521052], [-118.2196822619058, 34.465710534571], [-118.21966646863281, 34.46266753820351], [-118.23702710197351, 34.463398142499884], [-118.23702088651507, 34.46740281844628], [-118.24533641525986, 34.46732248905014], [-118.24503150669833, 34.47810800546601], [-118.24607830998299, 34.47811289528655], [-118.24597834271935, 34.48170943206675], [-118.25773760650775, 34.48183679264869], [-118.25991860605343, 34.495903101058374], [-118.25554467213598, 34.49588389204682], [-118.25567245743709, 34.510049171616565], [-118.25550542881398, 34.539292874673706], [-118.23788296951274, 34.53894795222954], [-118.22024775908258, 34.539088978245836], [-118.22018208969565, 34.542752039858854], [-118.20698646804908, 34.54269662617337], [-118.20702192802953, 34.53901218566977], [-118.2026174792054, 34.53898972076929]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Acton", "population": 0.07971303308090873, "cases": 8.0, "resource_uri": "/1.0/boundary/acton-la-county-neighborhood-current/", "external_id": "acton", "slug": "acton-la-county-neighborhood-current", "metadata": {"sqmi": 39.3391089485, "type": "unincorporated-area", "name": "Acton", "slug": "acton"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.3090080000001, 34.03741099912408], [-118.30040800000012, 34.03731199912409], [-118.291508, 34.03681199912407], [-118.2914080000001, 34.025511999124234], [-118.305408, 34.025711999124255], [-118.3090080000001, 34.025611999124216], [-118.3090080000001, 34.03741099912408]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Adams-Normandie", "population": 0.08201892744479496, "cases": 26.0, "resource_uri": "/1.0/boundary/adams-normandie-la-county-neighborhood-current/", "external_id": "adams-normandie", "slug": "adams-normandie-la-county-neighborhood-current", "metadata": {"sqmi": 0.805350187789, "type": "segment-of-a-city", "name": "Adams-Normandie", "slug": "adams-normandie"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.7619250000001, 34.16820299912263], [-118.726317, 34.16787499912258], [-118.73232400000016, 34.1543019991227], [-118.73706000000028, 34.15435299912277], [-118.7370238572315, 34.14304324369543], [-118.7358719329437, 34.14267020794711], [-118.7349370457869, 34.142153456231014], [-118.73063830005931, 34.139239215941366], [-118.7291821088183, 34.13843288950915], [-118.72795645566335, 34.13810158993966], [-118.7267972395646, 34.137998650484825], [-118.72413386088797, 34.13829962092446], [-118.7241120000002, 34.13631199912296], [-118.71968500000018, 34.13624099912306], [-118.71941000000017, 34.132051999123014], [-118.72018200000016, 34.132063999123034], [-118.72074019325878, 34.13171053903597], [-118.7206210000002, 34.13065899912307], [-118.72015854939072, 34.129857545593424], [-118.72014571764694, 34.12897218047323], [-118.71979021515855, 34.12897251688813], [-118.71978727889746, 34.12816757903454], [-118.71958900000016, 34.128165999123], [-118.7195020000001, 34.12500799912309], [-118.7238930000002, 34.124957999123154], [-118.72388228247466, 34.12533062101568], [-118.72409926147974, 34.12532999249393], [-118.72411632723238, 34.12895898595186], [-118.723905522151, 34.12896710362153], [-118.72390200000012, 34.13122199912303], [-118.72501700000015, 34.131213999123055], [-118.72634135743859, 34.131521377044315], [-118.72846054601429, 34.13150954269163], [-118.72846759502652, 34.132395345385376], [-118.73442300000019, 34.13226999912301], [-118.73637200000019, 34.13073199912311], [-118.73835200000015, 34.132202999123045], [-118.75597600000015, 34.140989999123], [-118.75938900000011, 34.139188999122915], [-118.77146900000011, 34.133451999123054], [-118.78703700000014, 34.134352999122925], [-118.80035900000014, 34.13837899912301], [-118.79289500000016, 34.14605899912285], [-118.79184000000024, 34.15051999912281], [-118.79153600000022, 34.15112599912278], [-118.7908710000002, 34.15433799912273], [-118.7908090000003, 34.1547279991228], [-118.791765, 34.15635099912278], [-118.78977500000018, 34.1626039991227], [-118.78924400000014, 34.16819599912265], [-118.78869700000011, 34.16851499912243], [-118.7619250000001, 34.16820299912263]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Agoura Hills", "population": 0.20882452004041765, "cases": 31.0, "resource_uri": "/1.0/boundary/agoura-hills-la-county-neighborhood-current/", "external_id": "agoura-hills", "slug": "agoura-hills-la-county-neighborhood-current", "metadata": {"sqmi": 8.14676029818, "type": "standalone-city", "name": "Agoura Hills", "slug": "agoura-hills"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.25467739592212, 34.55830403375057], [-118.25550542881398, 34.539292874673706], [-118.25562870073382, 34.53194869441054], [-118.25561246634336, 34.50313113563912], [-118.25523780496779, 34.50313348975405], [-118.255609480627, 34.50276491160674], [-118.25562510291037, 34.50167983601259], [-118.25811405396979, 34.49948107630435], [-118.2594374116516, 34.4987730506989], [-118.2613229943943, 34.498169151035064], [-118.26984846079654, 34.497104262398516], [-118.27148857515976, 34.49676572625064], [-118.283360042033, 34.49195690010686], [-118.28513411870637, 34.49070523086307], [-118.28614845568582, 34.489385898025276], [-118.28651406230853, 34.48823496406879], [-118.28684555746976, 34.48432886084255], [-118.28786479733525, 34.48254794021084], [-118.28941119030785, 34.48122246989989], [-118.29153076154049, 34.48036033704529], [-118.29584490977795, 34.47987753494308], [-118.29783723634789, 34.47934581114602], [-118.31100104801514, 34.47287305069936], [-118.31238632140938, 34.472414667854395], [-118.3169902682283, 34.4716158087797], [-118.31828825871858, 34.47111098814261], [-118.31941321756912, 34.47041800624682], [-118.32306573576233, 34.46755883353657], [-118.32405069951635, 34.46710783471354], [-118.32557364264049, 34.4667337008158], [-118.32479403220262, 34.45872952237763], [-118.32457920571778, 34.451549965843114], [-118.33449350049823, 34.45260819866622], [-118.3434326032265, 34.45164343078068], [-118.34334431384156, 34.45946599242291], [-118.34410936041725, 34.45949199096732], [-118.34330556155025, 34.46022096779477], [-118.34325518543041, 34.467355723077766], [-118.37949695195, 34.467626696550035], [-118.37909563574739, 34.48651946673609], [-118.37952994222128, 34.48740946077916], [-118.37908175523032, 34.48759590132626], [-118.37897468288001, 34.49633109825049], [-118.36149945609571, 34.49660130538342], [-118.36181283433287, 34.5111524516377], [-118.36165485424554, 34.52567753123508], [-118.34406139577973, 34.52566643581506], [-118.34326775559877, 34.53990710112496], [-118.32611380868697, 34.54019150458609], [-118.30830565820204, 34.54023712905305], [-118.30697323479328, 34.558303349015844], [-118.2876129113904, 34.558149167787604], [-118.25467739592212, 34.55830403375057]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Agua Dulce", "population": 0.041580041580041575, "cases": 1.0, "resource_uri": "/1.0/boundary/agua-dulce-la-county-neighborhood-current/", "external_id": "agua-dulce", "slug": "agua-dulce-la-county-neighborhood-current", "metadata": {"sqmi": 31.4626319451, "type": "unincorporated-area", "name": "Agua Dulce", "slug": "agua-dulce"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.12174700000016, 34.10503999912332], [-118.11686600000012, 34.10732199912337], [-118.11293300000011, 34.101729999123364], [-118.11273900000016, 34.10094099912327], [-118.1127950000002, 34.10040899912349], [-118.11377500000016, 34.09996099912336], [-118.11318200000024, 34.09900299912349], [-118.11362200000015, 34.098704999123335], [-118.113213, 34.09790899912345], [-118.11317100000014, 34.09671899912345], [-118.113004, 34.09671599912344], [-118.11307600000018, 34.096048999123425], [-118.11273700000011, 34.09493699912345], [-118.11270700000019, 34.09387299912348], [-118.10839900000018, 34.09559799912354], [-118.10818900000018, 34.071653999123676], [-118.1108670000003, 34.07163599912371], [-118.10939900000017, 34.0711099991238], [-118.109401, 34.069840999123805], [-118.13570700000014, 34.06974099912372], [-118.13568800000014, 34.06792799912381], [-118.13515800000013, 34.06792999912375], [-118.13502900000016, 34.066022999123824], [-118.13498800000015, 34.06328399912382], [-118.13551200000019, 34.06327999912385], [-118.13550200000027, 34.0624569991239], [-118.1384700000002, 34.06242499912395], [-118.140266, 34.06220299912387], [-118.1416750000001, 34.06142599912384], [-118.142338, 34.06129399912394], [-118.1431670000002, 34.06088299912391], [-118.14342300000014, 34.06031199912392], [-118.14463200000016, 34.0599319991239], [-118.14579100000032, 34.060075999123946], [-118.147222, 34.0610039991238], [-118.148269, 34.06145899912391], [-118.151271, 34.06174299912383], [-118.15282000000015, 34.06232899912383], [-118.16483500000022, 34.06228299912385], [-118.16443300000016, 34.06450599912384], [-118.16401100000014, 34.06571199912379], [-118.16203200000014, 34.06967399912384], [-118.163371, 34.06974699912389], [-118.16171700000014, 34.07179299912378], [-118.16156200000016, 34.07297099912379], [-118.161761, 34.07463499912369], [-118.1604960000002, 34.075130999123715], [-118.1606730000002, 34.09374099912351], [-118.15935300000018, 34.094529999123345], [-118.159498, 34.09417099912348], [-118.15619100000012, 34.09650799912353], [-118.15546300000014, 34.09751499912347], [-118.15529, 34.09867199912348], [-118.141783, 34.09868199912348], [-118.14183100000021, 34.103971999123424], [-118.140045, 34.10407199912336], [-118.13902900000019, 34.10387299912341], [-118.13469400000015, 34.10391999912342], [-118.13469400000025, 34.10408499912339], [-118.13448900000016, 34.10416299912345], [-118.134478, 34.10544899912337], [-118.1352960000002, 34.10644999912332], [-118.1279350000003, 34.111145999123245], [-118.12174700000016, 34.10503999912332]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Alhambra", "population": 0.8672030090899593, "cases": 83.0, "resource_uri": "/1.0/boundary/alhambra-la-county-neighborhood-current/", "external_id": "alhambra", "slug": "alhambra-la-county-neighborhood-current", "metadata": {"sqmi": 7.62381430605, "type": "standalone-city", "name": "Alhambra", "slug": "alhambra"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.32651297216451, 33.897572005620816], [-118.3264919904623, 33.88291600056771], [-118.34377498067973, 33.87730200415275], [-118.3438200000003, 33.89358699912605], [-118.3423229930002, 33.893598003649345], [-118.34230797916481, 33.894658000462954], [-118.3351739930528, 33.8946630031478], [-118.33517797915299, 33.89828700037314], [-118.33299998608817, 33.898290003992614], [-118.33306798601289, 33.897424001189115], [-118.33158098739203, 33.89751800549201], [-118.33081299116618, 33.89800199777932], [-118.32920998730374, 33.899434002399424], [-118.32869198101466, 33.90012400698114], [-118.32649197216287, 33.901932005626534], [-118.32651297216451, 33.897572005620816]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Alondra Park", "population": 0.08790857508191481, "cases": 11.0, "resource_uri": "/1.0/boundary/alondra-park-la-county-neighborhood-current/", "external_id": "alondra-park", "slug": "alondra-park-la-county-neighborhood-current", "metadata": {"sqmi": 1.13989423058, "type": "unincorporated-area", "name": "Alondra Park", "slug": "alondra-park"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.15135397181479, 34.21550800599232], [-118.14083997180039, 34.2150280059893], [-118.13643997179442, 34.21464400598773], [-118.13500397179266, 34.21400400598667], [-118.1249029717804, 34.20830400597686], [-118.1178949717721, 34.204116005969816], [-118.10682297175947, 34.19582900595646], [-118.10470299382786, 34.19480500893741], [-118.10486299337606, 34.19337300137353], [-118.10691897176056, 34.19329600595314], [-118.10478797175834, 34.19118600595004], [-118.1048859717586, 34.19078600594942], [-118.10408198392092, 34.19038500011493], [-118.10457898783726, 34.189983004956076], [-118.10456997175893, 34.188480005946516], [-118.10306097175722, 34.187376005944635], [-118.10303198591744, 34.18562000068169], [-118.10226098584002, 34.185604004382974], [-118.10194697175632, 34.18527000594167], [-118.10224297175694, 34.18476900594103], [-118.10157097175623, 34.18416100594005], [-118.10066597175518, 34.18367100593919], [-118.10039497175487, 34.18332800593871], [-118.10028797175575, 34.180371005934916], [-118.09825598586521, 34.17568500087614], [-118.0954069858875, 34.17570600417423], [-118.09578597175133, 34.17486800592674], [-118.09578998596244, 34.174495006275144], [-118.09597698711119, 34.17451599892225], [-118.0961149717521, 34.1741420059258], [-118.09610797175237, 34.17305100592441], [-118.09650197175311, 34.1722050059233], [-118.09597298607832, 34.17106700312378], [-118.09565998549627, 34.171172001645964], [-118.09543498612963, 34.170708003236584], [-118.09504298556324, 34.170847001426104], [-118.09490298566963, 34.17029100190977], [-118.09551698608266, 34.1700840031334], [-118.0952019858763, 34.16940600422031], [-118.09600198515572, 34.169405999972156], [-118.09590098590482, 34.16916800409423], [-118.097802985863, 34.16913800010008], [-118.09780198588383, 34.16883900506988], [-118.09831898591047, 34.16883899997224], [-118.09833998588708, 34.16770900418361], [-118.10920497880868, 34.16765000176111], [-118.109233985872, 34.16864500427835], [-118.11178597877701, 34.16859600192681], [-118.11178997871643, 34.169143000426196], [-118.11100697177436, 34.16914400592281], [-118.11087997177388, 34.170117005924034], [-118.1111989717742, 34.170368005924466], [-118.11301398588536, 34.17033900029012], [-118.11302298591069, 34.16963600412637], [-118.11710297880174, 34.16960600183017], [-118.11698097178193, 34.17139300592714], [-118.11720497859268, 34.17375400048926], [-118.11660399954879, 34.173642030975614], [-118.11662098479437, 34.17541900068528], [-118.11735398047965, 34.17498300699283], [-118.11735798563593, 34.17586300494625], [-118.11877498615793, 34.17593700003496], [-118.11885998594175, 34.175416003986506], [-118.12124997876488, 34.17533400204223], [-118.12125298599257, 34.17554700350276], [-118.1225229859753, 34.17551000000765], [-118.12253798589968, 34.17520900420816], [-118.1286309787314, 34.175229002331484], [-118.12870898580903, 34.17656600454184], [-118.13190797875761, 34.17650700215657], [-118.13188397180078, 34.177066005937895], [-118.13210898496524, 34.177036003023495], [-118.14266698589739, 34.1817930042799], [-118.150103985988, 34.18180500159286], [-118.16299297888592, 34.18144900166741], [-118.16299398593176, 34.181611004199965], [-118.16411697886741, 34.18160400174929], [-118.16412898592915, 34.18308600421466], [-118.16745797184811, 34.18307500595406], [-118.16747498591971, 34.18143000251784], [-118.1690429788289, 34.18107800396841], [-118.16958397185158, 34.181405005952435], [-118.1704609718521, 34.18374500595565], [-118.17026197185167, 34.18410100595594], [-118.17082597185224, 34.184753005956935], [-118.17034697185106, 34.18603700595859], [-118.16971397185051, 34.18548000595775], [-118.16873398593386, 34.18544500420961], [-118.16872198587592, 34.189311004430635], [-118.17179997898107, 34.189394001355765], [-118.17090097796083, 34.19020500354395], [-118.17088797934701, 34.190605997994574], [-118.17060098520594, 34.190561006651684], [-118.1704109753017, 34.19120900875423], [-118.16921797184746, 34.19246100596672], [-118.16859197184708, 34.19067400596414], [-118.16833997184689, 34.190470005963725], [-118.16829598594319, 34.18849700075582], [-118.16767098556699, 34.18840900724123], [-118.16750697268235, 34.19057099493442], [-118.16687199057272, 34.19025600484966], [-118.16650297184395, 34.19123300596439], [-118.16762697184559, 34.191590005965146], [-118.16748097184512, 34.19212000596573], [-118.16849097184647, 34.192445005966434], [-118.16845497184612, 34.193250005967556], [-118.16748597184414, 34.19529700596985], [-118.16679797184291, 34.196220005970964], [-118.16579897184079, 34.19804200597304], [-118.16425097943677, 34.20145500241654], [-118.16257798601019, 34.201643003678015], [-118.163444971837, 34.19971300597467], [-118.16052498409628, 34.19877500724982], [-118.16000197183206, 34.20012600597448], [-118.16111697183317, 34.20127600597616], [-118.16076298594646, 34.201860004128385], [-118.16160197883016, 34.201844001895196], [-118.16290097183474, 34.20394800597997], [-118.16276098587986, 34.204376004407486], [-118.16315697893252, 34.20438400148187], [-118.16335298562798, 34.20479600186445], [-118.16364997909159, 34.204702004949525], [-118.16551697183725, 34.207177005984896], [-118.16550797183702, 34.20799700598596], [-118.16580497183745, 34.20810400598612], [-118.16590497183685, 34.21030400598899], [-118.16699197183807, 34.210908005989985], [-118.1667449798813, 34.21161100010454], [-118.16564698582404, 34.21156900459427], [-118.16500398126473, 34.21244599891348], [-118.16482399078532, 34.212348005207176], [-118.1646299718342, 34.2125600059916], [-118.16477697183446, 34.212673005991746], [-118.1642539718332, 34.213960005993364], [-118.1628629858692, 34.21521900444817], [-118.16685897894688, 34.21531700144248], [-118.16697998633309, 34.21546200048902], [-118.16780198550069, 34.215141004443716], [-118.16791798591441, 34.21529600429643], [-118.17059298600084, 34.215304002135866], [-118.17440198557995, 34.21508800371359], [-118.17730497928929, 34.21540400059524], [-118.17757497836148, 34.22009100270324], [-118.17231297184253, 34.21979600600273], [-118.16447597183212, 34.218236005998875], [-118.15934897182554, 34.21687000599602], [-118.1538779718182, 34.2158320059934], [-118.15135397181479, 34.21550800599232]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Altadena", "population": 0.4361979166666667, "cases": 67.0, "resource_uri": "/1.0/boundary/altadena-la-county-neighborhood-current/", "external_id": "altadena", "slug": "altadena-la-county-neighborhood-current", "metadata": {"sqmi": 8.71033767246, "type": "unincorporated-area", "name": "Altadena", "slug": "altadena"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.09679656118362, 34.48076701266776], [-118.09672894180616, 34.47352001660662], [-118.07970177853352, 34.473579517385176], [-118.07960022101274, 34.47383334430291], [-118.07958590889226, 34.470140728368804], [-118.04492629305284, 34.47033813707821], [-118.01111992998806, 34.470137708399236], [-118.01110636074138, 34.442702572947034], [-118.010533, 34.443162999119416], [-118.009765, 34.44330699911946], [-118.008517, 34.441098999119454], [-118.007429, 34.440442999119504], [-118.007141, 34.43964299911945], [-118.006421, 34.439066999119454], [-118.004997, 34.43860299911948], [-118.004645, 34.43825099911949], [-118.004341, 34.438330999119586], [-118.003493, 34.43807499911952], [-118.002949, 34.43764299911955], [-118.002053, 34.437258999119486], [-118.000645, 34.43714699911955], [-118.000325, 34.43693899911947], [-117.999221, 34.43721099911952], [-117.998677, 34.43709899911949], [-117.998229, 34.43727499911953], [-117.997109, 34.43569099911955], [-117.996421, 34.43554799911951], [-117.996005, 34.43521199911951], [-117.995173, 34.43522799911952], [-117.995013, 34.43468399911959], [-117.994357, 34.434331999119564], [-117.993797, 34.43407599911963], [-117.992325, 34.433851999119526], [-117.991636, 34.433467999119586], [-117.991012, 34.43220399911953], [-117.990548, 34.43193199911957], [-117.99098, 34.43137199911967], [-117.990628, 34.431131999119636], [-117.990228, 34.43127599911963], [-117.99018, 34.43034799911955], [-117.989316, 34.42962799911958], [-117.988564, 34.42929199911956], [-117.988836, 34.42892399911958], [-117.988836, 34.42844399911962], [-117.988676, 34.42818799911967], [-117.988068, 34.42791599911961], [-117.987428, 34.42725999911961], [-117.986324, 34.42713199911962], [-117.985924, 34.4267959991196], [-117.98482, 34.42663599911962], [-117.984324, 34.42633199911971], [-117.984196, 34.42612399911963], [-117.984228, 34.42548399911966], [-117.984004, 34.42529199911972], [-117.983252, 34.42511599911963], [-117.982548, 34.425179999119685], [-117.9821, 34.42485999911965], [-117.981252, 34.42295599911976], [-117.980644, 34.422395999119665], [-117.980644, 34.42201199911965], [-117.980356, 34.4215159991197], [-117.980484, 34.421179999119694], [-117.97978, 34.42098799911969], [-117.979172, 34.42039599911965], [-117.978004, 34.42029999911972], [-117.976564, 34.41943599911977], [-117.975764, 34.4193399991197], [-117.975092, 34.418363999119705], [-117.975108, 34.41788399911979], [-117.974916, 34.4174359991197], [-117.974564, 34.417275999119774], [-117.974052, 34.41788399911979], [-117.973284, 34.417579999119766], [-117.97306, 34.41717999911971], [-117.973188, 34.416379999119826], [-117.973092, 34.41588399911978], [-117.972644, 34.41553199911976], [-117.97226, 34.41557999911979], [-117.971412, 34.41508399911981], [-117.970948, 34.414603999119755], [-117.970884, 34.4142199991198], [-117.971188, 34.41354899911977], [-117.969444, 34.412412999119816], [-117.969332, 34.41198099911984], [-117.96874, 34.41138899911979], [-117.96866, 34.411116999119876], [-117.969092, 34.40998099911987], [-117.968292, 34.40956499911981], [-117.967955, 34.40921299911986], [-117.967859, 34.408508999119874], [-117.967075, 34.40759699911985], [-117.966131, 34.40748499911987], [-117.965459, 34.40674899911991], [-117.965091, 34.406668999119844], [-117.964243, 34.407100999119926], [-117.963411, 34.40705299911983], [-117.963091, 34.406508999119865], [-117.961027, 34.40554899911994], [-117.960675, 34.4056129991199], [-117.959363, 34.40663699911987], [-117.958019, 34.40710099911988], [-117.956995, 34.40692499911989], [-117.956579, 34.40641299911995], [-117.956035, 34.406444999119884], [-117.954595, 34.405804999119894], [-117.952115, 34.40575699911991], [-117.951715, 34.40628499911986], [-117.950899, 34.40633299911987], [-117.950515, 34.40652499911984], [-117.949283, 34.405692999119836], [-117.948355, 34.405404999119895], [-117.947843, 34.40550099911988], [-117.946819, 34.40537299911991], [-117.946083, 34.404860999119826], [-117.945827, 34.405100999119895], [-117.945427, 34.40494099911989], [-117.945171, 34.40463699911986], [-117.943875, 34.40407699911993], [-117.943379, 34.40350099911989], [-117.943699, 34.402156999119875], [-117.943571, 34.40202899911997], [-117.943363, 34.401852999119996], [-117.941315, 34.401868999119955], [-117.940579, 34.399804999119986], [-117.940915, 34.39830099912001], [-117.940835, 34.397756999119984], [-117.940467, 34.39730899912004], [-117.939602, 34.39494099912004], [-117.939682, 34.39438099911998], [-117.93821, 34.39292599912008], [-117.939298, 34.39174199912012], [-117.939954, 34.39182199912005], [-117.940354, 34.391661999120025], [-117.940562, 34.39127799912002], [-117.940226, 34.39065399912001], [-117.940338, 34.390253999120105], [-117.941762, 34.38943799912009], [-117.94253, 34.38871799912008], [-117.942978, 34.38857399912008], [-117.943426, 34.38799799912014], [-117.943378, 34.38782199912016], [-117.942914, 34.38758199912008], [-117.942818, 34.38732599912016], [-117.942946, 34.38705399912011], [-117.942658, 34.38674999912009], [-117.942274, 34.38666999912016], [-117.941554, 34.38684599912016], [-117.940338, 34.38668599912014], [-117.940306, 34.38626999912011], [-117.939778, 34.38607799912008], [-117.939746, 34.38516599912017], [-117.939314, 34.38479799912017], [-117.93869, 34.38466999912016], [-117.937602, 34.38402999912017], [-117.937122, 34.38393399912022], [-117.93645, 34.38422199912013], [-117.936066, 34.383901999120084], [-117.935442, 34.38246199912022], [-117.932578, 34.3811019991202], [-117.93246546941081, 34.38086126956004], [-117.92231951502197, 34.38071149252826], [-117.87590644792355, 34.38105273044494], [-117.78288061655057, 34.38252696926119], [-117.78068162561677, 34.37755887863301], [-117.7799038535965, 34.37750076536735], [-117.77929519805397, 34.37707062699436], [-117.77923553790853, 34.375333791805886], [-117.7785165171424, 34.37463559100091], [-117.77620342174897, 34.37466806359041], [-117.77470800695292, 34.3755589673081], [-117.77424589988907, 34.37558437436298], [-117.77322101503219, 34.375065058933586], [-117.7725621369034, 34.37499601152122], [-117.7709315510609, 34.37587630174973], [-117.76884117621243, 34.37582175629486], [-117.76795499780508, 34.37543298062556], [-117.76742520411798, 34.374483103624065], [-117.76724505378843, 34.37314196680855], [-117.76669580365811, 34.37270689115987], [-117.76618882736942, 34.3725405707712], [-117.76514637874145, 34.372644394733065], [-117.76380797922648, 34.37336218778341], [-117.76315067115652, 34.37416033646264], [-117.76208181818217, 34.37435034577773], [-117.75893539668476, 34.37392334987945], [-117.75651832796652, 34.37424066859807], [-117.75336765207899, 34.37325943668687], [-117.75078196433023, 34.37352248677989], [-117.74898303550968, 34.37255748873709], [-117.74787755175325, 34.37238670941402], [-117.74718884859554, 34.37244881166539], [-117.7465169903614, 34.37283419914502], [-117.74610271779055, 34.373356453177934], [-117.74599626571464, 34.374448338186774], [-117.74611326643726, 34.37587934702387], [-117.74648671029398, 34.377081817301914], [-117.74636345820448, 34.377468989340166], [-117.74598077016711, 34.377736038449086], [-117.74530448197697, 34.37789565359853], [-117.74407551184119, 34.37786557028638], [-117.74267167925815, 34.37864512935804], [-117.74205026712143, 34.37869448356763], [-117.74103938665525, 34.37796336490215], [-117.7403967100895, 34.37674717678926], [-117.73943741165154, 34.37646331117641], [-117.73858709845048, 34.37600198369225], [-117.73749371384372, 34.37589591040183], [-117.73565882378809, 34.3765399381131], [-117.73421511338967, 34.37645967096876], [-117.73321336924265, 34.376776301749466], [-117.73182742717144, 34.376963004228735], [-117.73141041638355, 34.37738745504904], [-117.73123892069745, 34.37847228104952], [-117.7310484569501, 34.37879391061558], [-117.73048566412061, 34.379146708980315], [-117.72966363636391, 34.37925943668684], [-117.72903332699421, 34.37907964226038], [-117.72785521558846, 34.378345382352855], [-117.7263346548918, 34.3781206148291], [-117.72607707279475, 34.37770448109691], [-117.72639489802738, 34.376777940804075], [-117.72620255793836, 34.3762093320882], [-117.72589240252215, 34.37598230605845], [-117.72436059972141, 34.375670551351234], [-117.72318829000939, 34.37468936398913], [-117.72260184731397, 34.37463183741294], [-117.72149955465669, 34.37506619254488], [-117.72048642711448, 34.37518656268957], [-117.71958286619704, 34.37502694754011], [-117.71735256604197, 34.37394964173999], [-117.71375935803056, 34.37392175629509], [-117.71290994771407, 34.37356112072704], [-117.71180319721981, 34.372282104709264], [-117.71104349586776, 34.37205970552428], [-117.71008180394637, 34.37240624862507], [-117.70816967219565, 34.37443618944093], [-117.70736061334537, 34.37579063762945], [-117.70646672980088, 34.37648413247937], [-117.7058106861697, 34.37817566125684], [-117.70504930048418, 34.378710345344075], [-117.70436888133443, 34.37869216352571], [-117.70371574792786, 34.37822898059223], [-117.70258835203025, 34.37619955377676], [-117.70271134275069, 34.374639706657184], [-117.70217447407647, 34.37404196260199], [-117.70176109740676, 34.37397761850478], [-117.701260085398, 34.37407430503297], [-117.70071842060702, 34.37449704170479], [-117.70032298376476, 34.37573426335807], [-117.6994905860482, 34.37649723606292], [-117.6987069158676, 34.378530308490014], [-117.698239400279, 34.37889782407848], [-117.69769135443462, 34.37889346527191], [-117.69635520012305, 34.378332163959456], [-117.69481818181825, 34.37849580032316], [-117.69305848571844, 34.378423015299674], [-117.6919823381958, 34.37859340210638], [-117.69070460893266, 34.379141108143905], [-117.68928920034622, 34.378675160283485], [-117.68564223312197, 34.375774144050645], [-117.68410332742546, 34.374846070890605], [-117.68286084227513, 34.37448579529497], [-117.67938226352564, 34.374248010726554], [-117.67757941891347, 34.37334742379945], [-117.67573680898006, 34.373002556181234], [-117.67032082728633, 34.37127596257749], [-117.66705499079825, 34.37106619254485], [-117.66542170056613, 34.370378325474874], [-117.66252043218381, 34.36870938851503], [-117.65975996394677, 34.36791292002936], [-117.65671862716184, 34.367538919817534], [-117.65389005879656, 34.36642961779801], [-117.65260315823693, 34.366205628436106], [-117.6526290560182, 34.36650535017708], [-117.65209700000013, 34.366147999120265], [-117.65214400000015, 34.36485599912039], [-117.65161400000017, 34.362737999120306], [-117.65199600000021, 34.36079999912025], [-117.65024800000013, 34.33886499912062], [-117.64560400000032, 34.28994699912116], [-117.64788000000027, 34.28257999912128], [-117.65600200000019, 34.250888999121685], [-117.6571880000001, 34.245104999121814], [-117.66407800000032, 34.218021999122186], [-117.67531600000012, 34.177047999122536], [-117.67477000000015, 34.17902399912252], [-117.67551700000026, 34.17602299912258], [-117.6775940000003, 34.16512099912277], [-117.67774500000019, 34.164798999122695], [-117.69807200000018, 34.16499399912266], [-117.69827600000019, 34.15795199912275], [-117.68551200000026, 34.15783699912272], [-117.68373000000024, 34.15989299912284], [-117.68378500000028, 34.16064899912273], [-117.68255800000028, 34.16066199912278], [-117.68257200000016, 34.15975699912286], [-117.68374100000025, 34.15817899912278], [-117.68410700000015, 34.15620399912293], [-117.6846980000003, 34.15533899912274], [-117.68662600000025, 34.153456999122966], [-117.68707600000026, 34.15357299912285], [-117.68735600000032, 34.15442899912282], [-117.69084100000026, 34.15380599912287], [-117.69178300000014, 34.1534929991229], [-117.69200700000037, 34.153491999122934], [-117.69205200000022, 34.15364099912271], [-117.70212600000026, 34.15432499912289], [-117.70257200000019, 34.154378999122756], [-117.70310600000013, 34.158261999122715], [-117.70628500000026, 34.158446999122724], [-117.71578700000028, 34.158135999122834], [-117.7159680000001, 34.165243999122644], [-117.72488900000019, 34.16530599912264], [-117.72488934305413, 34.16491793848487], [-117.75580626049027, 34.16532027790203], [-117.7557236352711, 34.163569655914074], [-117.75868100000027, 34.163601999122804], [-117.75877500000023, 34.157273999122886], [-117.76775900000015, 34.157236999122816], [-117.76791900000016, 34.15274299912284], [-117.76771532903393, 34.15074559438337], [-117.77453464657641, 34.150714560569504], [-117.77471600000011, 34.150484999122845], [-117.77446300000028, 34.14940699912289], [-117.77582200000026, 34.14817299912286], [-117.77609086553963, 34.14712299701703], [-117.78069100000015, 34.14710699912287], [-117.78050700000028, 34.166950999122605], [-117.7915160000002, 34.166934999122645], [-117.79353200000031, 34.166805999122566], [-117.79362400000016, 34.17858799912249], [-117.84509800000022, 34.17859799912253], [-117.84509800000016, 34.177719999122516], [-117.84639000000018, 34.17773299912255], [-117.846329, 34.17237399912265], [-117.83771800000032, 34.17236399912257], [-117.8377530000002, 34.16152499912263], [-117.82466200000015, 34.161962999122814], [-117.82468600000021, 34.1608729991228], [-117.8251730000001, 34.16034299912283], [-117.8269930000001, 34.1595319991227], [-117.82937900000015, 34.15810799912275], [-117.83075000000012, 34.15749399912275], [-117.83206400000023, 34.15732699912272], [-117.83422500000026, 34.15644099912288], [-117.836609, 34.15589799912279], [-117.83834300000025, 34.159863999122834], [-117.83867200000023, 34.16222299912266], [-117.83929300000027, 34.16240599912278], [-117.839165, 34.16134999912282], [-117.8412930000002, 34.16120599912278], [-117.8412930000002, 34.157706999122716], [-117.84599300000019, 34.1575069991228], [-117.84589100000012, 34.165111999122686], [-117.85055900000026, 34.165154999122684], [-117.85010500000023, 34.17856299912256], [-117.86427000000025, 34.178533999122635], [-117.8643980000002, 34.17144599912264], [-117.88086300000026, 34.17130199912263], [-117.8809950000002, 34.16500599912268], [-117.88569500000034, 34.16510599912261], [-117.88553700000027, 34.16150299912269], [-117.8898520000002, 34.16148999912267], [-117.88984600000016, 34.1651209991227], [-117.89916000000022, 34.165105999122716], [-117.89911700000015, 34.1680989991228], [-117.90729100000019, 34.168205999122684], [-117.90735200000024, 34.16503899912268], [-117.91446400000022, 34.16534999912264], [-117.92479600000028, 34.165505999122665], [-117.92470400000013, 34.1943249991223], [-117.95340528321371, 34.19417387175714], [-117.99508537083179, 34.194314692478216], [-118.01264500170025, 34.19396347294128], [-118.0213851980748, 34.19394004064259], [-118.02138509061996, 34.193807838876154], [-118.02204600000017, 34.19381999912226], [-118.02159900000024, 34.19078199912237], [-118.02169100000022, 34.18850799912234], [-118.02136921876999, 34.17943873158512], [-118.06600100000018, 34.179404999122596], [-118.06597810318614, 34.179160912968335], [-118.0827727760265, 34.17908114152169], [-118.08227272692312, 34.19693498899673], [-118.10110379547919, 34.19678100768463], [-118.1012240000003, 34.1968299991223], [-118.10114600000027, 34.1972469991223], [-118.10165400000015, 34.19692999912225], [-118.10492600000019, 34.19683999912226], [-118.10480771224697, 34.19485559486646], [-118.10682297175947, 34.19582900595646], [-118.1178949717721, 34.204116005969816], [-118.1249029717804, 34.20830400597686], [-118.13500397179266, 34.21400400598667], [-118.13643997179442, 34.21464400598773], [-118.14083997180039, 34.2150280059893], [-118.14866297181115, 34.21530300599156], [-118.1538779718182, 34.2158320059934], [-118.15934897182554, 34.21687000599602], [-118.16447597183212, 34.218236005998875], [-118.17231297184253, 34.21979600600273], [-118.17757497836148, 34.22009100270324], [-118.17767400000025, 34.222451999122086], [-118.18343400000018, 34.22240399912201], [-118.18348200000024, 34.22310799912197], [-118.18666400000026, 34.22302099912208], [-118.18684100000021, 34.232151999121925], [-118.18640300000014, 34.23356599912181], [-118.18671700000019, 34.23430499912192], [-118.186915, 34.23750799912179], [-118.18684200000025, 34.251585999121616], [-118.19557400000016, 34.2519049991216], [-118.19680427468906, 34.25174978591798], [-118.19738717203848, 34.25197290455393], [-118.19765885129615, 34.25238196345164], [-118.19749580120323, 34.253082247206144], [-118.19756507618258, 34.25350418988412], [-118.19798470010473, 34.253829083753665], [-118.19875080840212, 34.25406381364472], [-118.1991411655827, 34.254493007611075], [-118.19918656356928, 34.25477720837109], [-118.19910606789068, 34.25503609217638], [-118.19803807238127, 34.25611152392121], [-118.19685185438144, 34.256342960918396], [-118.1966228142201, 34.25657293668463], [-118.19656009791831, 34.25693783014357], [-118.19710436292695, 34.25830968102849], [-118.19695697934529, 34.25922898059355], [-118.19628609651524, 34.259621756296255], [-118.19530044534373, 34.25959346527351], [-118.19470302301873, 34.25923609217623], [-118.19401631709646, 34.258195048299505], [-118.19311425367376, 34.25809232601585], [-118.192507320399, 34.258639485245205], [-118.1925224876598, 34.2598998529734], [-118.19230535385668, 34.26028163914393], [-118.19153175470426, 34.26059565359971], [-118.18904657267147, 34.2603323675579], [-118.18865120324467, 34.260424722965766], [-118.18829374092749, 34.26089229656988], [-118.18837747266025, 34.26193175382563], [-118.18815697934522, 34.26240170786644], [-118.18749790060158, 34.26294116470424], [-118.18690894476114, 34.26315885041761], [-118.18644160860732, 34.263128527163616], [-118.18607881577746, 34.262884819707814], [-118.1851638145233, 34.26192353479607], [-118.1844924387518, 34.26080040872976], [-118.18402895591694, 34.260650345779084], [-118.18343598330874, 34.26072747814485], [-118.183023320097, 34.26104372584576], [-118.18279515106245, 34.26181003548097], [-118.18268689999239, 34.2630514188747], [-118.18296721172055, 34.2641229935154], [-118.18292982978829, 34.2645086446872], [-118.18274716329047, 34.26478425119393], [-118.18212246015169, 34.26505811993271], [-118.18159135443462, 34.26503891981886], [-118.18023870698119, 34.26453960692404], [-118.17886888133457, 34.26427398170896], [-118.17686992293363, 34.26309275842028], [-118.1762678551221, 34.26303228060039], [-118.17550699984983, 34.26322750066336], [-118.17448037913901, 34.26370478923921], [-118.17425198586045, 34.26395993047393], [-118.17404902990219, 34.26638609563669], [-118.17365427487293, 34.26703333973926], [-118.17273155106079, 34.26746721084165], [-118.17098194688303, 34.26751757744041], [-118.16877716542872, 34.26938232968881], [-118.16799046374747, 34.26972073800076], [-118.16630524497086, 34.269573981708895], [-118.1651692211004, 34.268965442278905], [-118.16367043301264, 34.26864363918635], [-118.16242235450206, 34.267688458385834], [-118.16186945146576, 34.26758690352627], [-118.16035239884782, 34.2685077501139], [-118.15943027513187, 34.269612092435075], [-118.15904930048414, 34.269828527163426], [-118.15753870735062, 34.2696504441573], [-118.15554996343003, 34.26967756339259], [-118.15446445793103, 34.269856809106535], [-118.15344870099253, 34.27024545083419], [-118.15399596237471, 34.271297673944105], [-118.15443262299563, 34.27154433551612], [-118.15510622600294, 34.27161416872128], [-118.15620460893263, 34.27134070827969], [-118.15720804289417, 34.27141850524725], [-118.15974182555173, 34.273294148256845], [-118.1620979006016, 34.274086106266175], [-118.1636840152501, 34.2754015476203], [-118.16443913705227, 34.27565032138294], [-118.16559955465662, 34.27573380569704], [-118.16633426423806, 34.27604974262956], [-118.16686489167849, 34.27674160772852], [-118.16702195023615, 34.27825934009244], [-118.16721220386235, 34.27861380826053], [-118.1678274202215, 34.27892258027725], [-118.16882712657929, 34.27891387509801], [-118.1694979006017, 34.27912246990236], [-118.17053409351979, 34.280457563807744], [-118.17108375316016, 34.280594618052355], [-118.17236349021563, 34.28055932964342], [-118.17487228192937, 34.28099744206051], [-118.17647443601783, 34.28150665613972], [-118.17708739883327, 34.282507869822204], [-118.1773882139543, 34.282726579842596], [-118.17880000000015, 34.282567834281984], [-118.1793380723815, 34.28270665613967], [-118.17972709456812, 34.28304919071938], [-118.18049346615192, 34.284218626283106], [-118.18049346615192, 34.28474500832335], [-118.18015979877593, 34.28554311196212], [-118.18029704611455, 34.28613766546645], [-118.18081164797024, 34.28680953537392], [-118.18069334298158, 34.28771988968423], [-118.17962121846074, 34.28852509680673], [-118.17838925286377, 34.288558756282036], [-118.17723426423795, 34.28946843743136], [-118.17614665345981, 34.28981770860225], [-118.17546061334514, 34.29076336490319], [-118.17500384593869, 34.29110125443593], [-118.17266363636384, 34.29158670941511], [-118.17058022082425, 34.29102241989692], [-118.16996782536532, 34.29111607603198], [-118.16958617238248, 34.29162295104361], [-118.1696105354091, 34.29198452169203], [-118.17010474538766, 34.2929136989627], [-118.17000876660184, 34.293535314742606], [-118.16967245669107, 34.29402424882991], [-118.16784440653055, 34.295217856631915], [-118.16615856868769, 34.29535309683651], [-118.16580882880793, 34.295675593163466], [-118.16562970661796, 34.29657443513864], [-118.16513111866576, 34.296973981708625], [-118.16435026712136, 34.297021756295806], [-118.16296665381712, 34.29658670941497], [-118.16208230951993, 34.29671140839148], [-118.16072023995844, 34.2971935976839], [-118.16045705363699, 34.29756542883566], [-118.16045862238022, 34.2979215190658], [-118.16124327950388, 34.29873332611505], [-118.16128662012822, 34.29957971790435], [-118.16093426423808, 34.299950255613034], [-118.15959318335955, 34.30049321170228], [-118.15835839139312, 34.30148307261774], [-118.15765499079818, 34.301475283454735], [-118.15641006478018, 34.300987072276754], [-118.15517560418304, 34.301064038141064], [-118.15339230936802, 34.30017711917381], [-118.15136033918355, 34.29882019813926], [-118.14935570930436, 34.298460086321185], [-118.14879129822488, 34.29861258622387], [-118.14838528096706, 34.29911031936107], [-118.14853447548627, 34.29967232052743], [-118.14959697698151, 34.300418451521125], [-118.15017433392663, 34.30193336184552], [-118.1514800881067, 34.303656231943904], [-118.15349058478347, 34.305682865317934], [-118.15353993899316, 34.30607700472715], [-118.15328873404928, 34.306593944854384], [-118.15243936604084, 34.307748456070875], [-118.15163175470423, 34.3080047445083], [-118.1503173942329, 34.307714245173806], [-118.14937733620533, 34.307868380871895], [-118.14752090838041, 34.30714929537506], [-118.14596338710241, 34.30711182643584], [-118.14434849118811, 34.30802509680647], [-118.1430293952951, 34.30847580702946], [-118.14219394573357, 34.309306914988355], [-118.14102284156432, 34.30962883186765], [-118.14007576391545, 34.310270551352126], [-118.13839926548985, 34.31095006495728], [-118.13778717203839, 34.311963457325206], [-118.13620696795758, 34.31255573254728], [-118.13599003459447, 34.31283107104667], [-118.13578671029393, 34.3138406291863], [-118.13604110902385, 34.316659153507786], [-118.13593446321536, 34.31702568816384], [-118.1356006936573, 34.317366734708656], [-118.13496349021571, 34.31765885041692], [-118.13270208707578, 34.3174474867761], [-118.13143174093639, 34.31832922802453], [-118.13074442084044, 34.31993371761111], [-118.12888113116723, 34.32125580036169], [-118.12846607025426, 34.322228980593096], [-118.12773218248773, 34.32291807920114], [-118.12739073093157, 34.32402353479536], [-118.12621849001272, 34.32471905836461], [-118.12622175717507, 34.3259224592722], [-118.12589063850928, 34.32635152155702], [-118.12037167925791, 34.32919058390429], [-118.11848035053413, 34.32949386497784], [-118.11705428917656, 34.329967455047125], [-118.11656169738654, 34.330432249617445], [-118.11628149387451, 34.33156258746932], [-118.11596970425435, 34.331999728539], [-118.11413306119537, 34.333118397279726], [-118.11257808112931, 34.335108911870385], [-118.11065449054477, 34.33546663377653], [-118.10929016831486, 34.33616225025201], [-118.10884125574854, 34.33678757253824], [-118.10947055223112, 34.337633326114585], [-118.10979346615196, 34.33858226264617], [-118.11008428070147, 34.34054390043776], [-118.11063892069737, 34.34207317173688], [-118.11082307393038, 34.34347272639326], [-118.11067964314027, 34.3440393993995], [-118.11006067827364, 34.34497792516787], [-118.10981437495627, 34.345668594862616], [-118.11039580120318, 34.34739999912043], [-118.1099369483889, 34.34844353390261], [-118.10988632942788, 34.34890629335588], [-118.11063892069737, 34.35107317173675], [-118.1108321648394, 34.352418180938635], [-118.11061925005396, 34.35348620685588], [-118.10995871305934, 34.35484723987315], [-118.10963221952393, 34.35803048653472], [-118.10980357535678, 34.35994064109011], [-118.10936663876825, 34.3606575469793], [-118.107538472878, 34.3622941542485], [-118.10621515879978, 34.36582700126591], [-118.10329063850935, 34.36892424882926], [-118.10066783622618, 34.37067278210705], [-118.10052307393035, 34.371096285048495], [-118.10059444924836, 34.37198449027034], [-118.10092635412308, 34.372483800822394], [-118.10200480194644, 34.3733020985188], [-118.10207703311437, 34.37365439842655], [-118.10190243389069, 34.37421988968316], [-118.10156791469707, 34.37443993811336], [-118.09858364270605, 34.374906300785035], [-118.0979728481868, 34.37594382668351], [-118.09747510110806, 34.377359958577145], [-118.09731600677674, 34.37831212667155], [-118.09636014260859, 34.37931165949508], [-118.09657515005064, 34.38060751130057], [-118.09697836175113, 34.381557298861466], [-118.09829517476147, 34.38297391328167], [-118.09943534938537, 34.38502671252471], [-118.09941389285565, 34.385552445176124], [-118.09900497596738, 34.38596955633128], [-118.09831369984158, 34.38615019905301], [-118.09774374580078, 34.38595697846529], [-118.0971933364053, 34.38544601176044], [-118.09637816768672, 34.38535918380704], [-118.09492682738393, 34.38606619254468], [-118.0937474135909, 34.38612135521733], [-118.09138630015875, 34.38749565359815], [-118.09084374580071, 34.38740243301062], [-118.08972097777657, 34.38636437790049], [-118.08811645858746, 34.3863091159601], [-118.08690322178673, 34.387312399284035], [-118.08610882032744, 34.388278794283536], [-118.08495255387297, 34.38894435914714], [-118.08463536261235, 34.38928655336052], [-118.08482703675884, 34.39077146408389], [-118.08389982184077, 34.39232353479443], [-118.08334973287883, 34.392703574476634], [-118.08273188165977, 34.392759289961994], [-118.08218391758061, 34.39259571015741], [-118.07895161763768, 34.39008886662922], [-118.07843389380804, 34.389986486281906], [-118.0776609126637, 34.39017853239058], [-118.07711319311247, 34.39082386799923], [-118.07750357535663, 34.391941175332114], [-118.07739782495841, 34.392466672126126], [-118.07588773493691, 34.394269960603246], [-118.07562709456805, 34.39508717115804], [-118.07479428083307, 34.39572932632163], [-118.07464513023808, 34.396544405650424], [-118.07411515879991, 34.39751791035644], [-118.0730089447611, 34.39797703223432], [-118.07133793020007, 34.39788626214748], [-118.07086047367203, 34.39810871098322], [-118.07067217334733, 34.39837291241863], [-118.07067261403914, 34.39892701443746], [-118.07095548023099, 34.39921451751962], [-118.0733433551472, 34.40033156081001], [-118.0741089127499, 34.4010219179908], [-118.07437630262949, 34.40144117533204], [-118.07434169631996, 34.40265998885327], [-118.07459928358783, 34.40328282351454], [-118.07633426423799, 34.40358610626452], [-118.07810891274983, 34.40541282708168], [-118.07937055223108, 34.407215144295556], [-118.07969030547603, 34.40900854650804], [-118.08054116558289, 34.41002937124571], [-118.0815527740595, 34.41257937677837], [-118.08220229944034, 34.41356855086785], [-118.08295597132066, 34.41407390066697], [-118.08502202775678, 34.414626016532274], [-118.0855933429817, 34.4150073812841], [-118.08588539353866, 34.41569572078645], [-118.0858292747391, 34.41615605426869], [-118.08491953331468, 34.41725858809053], [-118.08470517161278, 34.41791350646616], [-118.08478173615985, 34.41860049107133], [-118.08549739119563, 34.41972738403603], [-118.08616727264737, 34.420238555296876], [-118.08822517332898, 34.4208770153552], [-118.08883027513195, 34.42134245126087], [-118.08920615923056, 34.42186820142752], [-118.08932307393053, 34.42228181730144], [-118.0891411610652, 34.423959803138445], [-118.08924685215595, 34.42502346329009], [-118.0913705522311, 34.42864241702248], [-118.09173201811481, 34.429786426233676], [-118.09162694841982, 34.430798951104556], [-118.08971956608714, 34.43489573161883], [-118.08968563395416, 34.43555132155726], [-118.08998245773273, 34.436204630770135], [-118.09247981210001, 34.43840154308602], [-118.10834518396388, 34.45126665850144], [-118.1100499371835, 34.453247005862124], [-118.11111164797006, 34.455682262644764], [-118.11565520479101, 34.47344878391756], [-118.11651937850999, 34.4749054939267], [-118.11795025649194, 34.47659300760837], [-118.1184043058416, 34.47788196344888], [-118.11786602693842, 34.480711990993775], [-118.09679656118362, 34.48076701266776]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Angeles Crest", "population": 0.012450199203187252, "cases": 1.0, "resource_uri": "/1.0/boundary/angeles-crest-la-county-neighborhood-current/", "external_id": "angeles-crest", "slug": "angeles-crest-la-county-neighborhood-current", "metadata": {"sqmi": 430.477491127, "type": "unincorporated-area", "name": "Angeles Crest", "slug": "angeles-crest"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.017052, 34.177181999122524], [-118.0181860000001, 34.17623199912254], [-118.018634, 34.17660299912245], [-118.01872000000013, 34.175410999122484], [-118.0196320000001, 34.1753949991225], [-118.019931, 34.174899999122516], [-118.020497, 34.174728999122465], [-118.021255, 34.17353399912244], [-118.021419, 34.173631999122485], [-118.0213140000001, 34.15980499912274], [-118.0211190000002, 34.15977999912267], [-118.02110600000012, 34.15905399912282], [-118.0212630000001, 34.15855199912263], [-118.020387, 34.157653999122765], [-118.02065200000014, 34.15746199912277], [-118.021288, 34.15793399912273], [-118.02127800000014, 34.15706299912267], [-118.02190600000023, 34.15705299912276], [-118.021883, 34.154752999122714], [-118.0213, 34.15476199912276], [-118.021009, 34.151107999122836], [-118.02070500000016, 34.15111199912289], [-118.020326, 34.131098999123076], [-118.02002000000013, 34.13114299912311], [-118.020009, 34.130163999123106], [-118.018055, 34.13019099912306], [-118.0180500000001, 34.129985999123114], [-118.016515, 34.12998099912304], [-118.016525, 34.13021799912306], [-118.01457800000016, 34.13002899912308], [-118.01256900000013, 34.130264999123035], [-118.00723700000019, 34.130328999123044], [-118.007219, 34.129333999123084], [-118.00673398079728, 34.129335998614835], [-118.00878597164689, 34.12588500584474], [-118.0085749716469, 34.12490700584151], [-118.00848998580382, 34.12192700423932], [-118.00859498582454, 34.11912900815097], [-118.01210597379277, 34.120335000497974], [-118.01237097165374, 34.11988500583734], [-118.01234698588746, 34.11868100519343], [-118.01310497165524, 34.11865500583442], [-118.01307798582963, 34.11701900414831], [-118.01341022989112, 34.11702806499554], [-118.01347456463638, 34.117282757049864], [-118.01392818149786, 34.117269543293666], [-118.01487698584295, 34.1156730040947], [-118.01523598620908, 34.115670000047366], [-118.015446, 34.11472699912321], [-118.016036, 34.113721999123285], [-118.0169199856587, 34.109929000937385], [-118.01671459353626, 34.10986860730083], [-118.01681073917541, 34.10933509867729], [-118.01594599829542, 34.10562899589348], [-118.0160619865792, 34.10556800396534], [-118.01555100000012, 34.10290199912331], [-118.007342, 34.10556599912338], [-118.00805400000012, 34.10410899912333], [-117.99509300000011, 34.099718999123525], [-117.99663900000012, 34.09654999912349], [-117.992226, 34.09505299912344], [-117.99145, 34.09505999912351], [-117.993758, 34.09310499912349], [-117.995296, 34.091548999123596], [-117.998653, 34.08700699912365], [-117.998926, 34.0872649991236], [-118.00186200000012, 34.0882619991236], [-117.997651, 34.096894999123414], [-117.99865000000015, 34.09728099912348], [-117.997717, 34.098185999123636], [-117.99753000000013, 34.09873899912338], [-118.000304, 34.099686999123406], [-118.001097, 34.098071999123505], [-118.009566, 34.10094599912344], [-118.010283, 34.09956499912343], [-118.01122, 34.09966899912337], [-118.01207, 34.09924899912338], [-118.012932, 34.09840399912345], [-118.01638600000018, 34.09672799912348], [-118.017388, 34.0968269991235], [-118.0201250000001, 34.09652799912344], [-118.02034, 34.09911499912341], [-118.01922497166923, 34.10278800581595], [-118.0178932836077, 34.10251638404463], [-118.01658998437082, 34.10528800032131], [-118.01731998592417, 34.10864900310407], [-118.0185859856585, 34.10846400153739], [-118.01846998592511, 34.107904003104416], [-118.02453727010318, 34.10700953067994], [-118.02455998589066, 34.107348003877824], [-118.02619898587858, 34.107286001719096], [-118.02923598566288, 34.10685100151048], [-118.0291779859347, 34.10656900314086], [-118.0304959927878, 34.106384000249186], [-118.030813, 34.107315999123195], [-118.0312040000001, 34.107260999123326], [-118.031018, 34.10640099912339], [-118.03269100000013, 34.10615799912335], [-118.03282700000015, 34.10632999912328], [-118.032748, 34.10593799912336], [-118.033622, 34.105813999123384], [-118.0337320000001, 34.1063449991234], [-118.0346990000001, 34.10620699912329], [-118.034824, 34.106804999123256], [-118.03621900000012, 34.10660599912335], [-118.036213, 34.10604799912332], [-118.03807500000012, 34.10577899912332], [-118.037972, 34.10528999912339], [-118.03874100000013, 34.10517899912334], [-118.03893800000017, 34.10615199912335], [-118.052244, 34.10420199912337], [-118.052778, 34.1068879991233], [-118.053496, 34.10678799912326], [-118.05367100000011, 34.10767999912329], [-118.05273500000013, 34.10794299912328], [-118.052843, 34.10843299912339], [-118.053044, 34.1084059991232], [-118.05315800000017, 34.10894199912329], [-118.052472, 34.109032999123315], [-118.05259700000013, 34.10966399912342], [-118.053293, 34.1095679991232], [-118.053701, 34.111456999123284], [-118.054012, 34.11141299912331], [-118.05417500000014, 34.11221799912326], [-118.054067, 34.11223299912332], [-118.0541780000001, 34.112780999123224], [-118.054027, 34.112801999123306], [-118.054209, 34.11369399912324], [-118.05463100000019, 34.11363599912327], [-118.054696, 34.11399299912325], [-118.055682, 34.113860999123276], [-118.056931, 34.12011199912326], [-118.05713800000012, 34.120726999123036], [-118.0579170000002, 34.1206179991232], [-118.05833100000014, 34.12267499912316], [-118.05961500000015, 34.12249599912313], [-118.05984800000022, 34.12362199912312], [-118.06047, 34.12353099912312], [-118.060544, 34.12391899912312], [-118.06123900000019, 34.12368099912307], [-118.06132000000015, 34.12410199912305], [-118.06649900000019, 34.12336299912308], [-118.06702000000017, 34.12301899912317], [-118.06716200000017, 34.12414499912317], [-118.06815800000024, 34.12398599912313], [-118.06794898588241, 34.12414600256583], [-118.06772998579073, 34.1253250006926], [-118.06728998594578, 34.12535500368526], [-118.06735398592642, 34.12978800384516], [-118.06787098579785, 34.12976300116211], [-118.06788798569235, 34.130726004711114], [-118.06931898592246, 34.1306490027234], [-118.06938798622404, 34.130989003417106], [-118.06903398666705, 34.13139800066027], [-118.06746798594676, 34.13150900367178], [-118.06795800000019, 34.15682099912275], [-118.038412, 34.15725899912279], [-118.038473, 34.1668809991226], [-118.029668, 34.16685399912255], [-118.029473, 34.16783199912259], [-118.03014100000014, 34.168927999122594], [-118.03014100000014, 34.16982099912254], [-118.029619, 34.169994999122586], [-118.0303540000001, 34.17036799912258], [-118.030007, 34.17077199912252], [-118.03022600000013, 34.17095199912257], [-118.030139, 34.1794019991225], [-118.017593, 34.179452999122375], [-118.017052, 34.177181999122524]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Arcadia", "population": 0.6573160584809224, "cases": 42.0, "resource_uri": "/1.0/boundary/arcadia-la-county-neighborhood-current/", "external_id": "arcadia", "slug": "arcadia-la-county-neighborhood-current", "metadata": {"sqmi": 11.1507969199, "type": "standalone-city", "name": "Arcadia", "slug": "arcadia"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.4220150000001, 34.22410299912182], [-118.42281500000016, 34.221702999121845], [-118.42781500000011, 34.221702999121845], [-118.435815, 34.22990299912176], [-118.440816, 34.23660299912161], [-118.45011600000012, 34.25000299912159], [-118.451816, 34.25170199912146], [-118.447916, 34.25740199912136], [-118.44230000000012, 34.26449699912131], [-118.44104100000013, 34.262545999121336], [-118.4398160000001, 34.26120199912132], [-118.42235900000014, 34.244721999121644], [-118.410514, 34.23380299912176], [-118.409699, 34.23339499912173], [-118.420515, 34.225602999121904], [-118.4220150000001, 34.22410299912182]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Arleta", "population": 0.34369832366006287, "cases": 106.0, "resource_uri": "/1.0/boundary/arleta-la-county-neighborhood-current/", "external_id": "arleta", "slug": "arleta-la-county-neighborhood-current", "metadata": {"sqmi": 3.09617917557, "type": "segment-of-a-city", "name": "Arleta", "slug": "arleta"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.315909, 34.05261099912384], [-118.313409, 34.05271099912387], [-118.31310900000011, 34.04961099912397], [-118.313008, 34.04001099912405], [-118.313408, 34.04001099912401], [-118.313408, 34.03751099912417], [-118.31500800000013, 34.03741099912408], [-118.315308, 34.037210999124255], [-118.320009, 34.03671099912401], [-118.323609, 34.036110999124155], [-118.32840900000011, 34.03571099912418], [-118.331409, 34.03521099912408], [-118.333809, 34.03501099912416], [-118.332709, 34.03671099912401], [-118.323009, 34.05480999912394], [-118.319609, 34.05351099912386], [-118.315909, 34.05261099912384]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Arlington Heights", "population": 0.1515299638283312, "cases": 62.0, "resource_uri": "/1.0/boundary/arlington-heights-la-county-neighborhood-current/", "external_id": "arlington-heights", "slug": "arlington-heights-la-county-neighborhood-current", "metadata": {"sqmi": 1.03141523527, "type": "segment-of-a-city", "name": "Arlington Heights", "slug": "arlington-heights"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.07489500000011, 33.88038299912613], [-118.07502400000014, 33.87962299912605], [-118.07498500000027, 33.87680599912615], [-118.07812800000022, 33.87675799912615], [-118.07741800000014, 33.8764709991261], [-118.080066, 33.8752609991262], [-118.08004300000019, 33.87305399912623], [-118.07027000000019, 33.87311199912628], [-118.07031100000023, 33.8698339991262], [-118.07250400000021, 33.8698209991263], [-118.07250200000021, 33.8696939991263], [-118.07026300000017, 33.86972699912622], [-118.07046900000033, 33.862153999126186], [-118.07013600000018, 33.860718999126384], [-118.0708230000002, 33.86031499912639], [-118.07112600000012, 33.86039299912631], [-118.07100600000018, 33.859142999126405], [-118.07113300000027, 33.858535999126275], [-118.06900700000011, 33.85855699912639], [-118.06891500000016, 33.85342299912643], [-118.07074600000014, 33.85340899912641], [-118.07223700000021, 33.85432499912644], [-118.07228700000016, 33.856939999126375], [-118.07492900000017, 33.857070999126464], [-118.07497200000016, 33.855989999126386], [-118.08211200000022, 33.86037199912636], [-118.08212800000011, 33.85931999912636], [-118.08278200000018, 33.85932099912635], [-118.08299900000017, 33.85844799912638], [-118.08211800000022, 33.85845399912641], [-118.08209400000015, 33.85621899912645], [-118.08669000000025, 33.856314999126376], [-118.08670300000011, 33.858422999126404], [-118.08639700000015, 33.8599889991264], [-118.09031300000014, 33.86010799912639], [-118.09039800000015, 33.8613169991264], [-118.09090100000012, 33.861312999126305], [-118.09101000000025, 33.87453199912623], [-118.09128700000018, 33.876414999126204], [-118.091167, 33.876648999126196], [-118.0877170000002, 33.87675199912617], [-118.08770700000014, 33.88033899912615], [-118.07489500000011, 33.88038299912613]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Artesia", "population": 0.16794625719769674, "cases": 14.0, "resource_uri": "/1.0/boundary/artesia-la-county-neighborhood-current/", "external_id": "artesia", "slug": "artesia-la-county-neighborhood-current", "metadata": {"sqmi": 1.63220417689, "type": "standalone-city", "name": "Artesia", "slug": "artesia"}}}, {"geometry": {"type": "Polygon", "coordinates": [[[-118.29152497210494, 33.93096200565596], [-118.29160698235776, 33.91642200621436], [-118.31391298047903, 33.91645200007503], [-118.31398199285357, 33.91836100381049], [-118.31520998502528, 33.91843399843815], [-118.31648398731515, 33.91765600546545], [-118.31778797898059, 33.91752000315647], [-118.31776897986255, 33.92160600576327], [-118.31339099241845, 33.9234099992319], [-118.31339198594485, 33.93091114492958], [-118.31775297908976, 33.93090100164798], [-118.31771998251318, 33.94546299957149], [-118.3133719831622, 33.94546000472399], [-118.31338698955169, 33.93821400014257], [-118.30902499719825, 33.938210004721995], [-118.30901497491621, 33.94183300014395], [-118.30519099550496, 33.94184500291158], [-118.3051799749089, 33.94546700018521], [-118.30245399536287, 33.9454740034614], [-118.30244797491154, 33.94999300010937], [-118.30026199536103, 33.949999003468804], [-118.30026697479626, 33.95948100133601], [-118.29247298987285, 33.95951400322592], [-118.29159598256967, 33.959495004635755], [-118.29152497210494, 33.93096200565596]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Athens-Westmont", "population": 0.42441218911807144, "cases": 100.0, "resource_uri": "/1.0/boundary/athens-la-county-neighborhood-current/", "external_id": "athens-westmont", "slug": "athens-westmont-la-county-neighborhood-current", "metadata": {"sqmi": 1.33275332251, "type": "unincorporated-area", "name": "Athens-Westmont", "slug": "athens-westmont"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.27832473089676, 34.15300714529624], [-118.277068, 34.15325599912271], [-118.275613, 34.1532609991228], [-118.263206, 34.129167999123055], [-118.262, 34.12712899912304], [-118.260356, 34.124826999123094], [-118.258424, 34.12258499912305], [-118.25617, 34.12040799912307], [-118.254258, 34.118760999123246], [-118.25414859778775, 34.118850727904785], [-118.24780700000017, 34.11310899912321], [-118.246007, 34.112108999123265], [-118.248207, 34.11040899912321], [-118.24910700000017, 34.10860899912322], [-118.256407, 34.1085089991233], [-118.25880800000016, 34.109008999123176], [-118.261208, 34.11010899912324], [-118.262172, 34.11088899912317], [-118.263208, 34.11140899912329], [-118.265708, 34.11390899912315], [-118.2705080000001, 34.121507999123104], [-118.273308, 34.128907999122994], [-118.275708, 34.13710699912297], [-118.2764080000001, 34.14090699912273], [-118.27770900000013, 34.14540699912274], [-118.27873995932471, 34.15362371439506], [-118.278512, 34.15346999912281], [-118.27832473089676, 34.15300714529624]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Atwater Village", "population": 0.1466619734835152, "cases": 25.0, "resource_uri": "/1.0/boundary/atwater-village-la-county-neighborhood-current/", "external_id": "atwater-village", "slug": "atwater-village-la-county-neighborhood-current", "metadata": {"sqmi": 1.77689394489, "type": "segment-of-a-city", "name": "Atwater Village", "slug": "atwater-village"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.33043099518983, 33.354872974127886], [-118.32991997402621, 33.3543019751893], [-118.3300139918188, 33.353905017021916], [-118.32968700772204, 33.35358497771999], [-118.32964202439089, 33.35328498362191], [-118.32833598203858, 33.35229798094199], [-118.32828100241179, 33.35152300495716], [-118.32844599390452, 33.350917018983374], [-118.32757400123818, 33.349504016266096], [-118.32669001301709, 33.348941014364264], [-118.3253529821479, 33.3488110099068], [-118.32409697388672, 33.34827399837399], [-118.32377398830822, 33.34799299723788], [-118.32388899832206, 33.34792602205605], [-118.32460199727292, 33.348310984668515], [-118.32632499038414, 33.34811100614037], [-118.3268620019169, 33.34779801685765], [-118.32723902010487, 33.34684200269465], [-118.32723202269787, 33.34599899928637], [-118.32684700747332, 33.34507902440036], [-118.32627900742344, 33.344273007286375], [-118.32556001069501, 33.34360899018486], [-118.32398301611462, 33.342746993814494], [-118.32374299979125, 33.34277898196102], [-118.32283402083058, 33.343505975726075], [-118.32190099814784, 33.34388799206179], [-118.32186301222386, 33.34419398393744], [-118.32207098778858, 33.344663020658786], [-118.32186301222386, 33.34482101474453], [-118.32000801539596, 33.342498980454586], [-118.31860800786322, 33.3422700126685], [-118.31750999368775, 33.343044988653546], [-118.31714302440778, 33.342955021991266], [-118.31491800679899, 33.34069001919944], [-118.31314298033763, 33.33807298895914], [-118.3124299813866, 33.337408024840165], [-118.31065000938933, 33.336247981018616], [-118.30976002339061, 33.33343602301027], [-118.30878701552476, 33.33240198512795], [-118.30831997806266, 33.33110999020187], [-118.30761346955124, 33.33029922693018], [-118.3110860000002, 33.33034299913309], [-118.31397600000011, 33.32925399913315], [-118.31693800000014, 33.32772799913307], [-118.318311, 33.33059899913321], [-118.31828400000019, 33.33901099913299], [-118.32698800000013, 33.33032599913318], [-118.32709300000016, 33.31793199913343], [-118.3470510000002, 33.31868299913327], [-118.34687300000016, 33.32127399913316], [-118.34249500000017, 33.34034099913296], [-118.33928000000013, 33.34379799913297], [-118.33572200000012, 33.347315999132874], [-118.33108400000012, 33.3528599991329], [-118.33175300000016, 33.353608999132796], [-118.33257900000021, 33.3536369991328], [-118.33445800000013, 33.353367999132885], [-118.3346910000001, 33.35356699913278], [-118.3346640000001, 33.35392799913282], [-118.335263, 33.35394799913282], [-118.33543300000017, 33.35415199913268], [-118.33539600000033, 33.35529899913281], [-118.33502800000016, 33.35543499913274], [-118.3350640000002, 33.35500499913293], [-118.33417000000013, 33.354880999132796], [-118.3342530000001, 33.355472999132836], [-118.3333190000001, 33.35550199913278], [-118.33325900000014, 33.354896999132755], [-118.33209800000022, 33.3548089991328], [-118.33197900000022, 33.35569399913288], [-118.3314220000002, 33.35597699913274], [-118.33087100000019, 33.355701999132755], [-118.33089300000015, 33.355495999132756], [-118.33063258886256, 33.355493267547416], [-118.33043099518983, 33.354872974127886]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Avalon", "population": 0, "cases": 0.0, "resource_uri": "/1.0/boundary/avalon-la-county-neighborhood-current/", "external_id": "avalon", "slug": "avalon-la-county-neighborhood-current", "metadata": {"sqmi": 2.74469670567, "type": "standalone-city", "name": "Avalon", "slug": "avalon"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.96586897162146, 34.02597400570324], [-117.96596297947958, 34.02587601284918], [-117.96656997162205, 34.02642800570396], [-117.9649879872773, 34.02785699632573], [-117.96446997161901, 34.027449005704725], [-117.96586897162146, 34.02597400570324]]], [[[-118.00251597166293, 34.0533340057473], [-118.00224799071871, 34.05317200538983], [-118.00170298218944, 34.05378599853451], [-118.00036797166014, 34.05286200574619], [-118.0004529716603, 34.052574005745775], [-117.99941298722806, 34.05179800454573], [-117.99910798287382, 34.05199999983571], [-117.9921879716507, 34.047148005736936], [-117.99292098586503, 34.04612800989465], [-117.99342598141287, 34.04645199959851], [-117.99350897165277, 34.046369005736075], [-117.99311197165231, 34.04604500573569], [-117.99442498628575, 34.04438799967406], [-117.99316298537279, 34.04417900517633], [-117.99360497165388, 34.043605005732616], [-117.99328698495772, 34.04340300078726], [-117.99384398669628, 34.04310800406908], [-117.99300798858289, 34.04255201280275], [-117.99287797165304, 34.04303800573186], [-117.99271397682163, 34.042682016951076], [-117.99180297165131, 34.04374600573231], [-117.99273497165241, 34.0442870057333], [-117.99093698272372, 34.04629299973175], [-117.99002498833545, 34.04566999716919], [-117.9908429716496, 34.04476700573342], [-117.99051198684705, 34.04462000422618], [-117.99019198480218, 34.044802000631286], [-117.99003498611366, 34.043559003229184], [-117.98830498309547, 34.044504000012985], [-117.9851399716425, 34.04236200572914], [-117.98526597164292, 34.04213600572872], [-117.98405197164143, 34.041299005727325], [-117.98608698440327, 34.03896701003542], [-117.98656298190717, 34.03934499932285], [-117.98729797164691, 34.03864100572467], [-117.98590798544805, 34.03768501287095], [-117.9857619814745, 34.038029997597164], [-117.9852939838097, 34.03790000628786], [-117.98370398492462, 34.039504002227204], [-117.98309298262991, 34.03992699974632], [-117.98215999018599, 34.03932100526017], [-117.98176398155347, 34.039712999489296], [-117.98020397163702, 34.038635005723066], [-117.98069497163785, 34.03798300572233], [-117.9803669716375, 34.03770800572185], [-117.97958499036375, 34.03721100531134], [-117.97900698140191, 34.03780999940018], [-117.97383897162959, 34.034277005715836], [-117.9743459716304, 34.033758005715285], [-117.97375699050849, 34.033333005806156], [-117.97327498093978, 34.033897999245475], [-117.97185897162721, 34.032920005713606], [-117.97229897162829, 34.032266005713005], [-117.97178399036015, 34.03194500525211], [-117.97124498143941, 34.03249699940836], [-117.96590697162057, 34.02857800570656], [-117.96743197844708, 34.02721901209559], [-117.96903698209806, 34.02872199893779], [-117.9706039841572, 34.027171009083105], [-117.97761097163553, 34.03199400571374], [-117.97593297163276, 34.033667005715614], [-117.97741497163432, 34.035041005717744], [-117.97651797163269, 34.03591200571867], [-117.97843798138686, 34.037101999676345], [-117.98114898420067, 34.03439700915681], [-117.98396198127973, 34.03634099935116], [-117.98675397164781, 34.03334100571773], [-117.98403897164468, 34.03147600571466], [-117.98697598570892, 34.028623004124476], [-117.99045398142619, 34.030981999432875], [-117.99156597165562, 34.029840005714256], [-117.99069797165465, 34.029310005713505], [-117.99010697165404, 34.02871600571248], [-117.99535898433449, 34.028777997737066], [-117.9956249813516, 34.028580007566404], [-118.00202797166963, 34.031194005718454], [-118.00310298611431, 34.0315320025907], [-118.00530298599632, 34.03185800192839], [-118.00816898584496, 34.031714002304014], [-118.02587097863884, 34.02994400263659], [-118.0259089717024, 34.03245100572572], [-118.02679997170334, 34.03344000572721], [-118.02736398419013, 34.03373600014084], [-118.03095898603914, 34.030892002264174], [-118.0329719804131, 34.029621006855365], [-118.03502097171545, 34.03142600572652], [-118.03531797171571, 34.031520005726776], [-118.03510797171504, 34.03289000572845], [-118.03599998397983, 34.03206800869793], [-118.03778297171864, 34.033226005729524], [-118.03805298198338, 34.03431900503453], [-118.02783900000033, 34.038746999124164], [-118.03156000000021, 34.04198799912413], [-118.03002500000025, 34.043282999124145], [-118.03030800000022, 34.04356999912412], [-118.02877900000028, 34.04479799912416], [-118.02847800000023, 34.04454399912416], [-118.02799900000022, 34.04490999912409], [-118.02575700000024, 34.04309499912417], [-118.02466900000032, 34.044002999124174], [-118.02179100000033, 34.041392999124206], [-118.02068500000028, 34.04188299912416], [-118.02031698533641, 34.04076200124861], [-118.02549698629494, 34.03855800350864], [-118.02309397169692, 34.03713900573108], [-118.02082398679077, 34.03582900414445], [-118.0185829848373, 34.03705999941408], [-118.01778098590935, 34.037100003722394], [-118.01727898615154, 34.036639999940036], [-118.01641998635581, 34.03653400649724], [-118.01549899169386, 34.03700999839952], [-118.0151479865852, 34.038675003922705], [-118.00809898498004, 34.042310000802196], [-118.00779898593197, 34.044210003280774], [-118.00854097861317, 34.044127002808175], [-118.00941097167542, 34.04485400573809], [-118.008724971674, 34.046069005739284], [-118.00991497167473, 34.04851300574295], [-118.00832597167161, 34.05130000574607], [-118.00666497557282, 34.05588599479476], [-118.00251597166293, 34.0533340057473]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Avocado Heights", "population": 0.21592153383213783, "cases": 42.0, "resource_uri": "/1.0/boundary/avocado-heights-la-county-neighborhood-current/", "external_id": "avocado-heights", "slug": "avocado-heights-la-county-neighborhood-current", "metadata": {"sqmi": 2.94845892743, "type": "unincorporated-area", "name": "Avocado Heights", "slug": "avocado-heights"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.89508600000019, 34.16509599912266], [-117.889846, 34.16512099912265], [-117.88969200000018, 34.14682399912284], [-117.89003700000025, 34.13268999912309], [-117.88703700000025, 34.13263199912301], [-117.886709, 34.13116299912308], [-117.88598400000028, 34.13100099912308], [-117.88590800000016, 34.13003899912301], [-117.881345, 34.13009499912297], [-117.88136699040597, 34.127062002210145], [-117.88573097152019, 34.127063000081215], [-117.8857379857482, 34.125093004096776], [-117.88969497853888, 34.125087000701804], [-117.88968198583522, 34.12470100344173], [-117.89011597140308, 34.124659002873194], [-117.89009597145585, 34.12423300258651], [-117.88985498575457, 34.124235004081015], [-117.88985098577605, 34.12438200007377], [-117.8891989857579, 34.12438900406366], [-117.8892139858174, 34.12411800368733], [-117.89012097857358, 34.1240610013879], [-117.89014097880188, 34.12191100099788], [-117.88989198561559, 34.12189600455997], [-117.88985397869644, 34.12164500131513], [-117.88938298568546, 34.12163100434807], [-117.88933997861201, 34.121403001630306], [-117.88453898576601, 34.12144800400652], [-117.88467997147703, 34.1187800058044], [-117.88436897147702, 34.11769700580284], [-117.88438298579534, 34.114367003836136], [-117.88479897136477, 34.114350001670886], [-117.88480198455704, 34.11313800051419], [-117.88830998621938, 34.11146300559123], [-117.89023498580694, 34.11152700055656], [-117.89020898579155, 34.1136320038876], [-117.89071198569559, 34.11361500103465], [-117.89079098571766, 34.11413900423472], [-117.89113198576982, 34.114144000688356], [-117.89112398574048, 34.11468500035097], [-117.89019898579471, 34.11471900386725], [-117.89016298528847, 34.119628005231085], [-117.89123197148581, 34.11984000580727], [-117.89233398666032, 34.12054400180265], [-117.89462598638639, 34.12089100137685], [-117.89938897127028, 34.12099400175531], [-117.89942497149866, 34.115376005803405], [-117.89889897149864, 34.11330800580068], [-117.89894997850917, 34.10822900343195], [-117.89670798592563, 34.10860400326914], [-117.89023497148752, 34.11057400579506], [-117.89024297146236, 34.10842100257279], [-117.8868889857551, 34.1084480040658], [-117.88687798103985, 34.106766000403795], [-117.90599000000017, 34.106733999123385], [-117.903529, 34.10808399912335], [-117.90059400000021, 34.108217999123326], [-117.90059400000021, 34.10889899912334], [-117.89963100000028, 34.10889799912335], [-117.89949500000012, 34.11390699912318], [-117.899847, 34.1139009991233], [-117.89983159773665, 34.1141955674118], [-117.90159800000016, 34.11420199912332], [-117.90153700000018, 34.11073299912329], [-117.90339900000022, 34.11066699912331], [-117.90331600000019, 34.113499999123185], [-117.90371200000013, 34.11352999912331], [-117.90370800000017, 34.11422999912321], [-117.90542400000015, 34.11422799912322], [-117.90538500000015, 34.10776199912318], [-117.9075600000001, 34.107622999123286], [-117.907557, 34.10675099912338], [-117.9097149858919, 34.10684800246247], [-117.90979398570323, 34.110297004334775], [-117.91208998641427, 34.11040899940609], [-117.91209297151768, 34.111226005800944], [-117.9120959864062, 34.11314400383954], [-117.9111889859011, 34.11351400098339], [-117.90758098576599, 34.11348000408604], [-117.90757598558037, 34.114253004681274], [-117.91127598553399, 34.11426300016055], [-117.91222398528053, 34.1139440016758], [-117.91593798736055, 34.11202300471437], [-117.91602798572463, 34.11430100427779], [-117.91637597155905, 34.1143080003652], [-117.91645297851619, 34.1107920024343], [-117.91530098631505, 34.11087800471335], [-117.91419098567309, 34.11119900215239], [-117.9142039857155, 34.10821600430319], [-117.91654097875188, 34.10827100007273], [-117.91656098578416, 34.107086002557615], [-117.9180079857509, 34.10706400084796], [-117.91774497152676, 34.10753100579759], [-117.91691097152457, 34.11068700580149], [-117.9166789715233, 34.113540005805035], [-117.91679598577687, 34.11430400406761], [-117.92229697105482, 34.11430800098352], [-117.92224997180328, 34.11398100156753], [-117.92079198562456, 34.11388600459415], [-117.92096398576943, 34.11059800411385], [-117.9245989785914, 34.11057900052983], [-117.92456197860204, 34.1085630018636], [-117.92132098577581, 34.10859400408653], [-117.92133898576603, 34.10700700412918], [-117.9253629905264, 34.10696499949423], [-117.92530200000013, 34.1105729991233], [-117.92802700000021, 34.110446999123305], [-117.92811000000015, 34.10849299912331], [-117.92881200000014, 34.10850599912329], [-117.928569, 34.11432299912321], [-117.93839700000015, 34.11430799912317], [-117.93829500000014, 34.12164699912319], [-117.931395, 34.12166499912316], [-117.93135800000032, 34.120555999123155], [-117.92957200000022, 34.11958599912318], [-117.92776800000016, 34.119755999123186], [-117.92670700000022, 34.12084899912317], [-117.92672600000019, 34.122002999123126], [-117.92890200000016, 34.12583499912313], [-117.9293820000002, 34.12635599912304], [-117.92953500000017, 34.12937599912309], [-117.92939800000015, 34.140126999122955], [-117.93399100000016, 34.140812999122886], [-117.93936300000023, 34.13593899912301], [-117.93926600000017, 34.135308999123005], [-117.9390140000002, 34.134896999123036], [-117.93949700000033, 34.13459799912303], [-117.943592, 34.13734999912297], [-117.94324800000012, 34.13769199912292], [-117.94286200000015, 34.13872699912286], [-117.939702, 34.14053999912298], [-117.93751400000019, 34.14298499912285], [-117.9324260000002, 34.14798099912286], [-117.93157700000026, 34.14912999912286], [-117.930023, 34.15053199912274], [-117.93067300000014, 34.1506929991227], [-117.93087300000015, 34.15107599912282], [-117.934101, 34.15344299912278], [-117.93399000000018, 34.15372899912274], [-117.93516000000021, 34.154326999122766], [-117.9350590000003, 34.15382299912284], [-117.93815100000033, 34.15203899912283], [-117.93824700000015, 34.153504999122724], [-117.94150800000014, 34.15350599912281], [-117.94174700000015, 34.16522799912267], [-117.92479600000019, 34.165505999122644], [-117.91446400000012, 34.16534999912262], [-117.90735200000015, 34.16503899912266], [-117.90729100000011, 34.168205999122655], [-117.899117, 34.16809899912275], [-117.89916000000015, 34.16510599912266], [-117.89508600000019, 34.16509599912266]], [[-117.89021698349949, 34.11270697782308], [-117.89021845734253, 34.112576059014366], [-117.88944300000017, 34.112588999123176], [-117.88943200000018, 34.11331999912324], [-117.89021008673177, 34.11331800699467], [-117.89021698349949, 34.11270697782308]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Azusa", "population": 0.6596345374532363, "cases": 87.0, "resource_uri": "/1.0/boundary/azusa-la-county-neighborhood-current/", "external_id": "azusa", "slug": "azusa-la-county-neighborhood-current", "metadata": {"sqmi": 9.8714355887, "type": "standalone-city", "name": "Azusa", "slug": "azusa"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.35626100000013, 34.0248359991243], [-118.355009, 34.02471099912427], [-118.35490900000012, 34.02491099912423], [-118.3521180000001, 34.02469199912432], [-118.342709, 34.023710999124305], [-118.33620900000015, 34.022711999124354], [-118.335109, 34.02271199912422], [-118.33500900000011, 34.00831199912448], [-118.33567141630907, 34.00802810642058], [-118.33568798231354, 34.00825800203967], [-118.33661698558493, 34.00787400208213], [-118.33822898634969, 34.00630100259989], [-118.33972398572234, 34.00565800218119], [-118.34104198642595, 34.004850002764854], [-118.34190298615596, 34.00457200277982], [-118.34624998592786, 34.00450500271104], [-118.3495549862482, 34.00497800201242], [-118.35120098584709, 34.00462600223201], [-118.35184598553964, 34.00423100229119], [-118.35407998623731, 34.00205000247107], [-118.35593598608553, 34.000621002442976], [-118.35646898608597, 33.9996770024423], [-118.35681798608651, 33.997961002441265], [-118.35716898665846, 33.99751500257107], [-118.35780498568282, 33.997145001764935], [-118.35819098608724, 33.99927000244224], [-118.35903298608748, 34.001020002443525], [-118.35912298608751, 34.00163100244381], [-118.35749198608546, 34.00724300244727], [-118.35754298269568, 34.00914500436614], [-118.35861498591085, 34.00905700130354], [-118.3614359768944, 34.00833200489529], [-118.36144798608805, 34.007690002447895], [-118.36198197493405, 34.007483004918704], [-118.36206098608872, 34.006952002447626], [-118.36265599492434, 34.00631599923097], [-118.36502698221526, 34.00555500519087], [-118.36622998609162, 34.00635200244764], [-118.36684299051298, 34.00707600371883], [-118.36717298965301, 34.00708799994492], [-118.36671898321352, 34.01562200503545], [-118.37264897701603, 34.01583900084288], [-118.37285799549115, 34.011921003115674], [-118.37309299594295, 34.011913002729266], [-118.373926, 34.013866999124446], [-118.37407000000012, 34.015133999124416], [-118.373736, 34.01637599912447], [-118.372627, 34.01847099912439], [-118.372813, 34.01836299912441], [-118.37589100000011, 34.01851999912437], [-118.375832, 34.01804999912445], [-118.377973, 34.01801799912436], [-118.37921200000012, 34.01956799912443], [-118.380483, 34.020835999124316], [-118.378335, 34.02118099912438], [-118.37875, 34.0220469991244], [-118.376697, 34.02398799912436], [-118.376369, 34.025848999124314], [-118.376693, 34.026036999124294], [-118.37654816091967, 34.026795539354126], [-118.35626100000013, 34.0248359991243]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Baldwin Hills/Crenshaw", "population": 0.4495435464800018, "cases": 106.0, "resource_uri": "/1.0/boundary/baldwin-hillscrenshaw-la-county-neighborhood-current/", "external_id": "baldwin-hillscrenshaw", "slug": "baldwin-hillscrenshaw-la-county-neighborhood-current", "metadata": {"sqmi": 2.88370467344, "type": "segment-of-a-city", "name": "Baldwin Hills/Crenshaw", "slug": "baldwin-hillscrenshaw"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.94295300000017, 34.1070639991234], [-117.94298000000019, 34.0997489991235], [-117.95459800000019, 34.09961899912344], [-117.95459700000016, 34.096007999123515], [-117.95350900000014, 34.09589099912354], [-117.95354600000019, 34.092353999123546], [-117.95477800000012, 34.09234299912355], [-117.95473500000013, 34.08904999912356], [-117.95229500000018, 34.09123199912354], [-117.950993, 34.091923999123516], [-117.94949100000015, 34.09233999912357], [-117.94879500000015, 34.09241999912351], [-117.94890700000013, 34.0892969991236], [-117.94500100000013, 34.0901779991236], [-117.94548700000013, 34.086630999123635], [-117.9441630000002, 34.08655799912357], [-117.94418, 34.0861149991237], [-117.944489, 34.08296299912359], [-117.945607, 34.08296299912359], [-117.94596700000011, 34.07929299912367], [-117.9482130000002, 34.07934399912366], [-117.954241, 34.07357899912377], [-117.95658000000032, 34.0753089991237], [-117.958122, 34.073877999123646], [-117.95574000000015, 34.072134999123776], [-117.95745600000032, 34.07034999912381], [-117.95819400000013, 34.070253999123736], [-117.95782300000022, 34.069973999123754], [-117.95991600000018, 34.06812299912384], [-117.960523, 34.068428999123824], [-117.96042600000018, 34.06853399912381], [-117.96120600000022, 34.069129999123724], [-117.96106100000017, 34.06937399912377], [-117.9612020000002, 34.0695619991238], [-117.96137100000016, 34.06939599912381], [-117.96220800000026, 34.069297999123805], [-117.963225, 34.068364999123744], [-117.96370200000021, 34.06855199912378], [-117.96392200000014, 34.068339999123765], [-117.9620320000002, 34.06695799912384], [-117.96130200000016, 34.06669299912384], [-117.96221200000019, 34.06536699912383], [-117.96470800000021, 34.065774999123846], [-117.96713800000016, 34.063457999123784], [-117.96622398528982, 34.0627849974329], [-117.96712399019049, 34.06182000567302], [-117.96918498179873, 34.063340999480246], [-117.96938398898794, 34.0631560056749], [-117.97041698663828, 34.063809004037346], [-117.96907397161253, 34.064870005754265], [-117.9697359816567, 34.06535099940913], [-117.97010696542523, 34.06498503399117], [-117.96996897161353, 34.0655220057554], [-117.97066097592683, 34.066028982383756], [-117.9707410000002, 34.0654319991238], [-117.97292398994098, 34.06338100550757], [-117.97561698615077, 34.06377800156824], [-117.97619998873459, 34.06359600527532], [-117.97670098155953, 34.06388499998655], [-117.97786998922624, 34.0628380056428], [-117.97851098545136, 34.06326900150109], [-117.97953798618062, 34.062873005012904], [-117.98117598572236, 34.06286800049174], [-117.98182698599258, 34.06268500378895], [-117.985106, 34.06239999912394], [-117.98524500000028, 34.06272399912387], [-117.98596200000019, 34.06326699912387], [-117.98653700000015, 34.062657999123964], [-117.98816700000019, 34.06260899912386], [-117.988098, 34.06288099912392], [-117.989507, 34.06292799912383], [-117.98977200000012, 34.062596999123755], [-117.99005400000016, 34.062806999123886], [-117.99037500000016, 34.06224099912392], [-117.9907980000002, 34.062530999123965], [-118.00032200000022, 34.06148499912391], [-118.000696, 34.06124899912386], [-118.00161200000014, 34.058913999123874], [-118.00363500000024, 34.055154999123985], [-118.00742800000022, 34.057790999123995], [-118.00615900000015, 34.06150599912391], [-118.00576000000015, 34.06158499912389], [-118.00464200000013, 34.064376999123844], [-118.0046320000002, 34.06498899912382], [-118.00489900000018, 34.065160999123925], [-118.00176500000013, 34.07417099912369], [-118.00117500000017, 34.07693599912375], [-117.9983540000001, 34.07745599912367], [-117.98279600000014, 34.08108299912359], [-117.982902, 34.09201499912345], [-117.984404, 34.092007999123545], [-117.98441900000014, 34.092205999123514], [-117.98407300000021, 34.09912299912341], [-117.97799200000023, 34.099377999123405], [-117.97792500000017, 34.105384999123295], [-117.97756200000013, 34.10671899912338], [-117.97630300000012, 34.1065569991234], [-117.97264, 34.10660599912335], [-117.96103800000013, 34.10696299912327], [-117.95372000000023, 34.106956999123334], [-117.95373900000028, 34.10677099912333], [-117.95287600000016, 34.10671199912331], [-117.95210100000014, 34.10677499912329], [-117.95210700000014, 34.10697299912337], [-117.94828700000015, 34.107011999123394], [-117.94826300000015, 34.10674199912334], [-117.947921, 34.10668999912334], [-117.94720400000017, 34.10677099912333], [-117.9471420000003, 34.107023999123285], [-117.94295300000017, 34.1070639991234]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Baldwin Park", "population": 0.7677023121387283, "cases": 85.0, "resource_uri": "/1.0/boundary/baldwin-park-la-county-neighborhood-current/", "external_id": "baldwin-park", "slug": "baldwin-park-la-county-neighborhood-current", "metadata": {"sqmi": 6.77801613616, "type": "standalone-city", "name": "Baldwin Park", "slug": "baldwin-park"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.469015, 34.12950599912302], [-118.467415, 34.12920599912294], [-118.46641400000011, 34.129705999123], [-118.465514, 34.12990599912287], [-118.464114, 34.12980599912294], [-118.463114, 34.13080599912306], [-118.459614, 34.13040599912301], [-118.458514, 34.1293059991229], [-118.458414, 34.12740599912311], [-118.459414, 34.12670599912297], [-118.45841400000013, 34.125905999123084], [-118.457614, 34.12620599912294], [-118.45711400000013, 34.12590699912301], [-118.45561400000011, 34.12430699912305], [-118.455814, 34.11910699912304], [-118.455514, 34.11840699912314], [-118.455634, 34.118006999123175], [-118.45531400000014, 34.11800699912312], [-118.456714, 34.11580699912312], [-118.456114, 34.11420699912311], [-118.4570140000001, 34.113806999123206], [-118.456014, 34.11280699912317], [-118.457314, 34.111306999123144], [-118.45581400000016, 34.11020699912312], [-118.45521400000013, 34.10950699912325], [-118.456814, 34.10920699912326], [-118.45521400000013, 34.10770699912313], [-118.45261400000012, 34.10480699912331], [-118.451014, 34.106006999123174], [-118.449413, 34.10330699912332], [-118.449713, 34.102706999123235], [-118.449013, 34.10250699912321], [-118.447713, 34.10170699912329], [-118.447013, 34.100906999123346], [-118.44691300000011, 34.100406999123386], [-118.44701300000017, 34.09970699912333], [-118.446113, 34.09950699912327], [-118.443913, 34.09860799912334], [-118.44401300000011, 34.09930699912333], [-118.443613, 34.099706999123356], [-118.442313, 34.09840799912337], [-118.4411130000001, 34.096807999123406], [-118.440713, 34.09430799912329], [-118.440013, 34.0937079991234], [-118.438713, 34.0918079991234], [-118.438213, 34.09020799912341], [-118.4365130000001, 34.0881079991234], [-118.43541300000012, 34.08530799912362], [-118.43481300000015, 34.082407999123454], [-118.43531300000014, 34.080607999123615], [-118.4378130000001, 34.07940799912361], [-118.440513, 34.077607999123586], [-118.44281300000013, 34.07750799912367], [-118.444013, 34.07700799912366], [-118.444513, 34.076607999123546], [-118.44531300000011, 34.07370799912366], [-118.44881300000011, 34.07350799912363], [-118.45011300000012, 34.07510799912376], [-118.45391300000013, 34.076907999123584], [-118.454913, 34.076507999123535], [-118.457535, 34.07432899912359], [-118.459142, 34.074453999123776], [-118.461113, 34.073207999123724], [-118.46241200000011, 34.07329599912366], [-118.463376, 34.07401599912372], [-118.464019, 34.07417299912364], [-118.465995, 34.07322299912365], [-118.46832500000014, 34.07607599912354], [-118.468977, 34.077366999123626], [-118.469885, 34.07803099912362], [-118.47238800000012, 34.08068899912367], [-118.47456, 34.08385799912344], [-118.47513600000012, 34.08609199912342], [-118.475826, 34.092393999123495], [-118.475596, 34.095743999123385], [-118.475945, 34.09636699912333], [-118.47730100000014, 34.0966799991235], [-118.477906, 34.09890299912347], [-118.47785200000013, 34.100127999123366], [-118.47716600000011, 34.102919999123365], [-118.47720100000012, 34.10400799912322], [-118.47764900000014, 34.10503999912328], [-118.48200500000014, 34.110963999123186], [-118.482018, 34.11783699912312], [-118.48157000000012, 34.11864099912314], [-118.477815, 34.12330599912307], [-118.476115, 34.126005999122974], [-118.474815, 34.126305999122934], [-118.473215, 34.1293059991229], [-118.471615, 34.13090599912296], [-118.469015, 34.12950599912302]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Bel Air", "population": 0.08428911165296969, "cases": 28.0, "resource_uri": "/1.0/boundary/bel-air-la-county-neighborhood-current/", "external_id": "bel-air", "slug": "bel-air-la-county-neighborhood-current", "metadata": {"sqmi": 6.37332143094, "type": "segment-of-a-city", "name": "Bel Air", "slug": "bel-air"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.1385740000002, 33.90897099912573], [-118.13777500000015, 33.90901599912575], [-118.13519700000026, 33.909684999125695], [-118.13409000000016, 33.90976399912579], [-118.10935900000018, 33.90970999912575], [-118.10836400000011, 33.90663699912581], [-118.10819200000017, 33.90449599912583], [-118.10817400000013, 33.89558199912588], [-118.10835800000017, 33.89532899912593], [-118.10827000000015, 33.88707399912596], [-118.10856600000012, 33.887050999125925], [-118.1085470000002, 33.879842999126126], [-118.10676900000014, 33.872942999126245], [-118.10853900000012, 33.87290399912619], [-118.1084290000002, 33.8655869991264], [-118.114279, 33.865573999126326], [-118.11431000000015, 33.86923699912637], [-118.11720400000023, 33.86814199912629], [-118.12515200000014, 33.86817799912623], [-118.12902000000011, 33.86903699912624], [-118.151239, 33.8689699991262], [-118.15129400000018, 33.87971699912616], [-118.14996200000017, 33.87987799912619], [-118.146878, 33.879871999126095], [-118.14710400000024, 33.88200999912611], [-118.146901, 33.88641499912616], [-118.14697100000015, 33.889179999125965], [-118.14257400000025, 33.889196999125964], [-118.14290600000018, 33.90796099912578], [-118.14269400000032, 33.909771999125724], [-118.14240400000018, 33.91045299912579], [-118.13959300000019, 33.90915699912575], [-118.1385740000002, 33.90897099912573]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Bellflower", "population": 0.777342573064176, "cases": 129.0, "resource_uri": "/1.0/boundary/bellflower-la-county-neighborhood-current/", "external_id": "bellflower", "slug": "bellflower-la-county-neighborhood-current", "metadata": {"sqmi": 6.19531162394, "type": "standalone-city", "name": "Bellflower", "slug": "bellflower"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.14857, 33.973972999124946], [-118.13437600000012, 33.97239999912505], [-118.13256200000015, 33.97252099912495], [-118.13059500000016, 33.97318999912501], [-118.12942300000017, 33.97093399912495], [-118.13360200000011, 33.97111299912486], [-118.1366680000001, 33.96745299912506], [-118.13741200000014, 33.965836999125095], [-118.13947800000017, 33.963029999125055], [-118.1405890000003, 33.96263599912503], [-118.155064, 33.95474199912517], [-118.157647, 33.952884999125224], [-118.15849300000022, 33.9520359991252], [-118.16396000000017, 33.95335999912523], [-118.17044900000022, 33.954373999125075], [-118.17043800000019, 33.95568699912525], [-118.16934400000014, 33.963605999125086], [-118.16775600000013, 33.966443999124934], [-118.16656800000021, 33.96713999912507], [-118.16616500000019, 33.96778999912499], [-118.16528500000013, 33.96798499912493], [-118.16589000000018, 33.96816299912507], [-118.16711900000017, 33.969797999125085], [-118.16771200000012, 33.97204899912504], [-118.16783100000019, 33.97336599912501], [-118.16737300000011, 33.97650499912492], [-118.167315, 33.979335999124835], [-118.14973200000013, 33.9774839991249], [-118.14961200000013, 33.97664599912495], [-118.15027100000015, 33.974151999124906], [-118.14857, 33.973972999124946]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Bell Gardens", "population": 0.43071004432549975, "cases": 103.0, "resource_uri": "/1.0/boundary/bell-gardens-la-county-neighborhood-current/", "external_id": "bell-gardens", "slug": "bell-gardens-la-county-neighborhood-current", "metadata": {"sqmi": 2.48028549043, "type": "standalone-city", "name": "Bell Gardens", "slug": "bell-gardens"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.165504, 33.998112999124665], [-118.16044100000029, 33.99537799912475], [-118.15208900000023, 33.99198599912478], [-118.15268000000029, 33.99065099912463], [-118.15445300000012, 33.99121299912477], [-118.155353, 33.99133299912472], [-118.159241, 33.99129699912484], [-118.16014300000012, 33.991538999124735], [-118.16108700000014, 33.99201799912472], [-118.1618050000001, 33.98735999912476], [-118.1634410000001, 33.98726999912477], [-118.16476000000019, 33.98767299912485], [-118.17047100000012, 33.98788899912475], [-118.16947100000029, 33.98642599912479], [-118.16871600000016, 33.98494199912487], [-118.16774700000016, 33.98209899912481], [-118.167441, 33.98058499912488], [-118.16732400000018, 33.977084999124955], [-118.16784000000018, 33.973013999124994], [-118.167295, 33.97019299912508], [-118.16589000000018, 33.96816299912507], [-118.16528500000013, 33.96798499912493], [-118.16616500000019, 33.96778999912499], [-118.16656800000021, 33.96713999912507], [-118.16775600000013, 33.966443999124934], [-118.1693080000003, 33.963698999125135], [-118.170853, 33.96410999912504], [-118.1703190000002, 33.964604999125044], [-118.17010500000022, 33.966215999124984], [-118.171116, 33.96633099912505], [-118.1709620000002, 33.96727999912497], [-118.1711210000002, 33.967280999124995], [-118.171076, 33.967533999125045], [-118.171491, 33.96761599912505], [-118.17168500000014, 33.96628699912503], [-118.17322200000011, 33.9664389991251], [-118.173003, 33.967713999125095], [-118.17509100000015, 33.96801299912498], [-118.17528600000023, 33.967511999125016], [-118.17698900000016, 33.967700999125086], [-118.17698000000016, 33.96798099912502], [-118.177794, 33.968097999124936], [-118.17773900000016, 33.96838299912507], [-118.18574300000016, 33.9690789991249], [-118.18563800000017, 33.97005199912493], [-118.18800900000014, 33.970303999125015], [-118.1878400000002, 33.96950599912507], [-118.19021500000015, 33.96938999912511], [-118.19016000000013, 33.96895399912503], [-118.190608, 33.968952999125044], [-118.19065100000012, 33.968272999125], [-118.19192600000012, 33.96840899912511], [-118.1918440000001, 33.96908499912505], [-118.19196500000018, 33.969103999125], [-118.19206300000018, 33.968423999125065], [-118.1921960000002, 33.96843799912501], [-118.19210400000031, 33.96931399912497], [-118.194031, 33.969418999125075], [-118.19397900000017, 33.969782999125066], [-118.19434700000018, 33.96982199912502], [-118.194261, 33.970399999125064], [-118.19443900000016, 33.970463999125016], [-118.19984200000017, 33.97120599912505], [-118.19979300000016, 33.97156599912492], [-118.20276300000017, 33.97187099912492], [-118.20350800000011, 33.97394699912489], [-118.20391100000023, 33.9759189991249], [-118.2061660000002, 33.976240999124876], [-118.20624300000014, 33.97963799912487], [-118.20428500000018, 33.979504999124906], [-118.20429, 33.97987699912491], [-118.20233700000023, 33.9796609991248], [-118.20254400000017, 33.980037999124825], [-118.20258100000014, 33.98256899912484], [-118.19753600000014, 33.98206399912484], [-118.1974110000002, 33.98265399912484], [-118.17003500000013, 33.98000799912491], [-118.16994500000013, 33.98023799912481], [-118.17085000000014, 33.98385199912482], [-118.17219800000014, 33.98627299912471], [-118.17257900000021, 33.986436999124805], [-118.17362800000014, 33.98788699912474], [-118.17495300000016, 33.98926499912485], [-118.17698600000016, 33.99085699912471], [-118.175433, 33.9927099991246], [-118.17805100000017, 33.995516999124625], [-118.17765000000021, 33.99574499912472], [-118.17746700000018, 33.995409999124696], [-118.17627500000012, 33.99590599912472], [-118.17676100000018, 33.99720499912472], [-118.17653500000016, 33.997831999124706], [-118.17545500000016, 33.99834699912466], [-118.16833, 33.99602499912466], [-118.16715600000022, 33.99862299912464], [-118.165504, 33.998112999124665]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Bell", "population": 0.3633217993079585, "cases": 126.0, "resource_uri": "/1.0/boundary/bell-la-county-neighborhood-current/", "external_id": "bell", "slug": "bell-la-county-neighborhood-current", "metadata": {"sqmi": 2.55402884183, "type": "standalone-city", "name": "Bell", "slug": "bell"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.45321400000012, 34.13180599912284], [-118.45121400000014, 34.131505999122986], [-118.4498140000001, 34.13190599912297], [-118.44811400000012, 34.130705999122924], [-118.443414, 34.130005999123064], [-118.44251400000017, 34.13050599912295], [-118.442014, 34.131005999123], [-118.44061400000017, 34.13150599912293], [-118.439314, 34.13110599912288], [-118.438414, 34.13150599912304], [-118.43541400000014, 34.130406999123096], [-118.4339130000001, 34.13070699912293], [-118.432713, 34.13170699912294], [-118.43111300000012, 34.132006999122936], [-118.42641300000011, 34.131006999123045], [-118.424313, 34.13020699912291], [-118.423713, 34.13030699912297], [-118.423213, 34.13020699912299], [-118.422413, 34.12970699912293], [-118.42121300000011, 34.129606999122984], [-118.42081300000011, 34.12850699912306], [-118.41961300000015, 34.12770699912296], [-118.41841300000014, 34.12700699912298], [-118.417213, 34.12720699912302], [-118.4156130000001, 34.12620699912292], [-118.414013, 34.12800699912292], [-118.414213, 34.12900699912305], [-118.41321300000016, 34.12880699912298], [-118.412013, 34.1294069991229], [-118.40911300000013, 34.1294069991229], [-118.406913, 34.12890699912307], [-118.40611300000015, 34.12740699912298], [-118.403912, 34.127906999123056], [-118.40351200000012, 34.12720699912302], [-118.4030120000001, 34.125206999122994], [-118.398912, 34.122306999123076], [-118.3982120000001, 34.12070699912301], [-118.398112, 34.11960699912314], [-118.397412, 34.1191069991231], [-118.395112, 34.11960699912314], [-118.394412, 34.11990699912323], [-118.39351200000013, 34.12000699912309], [-118.39141200000014, 34.122006999123165], [-118.38761200000013, 34.12340699912316], [-118.386912, 34.12180699912304], [-118.388712, 34.12090699912319], [-118.390012, 34.121106999123114], [-118.392112, 34.120406999123105], [-118.39091200000014, 34.11990699912309], [-118.390912, 34.11920699912309], [-118.388812, 34.11870699912312], [-118.39031200000016, 34.118306999123234], [-118.3906120000001, 34.11760699912322], [-118.3906120000001, 34.11710699912318], [-118.391712, 34.11700699912314], [-118.391012, 34.115206999123146], [-118.391651, 34.11419499912319], [-118.392096, 34.11448699912313], [-118.39192000000011, 34.11421499912314], [-118.39157958912189, 34.1124259760246], [-118.395856, 34.11241399912317], [-118.396006, 34.11120299912339], [-118.396365, 34.111615999123224], [-118.397202, 34.11161899912329], [-118.399203, 34.11148699912335], [-118.400073, 34.11093499912331], [-118.398655, 34.108609999123296], [-118.401038, 34.10873299912325], [-118.400888, 34.09399399912349], [-118.401399, 34.09383999912344], [-118.401677, 34.09420499912348], [-118.402064, 34.09379099912339], [-118.402419, 34.09366699912339], [-118.40532, 34.09629999912352], [-118.405144, 34.097155999123395], [-118.40529900000011, 34.097998999123426], [-118.40541, 34.101460999123354], [-118.40826, 34.10150199912341], [-118.408171, 34.10128999912336], [-118.408723, 34.10065999912341], [-118.408606, 34.1004579991234], [-118.409058, 34.100155999123395], [-118.409005, 34.09900099912345], [-118.408785, 34.09845199912338], [-118.409067, 34.0975539991234], [-118.408641, 34.09714699912344], [-118.408892, 34.09711899912351], [-118.409054, 34.09656999912338], [-118.40949400000011, 34.09614999912339], [-118.40919, 34.095537999123465], [-118.40944, 34.094858999123446], [-118.411471, 34.093495999123526], [-118.411883, 34.09224399912341], [-118.411969, 34.09247899912348], [-118.412609, 34.0929169991234], [-118.41393400000011, 34.09426799912353], [-118.42274, 34.09431499912344], [-118.42268900000012, 34.09056099912354], [-118.423318, 34.090534999123456], [-118.424032, 34.09011099912351], [-118.42455300000016, 34.09032199912355], [-118.42450000000011, 34.09063799912348], [-118.427041, 34.090630999123505], [-118.426962, 34.083043999123625], [-118.422778, 34.08309299912365], [-118.422647, 34.080008999123606], [-118.4232312833546, 34.079927282478124], [-118.425812, 34.08080799912359], [-118.42771200000011, 34.080607999123565], [-118.42901200000011, 34.07910799912349], [-118.429912, 34.07930799912365], [-118.431812, 34.08220799912358], [-118.434213, 34.082707999123656], [-118.43481300000015, 34.082407999123454], [-118.43541300000012, 34.08530799912362], [-118.4365130000001, 34.0881079991234], [-118.438213, 34.09020799912341], [-118.438713, 34.0918079991234], [-118.440013, 34.0937079991234], [-118.440713, 34.09430799912329], [-118.4411130000001, 34.096807999123406], [-118.442313, 34.09840799912337], [-118.443613, 34.099706999123356], [-118.44401300000011, 34.09930699912333], [-118.443913, 34.09860799912334], [-118.446113, 34.09950699912327], [-118.44701300000017, 34.09970699912333], [-118.44691300000011, 34.100406999123386], [-118.447013, 34.100906999123346], [-118.447713, 34.10170699912329], [-118.449013, 34.10250699912321], [-118.449713, 34.102706999123235], [-118.449413, 34.10330699912332], [-118.451014, 34.106006999123174], [-118.45261400000012, 34.10480699912331], [-118.45521400000013, 34.10770699912313], [-118.456814, 34.10920699912326], [-118.45521400000013, 34.10950699912325], [-118.45581400000016, 34.11020699912312], [-118.457314, 34.111306999123144], [-118.456014, 34.11280699912317], [-118.4570140000001, 34.113806999123206], [-118.456114, 34.11420699912311], [-118.456714, 34.11580699912312], [-118.45531400000014, 34.11800699912312], [-118.455634, 34.118006999123175], [-118.455514, 34.11840699912314], [-118.455814, 34.11910699912304], [-118.45561400000011, 34.12430699912305], [-118.45711400000013, 34.12590699912301], [-118.457614, 34.12620599912294], [-118.45841400000013, 34.125905999123084], [-118.459414, 34.12670599912297], [-118.458414, 34.12740599912311], [-118.458514, 34.1293059991229], [-118.459614, 34.13040599912301], [-118.455914, 34.13260599912286], [-118.454914, 34.132905999123004], [-118.45321400000012, 34.13180599912284]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Beverly Crest", "population": 0.12524952052917923, "cases": 32.0, "resource_uri": "/1.0/boundary/beverly-crest-la-county-neighborhood-current/", "external_id": "beverly-crest", "slug": "beverly-crest-la-county-neighborhood-current", "metadata": {"sqmi": 8.23609299869, "type": "segment-of-a-city", "name": "Beverly Crest", "slug": "beverly-crest"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.372486, 34.08575499912359], [-118.372485, 34.085437999123606], [-118.37023, 34.085608999123515], [-118.370233, 34.08708399912362], [-118.36643, 34.08713899912364], [-118.366443, 34.088923999123544], [-118.363269, 34.088970999123525], [-118.363267, 34.08877799912355], [-118.362712, 34.088786999123506], [-118.362701, 34.08719099912351], [-118.3617163861687, 34.08720063095923], [-118.361486, 34.07396099912366], [-118.36161000000014, 34.06580999912373], [-118.36151, 34.0630099991238], [-118.37223126490076, 34.06420125077948], [-118.37203, 34.06418199912384], [-118.373017, 34.06539499912382], [-118.375864, 34.07029899912369], [-118.375892, 34.06978399912366], [-118.37635400000016, 34.06978699912375], [-118.376317, 34.06933599912372], [-118.377375, 34.069323999123775], [-118.377403, 34.069708999123826], [-118.383728, 34.069683999123676], [-118.383764, 34.072121999123745], [-118.390704, 34.07208299912372], [-118.390718, 34.07650099912364], [-118.381694, 34.0763959991237], [-118.3816929999999, 34.0767109991237], [-118.380517, 34.07669399912379], [-118.379754, 34.07639099912363], [-118.377192, 34.07647899912375], [-118.37722, 34.07817299912363], [-118.377567, 34.07874199912361], [-118.377777, 34.078652999123676], [-118.377991, 34.078942999123704], [-118.3773020000002, 34.07922699912362], [-118.37689300000011, 34.07896599912369], [-118.377248, 34.080206999123625], [-118.37526400000013, 34.08015899912364], [-118.37525, 34.08201099912358], [-118.37420200000011, 34.08201899912357], [-118.374209, 34.0801609991236], [-118.370294, 34.08016899912358], [-118.37030200000011, 34.08315699912354], [-118.37703300000013, 34.08303999912355], [-118.376951, 34.088629999123555], [-118.376284, 34.08898899912352], [-118.37538300000011, 34.0891399991235], [-118.375186, 34.089417999123484], [-118.37475700000012, 34.089424999123494], [-118.37475700000012, 34.08969899912348], [-118.374328, 34.08970599912346], [-118.37413, 34.089956999123565], [-118.372498, 34.09025599912344], [-118.372486, 34.08575499912359]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Beverly Grove", "population": null, "cases": null, "resource_uri": "/1.0/boundary/beverly-grove-la-county-neighborhood-current/", "external_id": "beverly-grove", "slug": "beverly-grove-la-county-neighborhood-current", "metadata": {"sqmi": 1.64868313332, "type": "segment-of-a-city", "name": "Beverly Grove", "slug": "beverly-grove"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.3911400000002, 34.11242299912339], [-118.39057400000029, 34.10920299912332], [-118.3911970000002, 34.107485999123355], [-118.39175700000015, 34.10668199912335], [-118.392227, 34.106516999123336], [-118.39207900000015, 34.10635799912334], [-118.39208100000013, 34.09979399912348], [-118.394894, 34.096975999123394], [-118.39541200000018, 34.09617299912345], [-118.39650600000013, 34.0961819991235], [-118.396504, 34.09506599912343], [-118.396154, 34.09516299912351], [-118.39591400000018, 34.095012999123526], [-118.3957280000002, 34.090585999123526], [-118.39451400000019, 34.0905799991235], [-118.39358600000021, 34.08963499912361], [-118.38975500000015, 34.08849499912371], [-118.38973300000019, 34.076489999123716], [-118.39071800000019, 34.07650099912368], [-118.39070400000018, 34.07208299912377], [-118.383764, 34.072121999123766], [-118.38372800000016, 34.06968399912372], [-118.37740300000019, 34.06970899912385], [-118.37737500000013, 34.069323999123824], [-118.37631700000014, 34.0693359991238], [-118.37635400000026, 34.0697869991238], [-118.37589200000012, 34.0697839991237], [-118.3758640000002, 34.07029899912374], [-118.37301700000017, 34.06539499912384], [-118.37203000000017, 34.0641819991239], [-118.3722580000002, 34.064244999123815], [-118.37202700000017, 34.06386699912386], [-118.3722440000002, 34.062199999123884], [-118.376001, 34.05996499912385], [-118.37600600000016, 34.05961099912387], [-118.37617400000016, 34.05946199912391], [-118.3772660000001, 34.05938399912396], [-118.37733000000016, 34.06295399912389], [-118.38353400000014, 34.06293699912394], [-118.383666, 34.05709899912396], [-118.39971300000023, 34.05709599912397], [-118.400002, 34.0568769991239], [-118.400428, 34.057096999123935], [-118.400785, 34.05686699912395], [-118.40090700000015, 34.05699699912401], [-118.40075100000011, 34.05709799912393], [-118.40127100000016, 34.05709799912393], [-118.40158400000023, 34.05691499912388], [-118.40167900000023, 34.05702899912394], [-118.4015560000002, 34.057098999123994], [-118.40188200000021, 34.05709799912393], [-118.40227, 34.05688599912402], [-118.40237100000012, 34.05699599912386], [-118.4021830000002, 34.057098999123994], [-118.4024630000002, 34.05709899912393], [-118.40277100000021, 34.056886999124096], [-118.40292700000015, 34.05705499912389], [-118.403261, 34.056830999123925], [-118.40345500000022, 34.057022999123866], [-118.40399300000011, 34.057100999123925], [-118.40592200000013, 34.05710399912395], [-118.40592900000019, 34.054829999124], [-118.40545200000015, 34.05486099912397], [-118.4052850000001, 34.05440199912407], [-118.40556200000019, 34.054311999123954], [-118.40556200000012, 34.054140999123824], [-118.40612200000018, 34.054144999123935], [-118.405484, 34.052846999124], [-118.40602300000015, 34.05266599912401], [-118.41155100000017, 34.06042499912394], [-118.41220400000027, 34.06010099912391], [-118.414166, 34.062840999123814], [-118.41351400000018, 34.06316499912383], [-118.4172530000002, 34.0683829991238], [-118.416371, 34.06883999912381], [-118.41738200000023, 34.0702059991239], [-118.418462, 34.07236099912385], [-118.41964200000018, 34.072651999123714], [-118.42092800000013, 34.07542799912364], [-118.42183900000022, 34.07509299912382], [-118.42254600000017, 34.07527299912372], [-118.42328900000012, 34.07568899912373], [-118.42276700000018, 34.07704799912372], [-118.423296, 34.077568999123685], [-118.42363200000011, 34.078763999123744], [-118.4234770000001, 34.0788129991237], [-118.4238280000002, 34.079739999123696], [-118.42264700000018, 34.080008999123656], [-118.42277800000019, 34.08309299912367], [-118.42696200000017, 34.08304399912366], [-118.42704100000013, 34.090630999123526], [-118.42450000000021, 34.09063799912352], [-118.42455300000027, 34.090321999123574], [-118.42403200000011, 34.09011099912354], [-118.42331800000017, 34.090534999123484], [-118.42268900000022, 34.09056099912355], [-118.42274000000012, 34.09431499912346], [-118.41393400000021, 34.09426799912356], [-118.41260900000019, 34.09291699912346], [-118.41196900000013, 34.09247899912351], [-118.411883, 34.09224399912347], [-118.41147100000019, 34.09349599912358], [-118.4094400000002, 34.094858999123495], [-118.40919000000018, 34.09553799912351], [-118.40949400000021, 34.096149999123426], [-118.4090540000002, 34.09656999912345], [-118.40889200000012, 34.09711899912352], [-118.40864100000012, 34.09714699912348], [-118.40906700000012, 34.09755399912345], [-118.40878500000015, 34.09845199912343], [-118.4090050000001, 34.09900099912349], [-118.4090580000002, 34.10015599912345], [-118.40860600000013, 34.10045799912343], [-118.40872300000014, 34.10065999912344], [-118.40817100000017, 34.1012899991234], [-118.40826000000014, 34.10150199912345], [-118.40541000000015, 34.10146099912339], [-118.40529900000021, 34.09799899912344], [-118.40514400000013, 34.097155999123444], [-118.40532000000012, 34.09629999912357], [-118.40241900000012, 34.09366699912342], [-118.40206400000015, 34.09379099912343], [-118.401677, 34.094204999123505], [-118.40139900000014, 34.09383999912347], [-118.400888, 34.093993999123526], [-118.40103800000016, 34.1087329991233], [-118.39865500000018, 34.108609999123345], [-118.40007300000016, 34.110934999123344], [-118.39920300000023, 34.1114869991234], [-118.39720200000018, 34.1116189991233], [-118.39636500000013, 34.11161599912327], [-118.39600600000018, 34.11120299912339], [-118.39585600000012, 34.11241399912322], [-118.3911400000002, 34.11242299912339]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Beverly Hills", "population": 0.34519816328524444, "cases": 106.0, "resource_uri": "/1.0/boundary/beverly-hills-la-county-neighborhood-current/", "external_id": "beverly-hills", "slug": "beverly-hills-la-county-neighborhood-current", "metadata": {"sqmi": 5.70224133167, "type": "standalone-city", "name": "Beverly Hills", "slug": "beverly-hills"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.38961100000014, 34.052309999123885], [-118.38951100000013, 34.04950999912385], [-118.385411, 34.04880999912388], [-118.38831000000013, 34.03900999912411], [-118.38841, 34.03820999912405], [-118.38941, 34.03470999912416], [-118.394111, 34.0361099991241], [-118.39851100000017, 34.037209999124116], [-118.39921100000014, 34.039709999124135], [-118.398511, 34.041209999124064], [-118.398711, 34.04370999912402], [-118.399011, 34.043809999123965], [-118.39885900000017, 34.0454799991239], [-118.402553, 34.04635299912396], [-118.401531, 34.0519669991239], [-118.397711, 34.052309999123935], [-118.38961100000014, 34.052309999123885]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Beverlywood", "population": 0.13172991118854374, "cases": 31.0, "resource_uri": "/1.0/boundary/beverlywood-la-county-neighborhood-current/", "external_id": "beverlywood", "slug": "beverlywood-la-county-neighborhood-current", "metadata": {"sqmi": 0.794341836932, "type": "segment-of-a-city", "name": "Beverlywood", "slug": "beverlywood"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.192705, 34.061810999123814], [-118.19238400382756, 34.034002470454126], [-118.19184085280028, 34.03400446002813], [-118.19184585281442, 34.03441646002893], [-118.19129100000016, 34.034416999124225], [-118.19126900000012, 34.0336129991242], [-118.191286, 34.033273999124134], [-118.192377, 34.0332329991241], [-118.192219, 34.0150799991244], [-118.191436, 34.015083999124364], [-118.191428, 34.01276099912442], [-118.201273, 34.0135839991245], [-118.205058, 34.01437399912449], [-118.205026, 34.01262599912447], [-118.20534, 34.012815999124456], [-118.207041, 34.01277699912451], [-118.208166, 34.01500599912457], [-118.21270100000011, 34.014988999124355], [-118.21269800000012, 34.01429499912439], [-118.218069, 34.0159849991244], [-118.218064, 34.01496499912438], [-118.22291280880971, 34.01494244501524], [-118.223906, 34.01851299912442], [-118.2262060000001, 34.02931199912413], [-118.22646400000012, 34.02943499912414], [-118.227406, 34.03451199912409], [-118.228406, 34.038611999124115], [-118.230306, 34.048011999124036], [-118.22890600000017, 34.053210999123834], [-118.227306, 34.05511099912379], [-118.22580600000012, 34.05441099912397], [-118.219306, 34.05691099912389], [-118.213506, 34.06141099912384], [-118.20750600000012, 34.06521099912367], [-118.2048050000001, 34.06571099912376], [-118.202105, 34.06571099912376], [-118.198405, 34.06511099912373], [-118.192805, 34.06391099912392], [-118.192705, 34.061810999123814]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Boyle Heights", "population": 0.8688510417567217, "cases": 201.0, "resource_uri": "/1.0/boundary/boyle-heights-la-county-neighborhood-current/", "external_id": "boyle-heights", "slug": "boyle-heights-la-county-neighborhood-current", "metadata": {"sqmi": 6.51900530941, "type": "segment-of-a-city", "name": "Boyle Heights", "slug": "boyle-heights"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.96005300000026, 34.156947999122785], [-117.96005200000019, 34.151784999122825], [-117.95150500000013, 34.150420999122794], [-117.95129700000027, 34.1483059991228], [-117.95130800000018, 34.14577899912286], [-117.95159800000016, 34.14451799912283], [-117.95155, 34.14351699912286], [-117.96002900000015, 34.14342599912286], [-117.961586, 34.143499999122824], [-117.96312400000016, 34.143679999122874], [-117.96312300000014, 34.14378199912293], [-117.97538053584937, 34.143677262903644], [-117.97538236966402, 34.14690429647322], [-117.9803610000002, 34.146870999122854], [-117.98033500000015, 34.14791699912287], [-117.98196600000024, 34.14782499912286], [-117.98208000000015, 34.15041799912286], [-117.98339000000026, 34.15058699912279], [-117.983556, 34.15117799912281], [-117.9838840000003, 34.1515619991228], [-117.98507600000015, 34.15155799912276], [-117.98537800000027, 34.15400899912272], [-117.985851, 34.15512499912271], [-117.98556700000013, 34.15511799912272], [-117.98513600000018, 34.15573399912274], [-117.9848770000002, 34.155712999122755], [-117.98473700000018, 34.15638499912276], [-117.98269900000021, 34.15629899912278], [-117.98256500000019, 34.156519999122715], [-117.98191900000013, 34.15663499912275], [-117.98109500000015, 34.15643099912273], [-117.98090200000019, 34.156833999122775], [-117.980112, 34.156509999122804], [-117.9800180000002, 34.15669799912275], [-117.9774460000001, 34.155866999122786], [-117.977198, 34.16500599912263], [-117.960054, 34.1650539991226], [-117.96005300000026, 34.156947999122785]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Bradbury", "population": 0.010689470871191877, "cases": 1.0, "resource_uri": "/1.0/boundary/bradbury-la-county-neighborhood-current/", "external_id": "bradbury", "slug": "bradbury-la-county-neighborhood-current", "metadata": {"sqmi": 1.92842214364, "type": "standalone-city", "name": "Bradbury", "slug": "bradbury"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.488415, 34.130005999123064], [-118.47998500000011, 34.13001299912292], [-118.479364, 34.12951599912305], [-118.478519, 34.126655999123], [-118.478241, 34.12618399912304], [-118.47763700000012, 34.125944999123114], [-118.476115, 34.126005999122974], [-118.477815, 34.12330599912307], [-118.481864, 34.11821799912312], [-118.48206900000011, 34.117339999123004], [-118.48208100000011, 34.11132299912321], [-118.48191500000011, 34.11070699912317], [-118.47764900000014, 34.10503999912328], [-118.47720100000012, 34.10400799912322], [-118.47716600000011, 34.102919999123365], [-118.47785200000013, 34.100127999123366], [-118.477906, 34.09890299912347], [-118.47730100000014, 34.0966799991235], [-118.475945, 34.09636699912333], [-118.475596, 34.095743999123385], [-118.475826, 34.092393999123495], [-118.47513600000012, 34.08609199912342], [-118.474802, 34.084475999123484], [-118.47427700000011, 34.083280999123545], [-118.47238800000012, 34.08068899912367], [-118.469885, 34.07803099912362], [-118.468977, 34.077366999123626], [-118.46832500000014, 34.07607599912354], [-118.465995, 34.07322299912365], [-118.466532, 34.072917999123675], [-118.460203, 34.065374999123804], [-118.45962600000017, 34.06550399912379], [-118.45516100000013, 34.060242999123716], [-118.458781, 34.05807299912396], [-118.4611000000002, 34.06004599912379], [-118.46281400000015, 34.06310899912391], [-118.4632000000001, 34.06506599912379], [-118.465336, 34.06698899912373], [-118.466731, 34.06770799912381], [-118.468893, 34.06587099912373], [-118.467953, 34.060909999123794], [-118.45922941167468, 34.05079463890208], [-118.47096, 34.04127599912417], [-118.471513, 34.04174899912413], [-118.471275, 34.04194199912395], [-118.473721, 34.04403599912408], [-118.474278, 34.044313999124], [-118.474382, 34.04420799912411], [-118.477283, 34.046698999124054], [-118.47834800000015, 34.04626499912402], [-118.478438, 34.045628999124006], [-118.479015, 34.045686999123916], [-118.479136, 34.04518899912394], [-118.479647, 34.0451069991241], [-118.479745, 34.044702999124056], [-118.480161, 34.04452899912417], [-118.48001500000011, 34.044455999124025], [-118.483766, 34.04142999912406], [-118.49410321379318, 34.05024852326198], [-118.493814, 34.05010799912388], [-118.493014, 34.05180799912383], [-118.49251400000011, 34.05350799912392], [-118.49311400000012, 34.056407999123955], [-118.49271400000013, 34.05840799912377], [-118.49345900000013, 34.05891999912381], [-118.49347800000011, 34.059944999123886], [-118.49363700000015, 34.060310999123786], [-118.494368, 34.06062999912375], [-118.49505, 34.0605539991238], [-118.495513, 34.0601659991238], [-118.496172, 34.05633599912391], [-118.496359, 34.056018999123985], [-118.498628, 34.0549209991238], [-118.499054, 34.05440699912382], [-118.499256, 34.053689999123996], [-118.4995440000001, 34.053288999123865], [-118.500614, 34.05290799912391], [-118.50294, 34.05272199912398], [-118.503885, 34.05227999912387], [-118.508014, 34.046607999124], [-118.508427, 34.0462399991239], [-118.509166, 34.04618899912392], [-118.51000600000015, 34.04668699912401], [-118.510059, 34.047279999123994], [-118.509297, 34.048561999124054], [-118.509212, 34.04898999912393], [-118.50927100000014, 34.050516999123886], [-118.509541, 34.050902999123934], [-118.50996100000012, 34.051087999123936], [-118.506807, 34.05532399912385], [-118.506814, 34.06150799912376], [-118.50711400000013, 34.06410799912384], [-118.511514, 34.06690799912384], [-118.516515, 34.07220799912368], [-118.51521500000011, 34.07500799912373], [-118.51751500000012, 34.07600799912372], [-118.520515, 34.081806999123486], [-118.518415, 34.081806999123486], [-118.519515, 34.08280699912348], [-118.5180150000001, 34.08310699912364], [-118.52071500000018, 34.08860699912339], [-118.525516, 34.104406999123285], [-118.525616, 34.10730699912323], [-118.5279160000001, 34.11820599912323], [-118.52751600000012, 34.11850599912308], [-118.5283160000001, 34.118905999123136], [-118.529216, 34.122005999123026], [-118.528616, 34.12550599912302], [-118.52711600000013, 34.12910599912314], [-118.510716, 34.13030599912292], [-118.51041600000013, 34.130705999122924], [-118.508516, 34.131205999122926], [-118.50411600000014, 34.128005999123026], [-118.5026160000001, 34.12840599912297], [-118.502016, 34.13060599912289], [-118.5022160000001, 34.12950599912306], [-118.500916, 34.12910599912313], [-118.496815, 34.1305059991229], [-118.49601500000014, 34.130005999122936], [-118.494415, 34.130105999122975], [-118.4928150000001, 34.13110599912298], [-118.490415, 34.131205999122926], [-118.490015, 34.13060599912304], [-118.488415, 34.130005999123064]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Brentwood", "population": 0.34079283718396647, "cases": 65.0, "resource_uri": "/1.0/boundary/brentwood-la-county-neighborhood-current/", "external_id": "brentwood", "slug": "brentwood-la-county-neighborhood-current", "metadata": {"sqmi": 15.2237014135, "type": "segment-of-a-city", "name": "Brentwood", "slug": "brentwood"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.278207, 33.96001399912514], [-118.269506, 33.96001399912504], [-118.2694377868819, 33.923101994170985], [-118.27733197487852, 33.92328100042939], [-118.2772889860438, 33.922856002383824], [-118.27753398960863, 33.92243300664812], [-118.27822098879062, 33.92250900026267], [-118.27822598175104, 33.92321799797693], [-118.28126527806717, 33.923199001298045], [-118.279848, 33.93494499912537], [-118.27980600000011, 33.94291399912524], [-118.27960600000013, 33.94551399912521], [-118.27930600000012, 33.947213999125104], [-118.2807070000002, 33.95661399912518], [-118.280807, 33.95991399912499], [-118.278207, 33.96001399912514]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Broadway-Manchester", "population": 0.3376642442927402, "cases": 92.0, "resource_uri": "/1.0/boundary/broadway-manchester-la-county-neighborhood-current/", "external_id": "broadway-manchester", "slug": "broadway-manchester-la-county-neighborhood-current", "metadata": {"sqmi": 1.55848582484, "type": "segment-of-a-city", "name": "Broadway-Manchester", "slug": "broadway-manchester"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.29276100000021, 34.221653999121976], [-118.28020900000014, 34.2071039991222], [-118.28010900000015, 34.190204999122294], [-118.283377, 34.18598399912235], [-118.28783100000015, 34.18763199912238], [-118.28827200000015, 34.18715399912236], [-118.29009200000031, 34.18461599912246], [-118.29287500000018, 34.181633999122504], [-118.29759900000018, 34.1770039991226], [-118.29639200000017, 34.176121999122564], [-118.29890600000016, 34.17369899912255], [-118.29918, 34.1732759991225], [-118.29688700000011, 34.171559999122515], [-118.30203000000012, 34.16657099912258], [-118.304583, 34.16435199912262], [-118.30701700000017, 34.16178299912268], [-118.3078490000002, 34.16115199912266], [-118.30872800000022, 34.16143899912264], [-118.30964600000013, 34.161258999122644], [-118.3103200000002, 34.16075999912264], [-118.31218900000025, 34.155344999122796], [-118.31467500000012, 34.15427799912275], [-118.31581800000016, 34.15445299912275], [-118.316002, 34.15466099912266], [-118.3172170000002, 34.15479199912278], [-118.31767700000016, 34.156312999122676], [-118.32211000000015, 34.155726999122734], [-118.32572100000016, 34.153252999122934], [-118.3290260000002, 34.15018099912281], [-118.33006700000017, 34.14974699912281], [-118.33102800000013, 34.148317999122845], [-118.33663700000024, 34.14649399912297], [-118.33880400000018, 34.14522799912289], [-118.33989100000018, 34.14555899912285], [-118.34034300000016, 34.145491999122925], [-118.34088, 34.144934999122825], [-118.34483800000021, 34.142691999122825], [-118.34566500000024, 34.142366999122906], [-118.345949, 34.14457299912285], [-118.35310300000016, 34.16128899912276], [-118.35715100000026, 34.16128699912271], [-118.3571580000002, 34.164907999122626], [-118.35472700000014, 34.16490899912257], [-118.35775800000022, 34.1721619991226], [-118.3608240000002, 34.19248499912229], [-118.36119000000012, 34.19397099912232], [-118.36115100000015, 34.194650999122324], [-118.3703130000002, 34.196378999122274], [-118.37031200000017, 34.201196999122146], [-118.36226100000019, 34.20123399912221], [-118.362171, 34.20141899912221], [-118.36298700000022, 34.2068179991221], [-118.33993000000021, 34.206502999122215], [-118.33980600000015, 34.21119399912206], [-118.33773700000015, 34.21127099912208], [-118.3377060000002, 34.21258899912205], [-118.33603200000017, 34.21430899912203], [-118.33641700000011, 34.21456799912196], [-118.33484500000019, 34.21551399912199], [-118.33512800000015, 34.21675299912208], [-118.33746200000014, 34.22131199912201], [-118.29276100000021, 34.221653999121976]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Burbank", "population": 1.0718162083936325, "cases": 237.0, "resource_uri": "/1.0/boundary/burbank-la-county-neighborhood-current/", "external_id": "burbank", "slug": "burbank-la-county-neighborhood-current", "metadata": {"sqmi": 17.3418424792, "type": "standalone-city", "name": "Burbank", "slug": "burbank"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.69454400000014, 34.16841799912253], [-118.67437700000019, 34.16816499912262], [-118.67423362477263, 34.16590926695656], [-118.6742138066609, 34.15466427129864], [-118.66866798532526, 34.15465890900171], [-118.66866584456169, 34.154816921119846], [-118.6685032790368, 34.15481653174864], [-118.6685029780249, 34.15465880269921], [-118.66751211260497, 34.15465834410004], [-118.6675212123453, 34.15222263722826], [-118.66692500000016, 34.15230299912284], [-118.66638000000023, 34.15217899912277], [-118.66568111540369, 34.15136367309613], [-118.66531031872236, 34.15411004888559], [-118.66437201417665, 34.15465504916218], [-118.65868724738726, 34.15465040694591], [-118.65867792463554, 34.15795845714115], [-118.65517700000015, 34.158082999122655], [-118.65522400000016, 34.161092999122694], [-118.65431200000016, 34.16083699912271], [-118.65435300000017, 34.1581129991227], [-118.65130900000015, 34.15808899912272], [-118.65129500000018, 34.157747999122606], [-118.64998600000018, 34.157735999122615], [-118.64994868451143, 34.158922308094034], [-118.64936800000021, 34.15896499912266], [-118.64828700000015, 34.1587059991227], [-118.64677600000014, 34.1576689991228], [-118.64672200000012, 34.15724799912277], [-118.64472200000023, 34.15797199912276], [-118.64473900000017, 34.15745899912269], [-118.64575300000017, 34.15600399912271], [-118.64127, 34.157923999122694], [-118.64127600000022, 34.15663299912269], [-118.63848300000019, 34.157596999122724], [-118.63216200000014, 34.15052499912285], [-118.63125, 34.151086999122775], [-118.6302550000002, 34.15038099912279], [-118.63007500000016, 34.149832999122886], [-118.62981100000013, 34.149892999122784], [-118.62897800000012, 34.14734899912291], [-118.62915300000017, 34.14689899912289], [-118.62288800000013, 34.147267999122825], [-118.61497100000021, 34.14727699912286], [-118.61497800000026, 34.149266999122815], [-118.61014600000019, 34.14742999912275], [-118.6108020000002, 34.147440999122914], [-118.61102000000015, 34.14524799912287], [-118.61139440905694, 34.14365265032877], [-118.61424080146257, 34.143656412310676], [-118.61531000000019, 34.1428329991229], [-118.61509400000013, 34.141478999122924], [-118.61363300000015, 34.141381999122856], [-118.61280500000014, 34.14064499912291], [-118.61277600000022, 34.13977299912288], [-118.60620347078762, 34.13965862411661], [-118.60624564505898, 34.12900110415265], [-118.61060906154134, 34.12902239431132], [-118.61062967278785, 34.12533058044352], [-118.64110746287987, 34.125308348765614], [-118.64483221289649, 34.125322329703664], [-118.64495519704698, 34.12905448796756], [-118.65006176134513, 34.129070536850755], [-118.65020531404721, 34.12153142579452], [-118.65094418079703, 34.12083674087975], [-118.65136378612557, 34.11986019652828], [-118.65149345428054, 34.11829238819136], [-118.65180461149343, 34.11729987862495], [-118.66052800000018, 34.117070999123236], [-118.676932, 34.117703999123165], [-118.68858400000019, 34.1174659991232], [-118.6886840000002, 34.11426799912323], [-118.70638300000022, 34.11426699912325], [-118.70669000000021, 34.10712099912328], [-118.7107384972251, 34.10718476072527], [-118.71077200000019, 34.10420399912333], [-118.71134300000018, 34.10391199912329], [-118.71173100000016, 34.10483399912338], [-118.7117740000002, 34.10542199912336], [-118.711359, 34.107006999123385], [-118.71144000000011, 34.10892099912326], [-118.71131800000015, 34.1097999991233], [-118.71096900000022, 34.1110569991233], [-118.708409, 34.11752199912322], [-118.70641900000015, 34.12498099912311], [-118.7195020000001, 34.12500799912309], [-118.71958900000016, 34.128165999123], [-118.71978727889746, 34.12816757903454], [-118.71979021515855, 34.12897251688813], [-118.72014571764694, 34.12897218047323], [-118.72015854939072, 34.129857545593424], [-118.7206210000002, 34.13065899912307], [-118.72074019325878, 34.13171053903597], [-118.72018200000016, 34.132063999123034], [-118.71941000000017, 34.132051999123014], [-118.71968500000018, 34.13624099912306], [-118.7241120000002, 34.13631199912296], [-118.72413386088797, 34.13829962092446], [-118.7267972395646, 34.137998650484825], [-118.72795645566335, 34.13810158993966], [-118.7291821088183, 34.13843288950915], [-118.73063830005931, 34.139239215941366], [-118.7349370457869, 34.142153456231014], [-118.7358719329437, 34.14267020794711], [-118.7370238572315, 34.14304324369543], [-118.73706000000028, 34.15435299912277], [-118.73232400000016, 34.1543019991227], [-118.726317, 34.16787499912258], [-118.72337400000029, 34.16786099912268], [-118.71167400000034, 34.168516999122595], [-118.70506600000019, 34.168596999122606], [-118.69454400000014, 34.16841799912253]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Calabasas", "population": 0.24322902971338417, "cases": 37.0, "resource_uri": "/1.0/boundary/calabasas-la-county-neighborhood-current/", "external_id": "calabasas", "slug": "calabasas-la-county-neighborhood-current", "metadata": {"sqmi": 18.5426135082, "type": "standalone-city", "name": "Calabasas", "slug": "calabasas"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.60301700000011, 34.23530599912172], [-118.58832000000014, 34.23530299912163], [-118.588319, 34.18820399912227], [-118.597311, 34.18821299912225], [-118.60674, 34.18643499912233], [-118.61462, 34.186403999122305], [-118.61452, 34.19830399912214], [-118.61472, 34.199703999122164], [-118.61452, 34.20470399912215], [-118.61472, 34.211903999121915], [-118.61452, 34.21540399912199], [-118.614621, 34.21940399912192], [-118.61012, 34.219403999121845], [-118.605814, 34.21960199912184], [-118.605818, 34.225696999121865], [-118.605704, 34.2264239991219], [-118.605122, 34.227319999121846], [-118.60305200000012, 34.22890699912174], [-118.60263400000012, 34.2298629991218], [-118.602821, 34.231302999121745], [-118.604821, 34.235302999121664], [-118.60301700000011, 34.23530599912172]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Canoga Park", "population": 0.6528949361468752, "cases": 250.0, "resource_uri": "/1.0/boundary/canoga-park-la-county-neighborhood-current/", "external_id": "canoga-park", "slug": "canoga-park-la-county-neighborhood-current", "metadata": {"sqmi": 4.34851812528, "type": "segment-of-a-city", "name": "Canoga Park", "slug": "canoga-park"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.25760500000024, 33.88626799912611], [-118.2572130000001, 33.8840009991261], [-118.25814100000014, 33.88397199912608], [-118.26130600000016, 33.8813429991261], [-118.26151200000018, 33.88011199912614], [-118.26081400000018, 33.880181999126144], [-118.25909800000018, 33.87996199912611], [-118.25337600000016, 33.88011599912611], [-118.25366600000015, 33.881716999126155], [-118.24874100000022, 33.881716999126155], [-118.24873400000017, 33.88041499912604], [-118.24729800000017, 33.880451999126166], [-118.24742400000018, 33.87891199912617], [-118.248642, 33.878812999126175], [-118.24866000000023, 33.87007999912622], [-118.244139, 33.87018599912626], [-118.2423990000001, 33.8698939991262], [-118.24207700000015, 33.86773999912622], [-118.23563400000015, 33.86789999912624], [-118.2338910000002, 33.84663599912649], [-118.20549600000017, 33.84662299912655], [-118.2057840000003, 33.84500599912656], [-118.2073320000002, 33.83941899912664], [-118.21126200000019, 33.838306999126566], [-118.21179800000017, 33.83663599912664], [-118.21265800000016, 33.835459999126684], [-118.213191, 33.83442099912667], [-118.21596800000012, 33.834383999126686], [-118.216847, 33.83171499912677], [-118.21687500000014, 33.83015199912677], [-118.21576200000013, 33.8260749991268], [-118.21888500000016, 33.82568199912674], [-118.22228300000032, 33.82581399912671], [-118.22229700000031, 33.82429199912682], [-118.22457600000011, 33.824287999126824], [-118.22662200000013, 33.829530999126774], [-118.22850300000012, 33.824374999126796], [-118.228066, 33.824194999126895], [-118.22538700000014, 33.81100799912689], [-118.22537300000013, 33.80845799912703], [-118.2252800000002, 33.808152999127024], [-118.22392600000015, 33.80642299912703], [-118.22394000000024, 33.80621899912704], [-118.2244320000002, 33.80458599912709], [-118.22718100000016, 33.80009999912715], [-118.22885600000015, 33.79526399912712], [-118.23026100000013, 33.79277199912721], [-118.237482, 33.800480999127075], [-118.2584450000002, 33.79944199912712], [-118.25651200000019, 33.80477399912712], [-118.2622610000002, 33.804615999127165], [-118.26225900000018, 33.804511999127136], [-118.263361, 33.80470499912719], [-118.264603, 33.804696999127046], [-118.26440200000019, 33.80097499912715], [-118.26450200000015, 33.79913199912722], [-118.28299700000012, 33.7982409991272], [-118.28293000000015, 33.79763099912714], [-118.28673697845058, 33.79781800251274], [-118.28765197214331, 33.79878000548371], [-118.28815197214371, 33.79955800548481], [-118.28876697214416, 33.80108900548693], [-118.28884197214349, 33.80293100548938], [-118.28745397213956, 33.809191005497226], [-118.28724397213877, 33.811037005499486], [-118.28714497212994, 33.837136005533246], [-118.28491699046697, 33.84623900519849], [-118.28601699480046, 33.84625300575105], [-118.2860360000003, 33.8522479991265], [-118.2852750000002, 33.85224999912638], [-118.28525400000022, 33.85415699912644], [-118.2905180000002, 33.854222999126506], [-118.29052300000029, 33.858698999126275], [-118.28561500000012, 33.861043999126366], [-118.28548800000013, 33.86063599912634], [-118.28521100000017, 33.86048099912635], [-118.28513600000021, 33.86068399912632], [-118.28536300000015, 33.8611559991263], [-118.28155500000013, 33.86280199912634], [-118.28164300000014, 33.872018999126254], [-118.28184500000015, 33.87269699912616], [-118.2822470000002, 33.87263899912632], [-118.28210700000017, 33.872852999126266], [-118.28228000000017, 33.87412699912617], [-118.28272898597481, 33.88546600124116], [-118.2613629906937, 33.88609100127599], [-118.26116100000011, 33.88523399912604], [-118.26023100000013, 33.88521999912603], [-118.259841, 33.885247999126044], [-118.259878, 33.885616999126], [-118.25936600000027, 33.885707999126076], [-118.25946200000013, 33.88621199912609], [-118.25760500000024, 33.88626799912611]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Carson", "population": 0.9384487993375655, "cases": 238.0, "resource_uri": "/1.0/boundary/carson-la-county-neighborhood-current/", "external_id": "carson", "slug": "carson-la-county-neighborhood-current", "metadata": {"sqmi": 19.1495884923, "type": "standalone-city", "name": "Carson", "slug": "carson"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.36841, 34.063709999123894], [-118.36151, 34.0630099991238], [-118.36381, 34.05840999912383], [-118.36691, 34.05150999912393], [-118.3762100000001, 34.05330999912392], [-118.37631, 34.059452684055366], [-118.376006, 34.05961099912381], [-118.376001, 34.05996499912383], [-118.372244, 34.062199999123855], [-118.372027, 34.063866999123796], [-118.37223126490076, 34.06420125077948], [-118.36841, 34.063709999123894]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Carthay", "population": 0.24958144747406502, "cases": 89.0, "resource_uri": "/1.0/boundary/carthay-la-county-neighborhood-current/", "external_id": "carthay", "slug": "carthay-la-county-neighborhood-current", "metadata": {"sqmi": 0.504675757272, "type": "segment-of-a-city", "name": "Carthay", "slug": "carthay"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.51795148187844, 34.70111969676171], [-118.51588939094466, 34.700320194670354], [-118.5120734005443, 34.699257168812096], [-118.50980949967273, 34.69882256627427], [-118.50770481275563, 34.6986308470868], [-118.50575108458867, 34.69799839703525], [-118.50573100650888, 34.695538035963864], [-118.50132527245597, 34.69555223985396], [-118.50130565933127, 34.69373762684356], [-118.49689143454508, 34.693729818165004], [-118.49687130024982, 34.69191104388089], [-118.4924566577594, 34.69190029798465], [-118.49244633218828, 34.69098955522151], [-118.48801644318834, 34.69098003266682], [-118.48800896152179, 34.690069274583756], [-118.48358207512067, 34.690058204865046], [-118.48354921249134, 34.68642067737859], [-118.47916126713548, 34.68647122839292], [-118.47914908980258, 34.684597491374426], [-118.47472792424404, 34.68464518297056], [-118.47468479270215, 34.68111568107172], [-118.4657171150526, 34.681138409598596], [-118.46560342089224, 34.65556530705647], [-118.48311766926828, 34.65560738646941], [-118.48304670132727, 34.64918513041515], [-118.48415357488499, 34.649196172481425], [-118.48415445056611, 34.648285375763415], [-118.48857219557706, 34.64833626885912], [-118.48855461551909, 34.64654000465064], [-118.48965274770255, 34.64655180064317], [-118.48964374891939, 34.64582610522837], [-118.48992538598962, 34.645659912657784], [-118.49403039434151, 34.64566702222385], [-118.49401125852637, 34.64476946798624], [-118.50059696455224, 34.64467475053702], [-118.50069681476567, 34.64054377844867], [-118.50035323389628, 34.639941192599274], [-118.49863479771042, 34.64005615739776], [-118.49769630235866, 34.64038298161678], [-118.49679622998639, 34.6403924043029], [-118.49465755581326, 34.6419791158663], [-118.49443463689428, 34.642773430371186], [-118.49203777852055, 34.64473553560444], [-118.48306498401051, 34.64462158339332], [-118.48305744148657, 34.64643492909422], [-118.47868554587683, 34.64644627938949], [-118.47870308978528, 34.64829640172775], [-118.46992262950332, 34.648295991771526], [-118.4699421311451, 34.6501093140024], [-118.46555331779746, 34.65010887976348], [-118.46557275829456, 34.651922201222824], [-118.4567122221968, 34.65197115408582], [-118.45674103668516, 34.65923129946811], [-118.43039909496181, 34.6594373198312], [-118.40776264102543, 34.65941992776606], [-118.40772403675865, 34.6557424703629], [-118.39456925757831, 34.655778460541896], [-118.39458324333593, 34.644862788494365], [-118.37708549561563, 34.64492917936304], [-118.37705086789477, 34.64136573099436], [-118.36393494143661, 34.64140969804397], [-118.36391953513262, 34.63780936817746], [-118.35949499766032, 34.63781120648563], [-118.35947878904905, 34.630692465990485], [-118.35830330518176, 34.630681289234396], [-118.35828491022616, 34.627078435432466], [-118.34074386687143, 34.62715342024595], [-118.3405235736448, 34.602024823826305], [-118.30552347099166, 34.60174827383202], [-118.30551944945326, 34.589326782836636], [-118.30770228200844, 34.589325892974706], [-118.30770113975275, 34.587518019510014], [-118.31425015141154, 34.58754811395973], [-118.31422612206536, 34.58574436573664], [-118.31748640343669, 34.585724242529984], [-118.31746518523266, 34.58389163492596], [-118.3142014971496, 34.58390011627063], [-118.3141783936552, 34.582135466362416], [-118.30981318123483, 34.58223770863373], [-118.30978963140966, 34.58047380088577], [-118.30540787407287, 34.58061708965032], [-118.300433346711, 34.580447466402255], [-118.30044003063611, 34.58015699056883], [-118.2879236038458, 34.58002449645255], [-118.287297993655, 34.55815273972219], [-118.30697323479328, 34.558303349015844], [-118.30830565820204, 34.54023712905305], [-118.32611380868697, 34.54019150458609], [-118.34326775559877, 34.53990710112496], [-118.34406139577973, 34.52566643581506], [-118.36165485424554, 34.52567753123508], [-118.36181283433287, 34.5111524516377], [-118.36149945609571, 34.49660130538342], [-118.37897468288001, 34.49633109825049], [-118.37908175523032, 34.48759590132626], [-118.37952994222128, 34.48740946077916], [-118.37909563574739, 34.48651946673609], [-118.37949695195, 34.467626696550035], [-118.34325518543041, 34.467355723077766], [-118.3433097734245, 34.4612423989712], [-118.34440649867803, 34.45999905271218], [-118.34846534484105, 34.45753879669202], [-118.34963974012848, 34.456457169825434], [-118.35017964296584, 34.45565758126997], [-118.35135858840404, 34.452935863343164], [-118.35244926917652, 34.45149319596216], [-118.35417979177228, 34.45016843227362], [-118.3626653449881, 34.44561152377869], [-118.36389697678037, 34.4445270010848], [-118.36517428248405, 34.4425849005869], [-118.36603596329746, 34.44159713021213], [-118.3716977861883, 34.437823100490874], [-118.37218658491987, 34.43756537018774], [-118.380635210738, 34.43511764370383], [-118.38114499978435, 34.437127998974034], [-118.38144599992316, 34.43710199920371], [-118.38164500008413, 34.43844999925286], [-118.38080099993556, 34.4386109990095], [-118.37759700004386, 34.43857899918099], [-118.37689900003089, 34.438384999292666], [-118.37607100027013, 34.4373099990872], [-118.37694899978659, 34.448908999269186], [-118.38645900006671, 34.4488929992908], [-118.38659599977217, 34.447254999245715], [-118.38833599983508, 34.44834999895965], [-118.38780600010506, 34.449073999286405], [-118.38857899975116, 34.44938299929581], [-118.38809299976069, 34.44983599928297], [-118.38853399975027, 34.449615998937475], [-118.38843000026269, 34.451681999118975], [-118.38872600012651, 34.45168999900751], [-118.38870800019971, 34.45309099907062], [-118.38770800009954, 34.45309799913166], [-118.38757300009001, 34.461002999278605], [-118.39215400012833, 34.46113399920954], [-118.39219399986463, 34.45792299928447], [-118.39207199975766, 34.45719399899468], [-118.39289400016477, 34.457200999169835], [-118.39342599976925, 34.456000999005916], [-118.39437500012264, 34.45637199904078], [-118.39451900004372, 34.45611099896533], [-118.39398400026215, 34.45569899907523], [-118.39417799976442, 34.455352999260384], [-118.39433200019272, 34.45534299892596], [-118.39428599974177, 34.455078999153], [-118.39244599981313, 34.45504199897711], [-118.39237600021049, 34.454674999022394], [-118.3932109997542, 34.45423099914616], [-118.39364000010634, 34.45441099890375], [-118.39412000020779, 34.45405899905096], [-118.3935730002428, 34.45364299921159], [-118.39732999980696, 34.45383999934338], [-118.39725700005395, 34.44940899899578], [-118.39580499987413, 34.44940899919633], [-118.39467999981765, 34.44708099915365], [-118.3961459998989, 34.446539998958094], [-118.39766399983183, 34.44767099899638], [-118.3981650001411, 34.44781099898192], [-118.39781599982126, 34.447921999332344], [-118.39748899987845, 34.448398998976664], [-118.39715599992155, 34.44844499905109], [-118.39709200015682, 34.44916199890274], [-118.39825600016282, 34.449161999069574], [-118.3990719998799, 34.44880399898486], [-118.3992299997591, 34.44964999932586], [-118.39999900000196, 34.44964599916191], [-118.40259799997393, 34.44936399916951], [-118.4020269998181, 34.44708299906645], [-118.40248400014121, 34.44654199915763], [-118.40286099988356, 34.44672199900755], [-118.40348999998871, 34.44657699911908], [-118.40408200020735, 34.44543699917982], [-118.40474200003685, 34.44614799915697], [-118.40576000000374, 34.44644199932375], [-118.40579799982076, 34.444654999248115], [-118.4150950002278, 34.44499999909433], [-118.41502700024004, 34.43929999898243], [-118.41773800026026, 34.439257998936625], [-118.41754200021785, 34.437544999252566], [-118.41630600026721, 34.437479999292364], [-118.41477600006458, 34.437639999337804], [-118.4149380001269, 34.43493499919136], [-118.41568400003086, 34.43308899910538], [-118.42070800004872, 34.431059999170266], [-118.4203629997764, 34.43190299896151], [-118.41897000026147, 34.433289999257276], [-118.41894899980569, 34.43431499904229], [-118.42738400023066, 34.4340669990328], [-118.42747600018419, 34.43693199918727], [-118.43038999975127, 34.43769399919801], [-118.43685299978087, 34.437855999100336], [-118.43674500022841, 34.43395199891732], [-118.44609600022646, 34.433827999013374], [-118.44613700025506, 34.429874998991615], [-118.44721099979948, 34.428926999262416], [-118.44725900020663, 34.42852099911755], [-118.44807999999269, 34.42854899914168], [-118.44840399998223, 34.428148998975736], [-118.44778400016318, 34.427663999343366], [-118.44821900022166, 34.427254999155245], [-118.45745500018555, 34.42705199893773], [-118.45752500000474, 34.431078999235446], [-118.46307699985644, 34.43104499922929], [-118.46325300014988, 34.437413999058236], [-118.46310700026966, 34.4413919988958], [-118.46771499990847, 34.44138199933189], [-118.4676089997805, 34.439062999238374], [-118.47618399982466, 34.43872899891852], [-118.48203299978361, 34.43867299905617], [-118.48196099977929, 34.44171399910179], [-118.49040499989803, 34.44171599933412], [-118.4903490000084, 34.43859999906502], [-118.49864699977002, 34.43848599895359], [-118.49871199976803, 34.445011999114534], [-118.49226999993887, 34.44503699902887], [-118.4895880001237, 34.44489299902315], [-118.48976900016818, 34.44729999917818], [-118.49116100026896, 34.44801099898757], [-118.49091000018964, 34.44889999915068], [-118.49173099972835, 34.449105999135], [-118.4918900000335, 34.45011899928682], [-118.4910760001493, 34.450072999023945], [-118.49204999994016, 34.451351999248416], [-118.49125499978243, 34.450759999223074], [-118.49083600017154, 34.450820998935306], [-118.49046999990199, 34.451134999024156], [-118.49198100024196, 34.45213499889898], [-118.49219900004454, 34.45323999933831], [-118.49049300012842, 34.456441999119896], [-118.49038999981785, 34.45924899934435], [-118.49062699979243, 34.459827999332205], [-118.49157800002216, 34.46005199903389], [-118.49209799984992, 34.4599229989769], [-118.49197100005702, 34.460728999157176], [-118.49282199994367, 34.46158899921108], [-118.49248300017156, 34.46398199889905], [-118.49789299985136, 34.46381799909114], [-118.49794199992779, 34.46102499913107], [-118.50031299987569, 34.46036099911664], [-118.50082700009003, 34.46034699926014], [-118.50349799982945, 34.46112899931639], [-118.50653600009397, 34.46147899934365], [-118.50316299985187, 34.46088699920576], [-118.50300199975229, 34.460185998942116], [-118.50303500004517, 34.45235799902399], [-118.5041989999062, 34.45244599895585], [-118.50402799992322, 34.453784999272045], [-118.50433900017305, 34.45378199896154], [-118.5068390000724, 34.453652999063436], [-118.50678499985611, 34.45231699933831], [-118.51045600014037, 34.45220699932808], [-118.51073599991199, 34.453461999238435], [-118.51104800002364, 34.4535149993436], [-118.51058399998294, 34.456564999164144], [-118.51172800008018, 34.45662299915076], [-118.51170800022383, 34.45973999921131], [-118.51743599987884, 34.45978499905487], [-118.51997800022234, 34.45917999902411], [-118.52120100020147, 34.4590429992533], [-118.52327999993271, 34.459343999021776], [-118.52636499976838, 34.45920299933408], [-118.52894899985279, 34.459314999116515], [-118.52898700009379, 34.466448999190064], [-118.52444999976915, 34.46653099895971], [-118.52513600008905, 34.46894299920659], [-118.52521500004102, 34.47088499924046], [-118.52479799985814, 34.4730489990869], [-118.52493900011244, 34.474843998950604], [-118.5242329999655, 34.47707899890976], [-118.52471200012162, 34.477212999134196], [-118.52966799995242, 34.47718199909442], [-118.52989499986798, 34.475301998904705], [-118.5301660000294, 34.475468999090616], [-118.53050700024555, 34.47541899924416], [-118.53145499993668, 34.47470199931605], [-118.53195499983872, 34.4749369990967], [-118.53217600024823, 34.475254999172165], [-118.53227799996462, 34.475124998987006], [-118.53326399981191, 34.47512499910249], [-118.53351899998238, 34.4744139990619], [-118.53470499980362, 34.47443499917803], [-118.53470000021335, 34.47358299934157], [-118.53521800020657, 34.473989999226475], [-118.53556699981807, 34.47399499889615], [-118.53564800026122, 34.47306999910107], [-118.5364269997862, 34.47214899897541], [-118.53741300016175, 34.47218999927366], [-118.53692299988424, 34.4654699992308], [-118.53690899988413, 34.463429999104875], [-118.5397509999671, 34.46595699893061], [-118.54081499983032, 34.46598899930666], [-118.54098700002424, 34.46520399928843], [-118.54084300018695, 34.46509699901977], [-118.54130199996911, 34.464344999042595], [-118.54327400020586, 34.46462099914137], [-118.54360499973545, 34.46591099915639], [-118.54448300007583, 34.46685499920495], [-118.54808400021403, 34.46700599897772], [-118.5489150001036, 34.46550999933452], [-118.54918800002278, 34.464583999220324], [-118.54926000025304, 34.46298099892187], [-118.54983000026374, 34.462790999139095], [-118.55002799982965, 34.4622389989006], [-118.55186500000296, 34.46243499908824], [-118.55299000010804, 34.461488999162974], [-118.55354699996084, 34.46080199926155], [-118.55385700026223, 34.45940699903719], [-118.55656100006891, 34.45562999914406], [-118.55665200018672, 34.45530199932228], [-118.55639299991122, 34.45345899915291], [-118.55684300005753, 34.45220799931172], [-118.55697300014539, 34.45081199912221], [-118.55830000013158, 34.44864899913962], [-118.55824700016242, 34.44650999892389], [-118.55836499980333, 34.44625699918924], [-118.5534570000834, 34.44425199933779], [-118.55749399978963, 34.44297699898955], [-118.5614170000163, 34.44317399908666], [-118.56131699978991, 34.44453599927245], [-118.56340900001832, 34.44476099920589], [-118.56514900004193, 34.44528099889968], [-118.5667499997979, 34.44613699905631], [-118.5682500002424, 34.44742599910032], [-118.57250700023707, 34.44605599932543], [-118.57420300019398, 34.44483699898006], [-118.57439499994706, 34.44685199902919], [-118.57513600016905, 34.44920699899956], [-118.57431699997149, 34.45090899905939], [-118.57478699989917, 34.45124099890685], [-118.57505600009192, 34.452014999304794], [-118.57498899995613, 34.453230998926465], [-118.57458599987596, 34.45428199893185], [-118.57566000001911, 34.45483499893636], [-118.57619699987025, 34.45744399894559], [-118.57686799990786, 34.45931399926351], [-118.57753999986612, 34.4599219991642], [-118.57901700008307, 34.46041999917843], [-118.57915099993238, 34.461857999198955], [-118.58559600012175, 34.46119399898559], [-118.5886170001877, 34.45688099928317], [-118.58442400009288, 34.453688999329486], [-118.58130399991119, 34.44773899900516], [-118.587686000113, 34.44787699900164], [-118.58894499975798, 34.44839199900292], [-118.59635000019252, 34.44692299900116], [-118.59756600019914, 34.448040999058556], [-118.5985960000908, 34.44836099897697], [-118.5992439997385, 34.44794399919257], [-118.59971900015813, 34.44819799891624], [-118.60074700017927, 34.447508999267335], [-118.60231699999007, 34.44760399928421], [-118.60379099977743, 34.447329999031254], [-118.60429300001243, 34.4480959990228], [-118.60510000002529, 34.448638999332154], [-118.60518999992885, 34.449149999213546], [-118.60574299977962, 34.44951699903447], [-118.6076770002043, 34.44917799899874], [-118.60821999985039, 34.44926899932669], [-118.60820100013541, 34.45015399902312], [-118.60840599992096, 34.45049299924876], [-118.60900999987152, 34.451017999117525], [-118.60967899987071, 34.451275999239456], [-118.60986199987876, 34.451275999205286], [-118.61056800017144, 34.45064999903679], [-118.61335209725377, 34.449620248801224], [-118.61687539853617, 34.45148357622982], [-118.61703286545502, 34.452285192256475], [-118.61667887765284, 34.45427273283133], [-118.617704919303, 34.45572465436047], [-118.61935253788315, 34.45549341708166], [-118.62103650532, 34.454749005174676], [-118.6213704762824, 34.455089217024955], [-118.62005677156924, 34.45584482164597], [-118.6196158852021, 34.45674390451144], [-118.61953617259907, 34.457364128025155], [-118.61845257194652, 34.45727466025373], [-118.6178797474495, 34.45752851639631], [-118.61748361064195, 34.45797525223299], [-118.61722856019516, 34.45787157996231], [-118.616484205598, 34.458782554758], [-118.61603716640691, 34.459650989551285], [-118.61580892760767, 34.46176885256383], [-118.61622307486508, 34.463805469655384], [-118.61700925882981, 34.46404667019377], [-118.61775855091075, 34.465896863046346], [-118.61860514245245, 34.46484321174772], [-118.61931782869948, 34.46530825810431], [-118.61900843439874, 34.466046767095804], [-118.61967805788083, 34.46629643158183], [-118.61954615107894, 34.46720245376527], [-118.61730182179248, 34.467009996367416], [-118.61724960319158, 34.468487146318374], [-118.61653570434228, 34.47178058161353], [-118.61773852741835, 34.47179213475051], [-118.61807168774064, 34.47189057155604], [-118.61847909185923, 34.47211483004655], [-118.61778230055407, 34.47184249997066], [-118.61646815138315, 34.47200471360351], [-118.61528323655995, 34.477244500779044], [-118.61499392477063, 34.48001150158964], [-118.61520618604088, 34.48177429772728], [-118.62108994389628, 34.48174702750116], [-118.62116455705535, 34.48539980356397], [-118.61898862868989, 34.485408555661635], [-118.61902787786681, 34.487548990163916], [-118.62056027498751, 34.48768609011086], [-118.62122034222276, 34.48815205349322], [-118.62134276592064, 34.4885608628269], [-118.62126847732046, 34.491106120363675], [-118.62223996552973, 34.492702532517896], [-118.61683541067443, 34.49321025214219], [-118.61652284094049, 34.49745842151352], [-118.61019365840289, 34.497168696132874], [-118.60965618297568, 34.497256745127714], [-118.60887416373107, 34.497620978125674], [-118.60821468522481, 34.498146250708984], [-118.60675989948396, 34.4999361843714], [-118.60435720539914, 34.50148541953909], [-118.60397003006528, 34.502040604949784], [-118.60360242362727, 34.503118356809985], [-118.60294903557397, 34.505795420978366], [-118.60269571103011, 34.50756153601973], [-118.60193262651374, 34.50847254825425], [-118.59832435505086, 34.51096293911665], [-118.59719647914325, 34.512215617233196], [-118.59659906809969, 34.51477217335607], [-118.5965399388082, 34.51631336821591], [-118.59640941548197, 34.51632622394917], [-118.59637981618295, 34.51595586062031], [-118.59629403374984, 34.516404941867755], [-118.59657398240978, 34.51651293579931], [-118.59636197213885, 34.51652669205209], [-118.59581152483265, 34.51801079878253], [-118.595023535628, 34.51878163922348], [-118.5941725813629, 34.51908612299178], [-118.59312299421401, 34.51903993827007], [-118.58429721830343, 34.516522143329], [-118.58337110942406, 34.51650460989803], [-118.58217641311471, 34.516843350704306], [-118.58100143958016, 34.5176864604866], [-118.57910672977629, 34.51980807150637], [-118.57850663049184, 34.520622399129095], [-118.57798163983706, 34.52181444388053], [-118.57451209347217, 34.52598481986255], [-118.57148071679885, 34.52805236558498], [-118.57041800351254, 34.530323535016485], [-118.56701110348291, 34.53372967436338], [-118.56514527647603, 34.53791444389839], [-118.56182424986231, 34.54165427403064], [-118.56016336593223, 34.54326970346909], [-118.55846791486583, 34.544130847267375], [-118.55600647151483, 34.54419563970623], [-118.55497755587608, 34.544446401190534], [-118.54988485458051, 34.54719782407594], [-118.54677228357123, 34.54843132305195], [-118.541534524242, 34.55240744193792], [-118.5403812271805, 34.55357318131263], [-118.54023239241997, 34.55418465817191], [-118.54036284422384, 34.55471728012507], [-118.54176146138646, 34.557042416807946], [-118.54304990674582, 34.56018320347641], [-118.54378646998069, 34.56093579650797], [-118.54457037565963, 34.56130571426388], [-118.54603139724743, 34.561323419973355], [-118.54694573027523, 34.56092328560973], [-118.54797878128467, 34.560220356187635], [-118.54885454544346, 34.56003147052465], [-118.54962121858657, 34.560183992340505], [-118.55146496316979, 34.56135232866104], [-118.55258520058214, 34.561405668629604], [-118.55631426961133, 34.559993174391465], [-118.55821922999756, 34.5586639599567], [-118.55982860674546, 34.558431911283684], [-118.561032360718, 34.55873050189611], [-118.56166489169665, 34.559441607818115], [-118.56169346601894, 34.56026318996254], [-118.56133262659468, 34.56085436648395], [-118.56075839152709, 34.56120125465427], [-118.55860568911154, 34.561687631214006], [-118.55641437641204, 34.56313643297795], [-118.55571960998597, 34.56404073713034], [-118.55553254271365, 34.56517883388429], [-118.55566375164862, 34.56569220001353], [-118.55610428697038, 34.56637960418846], [-118.55751389303373, 34.56762937129984], [-118.55868149408005, 34.570273774239595], [-118.55874110878914, 34.57074084451066], [-118.55857550307582, 34.57125573640958], [-118.55762467544623, 34.572450295157964], [-118.55719571095268, 34.57398880873569], [-118.55656025193869, 34.57463684562422], [-118.55624829574613, 34.575200601162024], [-118.55627431974102, 34.575878094444874], [-118.55673761889079, 34.57693251659908], [-118.55680357533038, 34.57749518657133], [-118.55564894791469, 34.578909240880925], [-118.55532307394677, 34.57972840907368], [-118.5554376562716, 34.57999155379957], [-118.55659475491939, 34.58025328910954], [-118.55710882050762, 34.58059393141194], [-118.55772509749654, 34.581315144457754], [-118.55797170575153, 34.582458816725385], [-118.55856061330987, 34.58292754264172], [-118.55879451529759, 34.58341249791587], [-118.56002517330307, 34.5839679242684], [-118.56039571078985, 34.58433846224234], [-118.56045580083594, 34.58504929958277], [-118.55986388190777, 34.58597215172119], [-118.56106748231774, 34.586198743919276], [-118.56141389284063, 34.586465734906824], [-118.56151398302673, 34.58680909000904], [-118.56129633477308, 34.58757125212864], [-118.5613316114519, 34.58914176355501], [-118.56234066964208, 34.590563781540624], [-118.56224513014742, 34.591180769224245], [-118.56171162122058, 34.592166856136664], [-118.5616762512541, 34.59324601436301], [-118.56181930318829, 34.59334873276721], [-118.5630177365352, 34.59327016932594], [-118.56373807211138, 34.59359756503325], [-118.56404976028648, 34.59396378150228], [-118.56398873383145, 34.594612126581545], [-118.56297261799418, 34.596250717675126], [-118.56195754780188, 34.59753027405138], [-118.56024175768927, 34.599082634453495], [-118.5592333404746, 34.60090881957165], [-118.55799852015194, 34.6018590829597], [-118.55767752930245, 34.60281608150047], [-118.55717840363414, 34.603380832489385], [-118.55735812107743, 34.60427700463528], [-118.55685943771041, 34.605062067166465], [-118.55693501815688, 34.60529089100695], [-118.55714077486111, 34.60534853431785], [-118.55857924581713, 34.60493784016399], [-118.55937646421029, 34.604127449840036], [-118.56024589984936, 34.60361562393114], [-118.56057576402439, 34.60363853799654], [-118.56092852822873, 34.60394160780316], [-118.56079341228619, 34.60504520813433], [-118.56030689294943, 34.606005119095315], [-118.56037166546523, 34.60622750859522], [-118.5609406548108, 34.60660003282423], [-118.56063085456404, 34.6073980955193], [-118.56063876926477, 34.60845666325173], [-118.56249626310259, 34.60948199556683], [-118.56285020009173, 34.610231880701186], [-118.56271515882646, 34.6107088192586], [-118.5608418767229, 34.61232795448033], [-118.5603029530358, 34.61308488329649], [-118.56041343444195, 34.61345153769751], [-118.56125710260314, 34.61405498995307], [-118.56121785763847, 34.61489895106972], [-118.56052428651286, 34.61594385136355], [-118.56100255687872, 34.61706408101835], [-118.56100317798617, 34.6177826500775], [-118.56161389284937, 34.61831118944304], [-118.56173157882847, 34.61913621646443], [-118.56130606790173, 34.619854273878786], [-118.55974335540873, 34.6212866194174], [-118.55864998919255, 34.62179192573674], [-118.55594030596927, 34.62262487373487], [-118.55095546036321, 34.62526676081019], [-118.54889134851543, 34.62660331268217], [-118.54695625426541, 34.628111523753674], [-118.54618788967038, 34.628438227264525], [-118.54580480214962, 34.629534263514344], [-118.54532121861003, 34.630016005833475], [-118.54463175448839, 34.63019565371748], [-118.5432371991756, 34.63011741045445], [-118.54210699136121, 34.63126843764525], [-118.54035882356136, 34.6318126651863], [-118.53879968591815, 34.63189571533373], [-118.53795882359923, 34.63215812004793], [-118.53534084548942, 34.63249565363772], [-118.53416967470967, 34.632365436216325], [-118.53318485469512, 34.63318873316585], [-118.53098079832566, 34.63394069713075], [-118.52955765214115, 34.63531266306264], [-118.52962175730116, 34.63625882298118], [-118.52928671023882, 34.63744438187473], [-118.52925710274566, 34.63812682651302], [-118.52889972938051, 34.63870606692475], [-118.5273080428667, 34.639708765629656], [-118.52610792669027, 34.63973289570174], [-118.52583287666181, 34.63986403636681], [-118.52530882037966, 34.64070606688184], [-118.5237657830749, 34.641366452001485], [-118.52297443621943, 34.64232970566717], [-118.51929251023903, 34.64425045980793], [-118.51940724444997, 34.701104914775065], [-118.51936217187207, 34.70124057821689], [-118.51795148187844, 34.70111969676171]], [[-118.41234565779162, 34.63078851028207], [-118.41225093641265, 34.62720171601253], [-118.42102502507537, 34.627254939511026], [-118.42093866985638, 34.624802064853164], [-118.42985275334088, 34.62147511041281], [-118.42979519628157, 34.61639452789538], [-118.434461220097, 34.61637027746956], [-118.43445306169242, 34.615293212409824], [-118.43629832135102, 34.61528344484679], [-118.4362870396065, 34.61379921811665], [-118.43824802317089, 34.61283715764544], [-118.43797279455374, 34.60922931358011], [-118.42987054120378, 34.60923586590669], [-118.42975374003514, 34.61280631305668], [-118.41635359724984, 34.61281642293858], [-118.41642183155668, 34.61638490188102], [-118.41221354693887, 34.61636841150878], [-118.41128739234487, 34.60925022555681], [-118.3946982970034, 34.60917018758794], [-118.39463446252995, 34.616394755783624], [-118.39022514704162, 34.616388159004245], [-118.39018514376424, 34.62349824934721], [-118.3945628169649, 34.62348879362937], [-118.39449164996637, 34.6305814496146], [-118.40329289450843, 34.63084472740236], [-118.41234565779162, 34.63078851028207]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Castaic Canyons", "population": null, "cases": null, "resource_uri": "/1.0/boundary/castaic-canyons-la-county-neighborhood-current/", "external_id": "castaic-canyons", "slug": "castaic-canyons-la-county-neighborhood-current", "metadata": {"sqmi": 192.702636576, "type": "unincorporated-area", "name": "Castaic Canyons", "slug": "castaic-canyons"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.63936124998374, 34.51543067978628], [-118.63916280507458, 34.51527616619625], [-118.63892379927942, 34.51536450425173], [-118.63845582276828, 34.51492832049645], [-118.63799971885547, 34.514966166103726], [-118.63642762759619, 34.512552152008524], [-118.63654444380006, 34.51249553806917], [-118.63598143920673, 34.51162295573024], [-118.63621560692009, 34.511519342460716], [-118.63576650892743, 34.51083389816561], [-118.63526678261819, 34.51083357370493], [-118.63436040256609, 34.50900788868631], [-118.63320219993415, 34.5080171106167], [-118.63343298993657, 34.50786738322758], [-118.63279476027965, 34.50716763580372], [-118.62211151232559, 34.507223144708135], [-118.6203172721885, 34.50548140708759], [-118.61842241436109, 34.506220600573144], [-118.61767053905164, 34.50628672296425], [-118.61690534585281, 34.50593110684916], [-118.61692000113601, 34.50446050131412], [-118.61795601157966, 34.504495379219314], [-118.61863647474472, 34.50384910090503], [-118.61892730389535, 34.50322813456262], [-118.61814241305626, 34.502934536954], [-118.61646303856394, 34.49822410076037], [-118.61683541067443, 34.49321025214219], [-118.62223996552973, 34.492702532517896], [-118.62126847732046, 34.491106120363675], [-118.62134276592064, 34.4885608628269], [-118.62122034222276, 34.48815205349322], [-118.62056027498751, 34.48768609011086], [-118.61902787786681, 34.487548990163916], [-118.61898862868989, 34.485408555661635], [-118.62116455705535, 34.48539980356397], [-118.62108994389628, 34.48174702750116], [-118.61520611719355, 34.48177396811336], [-118.61500302483445, 34.480223647686145], [-118.61506238599408, 34.47846722364118], [-118.61646815138315, 34.47200471360351], [-118.61778230055407, 34.47184249997066], [-118.61847909185923, 34.47211483004655], [-118.61773852741835, 34.47179213475051], [-118.61653570434228, 34.47178058161353], [-118.61724960319158, 34.468487146318374], [-118.61730182179248, 34.467009996367416], [-118.61954615107894, 34.46720245376527], [-118.61967805788083, 34.46629643158183], [-118.61900843439874, 34.466046767095804], [-118.61931782869948, 34.46530825810431], [-118.61860514245245, 34.46484321174772], [-118.61775855091075, 34.465896863046346], [-118.61700925882981, 34.46404667019377], [-118.61622307486508, 34.463805469655384], [-118.61587087613016, 34.46242033913089], [-118.61582131077213, 34.46092669730892], [-118.61614394327283, 34.45937123356964], [-118.61722856019516, 34.45787157996231], [-118.61748361064195, 34.45797525223299], [-118.6178797474495, 34.45752851639631], [-118.61845257194652, 34.45727466025373], [-118.61953617259907, 34.457364128025155], [-118.6196158852021, 34.45674390451144], [-118.62005677156924, 34.45584482164597], [-118.6213704762824, 34.455089217024955], [-118.62103650532, 34.454749005174676], [-118.61944051640499, 34.45546702800357], [-118.61779342434282, 34.45575298814896], [-118.61667887765284, 34.45427273283133], [-118.61703286545502, 34.452285192256475], [-118.61689852820065, 34.45138659847386], [-118.61785542506973, 34.449990716011186], [-118.61870552933654, 34.449061193305575], [-118.61883020615502, 34.44768034298696], [-118.62140745718331, 34.446936339234426], [-118.62355410607178, 34.448343160595314], [-118.62378862424988, 34.4522312499704], [-118.6241886215053, 34.45278586751856], [-118.62575140424316, 34.451165758471774], [-118.63077237980292, 34.4528880851518], [-118.6349225586595, 34.45613993200198], [-118.63657882168457, 34.45696884248467], [-118.63846569097105, 34.457357897186014], [-118.64262106997685, 34.45727828392202], [-118.64527559644658, 34.4580313572231], [-118.64534579344603, 34.45817678742956], [-118.64748039561744, 34.45907123540406], [-118.64887010805842, 34.45945648764872], [-118.6497416093069, 34.459430143387976], [-118.6497463011086, 34.46002300595639], [-118.64535411778773, 34.45999021612978], [-118.64538578275082, 34.46725432211406], [-118.64980648670902, 34.46726697219288], [-118.65067468760626, 34.47454181573773], [-118.65169570014407, 34.47454484928101], [-118.65139075903231, 34.477767254873704], [-118.6513140597724, 34.47818218061476], [-118.65111217490944, 34.47818128657047], [-118.65154886795871, 34.48182075767659], [-118.64284203003172, 34.481796149037805], [-118.643096315977, 34.49271235614901], [-118.63003986567593, 34.4926984378849], [-118.63012480698447, 34.49634705965063], [-118.62781743658375, 34.49634846200512], [-118.6278183501601, 34.497314230650865], [-118.62808483912619, 34.49808017296587], [-118.62847947009791, 34.498224868523465], [-118.62859566665668, 34.498180437842805], [-118.62853284668178, 34.497834556645785], [-118.62900744492052, 34.49784031439963], [-118.62940224423005, 34.49827485295406], [-118.62973677371647, 34.498323515048995], [-118.63146427920373, 34.4978783695836], [-118.63211083294728, 34.497232492937435], [-118.63247608435995, 34.49752010855625], [-118.63308972660292, 34.49766697288239], [-118.6339617399341, 34.49837376883295], [-118.63404470553277, 34.49959208049052], [-118.63144408261913, 34.50015065009351], [-118.63036313958482, 34.50092122482144], [-118.63031098860803, 34.501424167278955], [-118.6322755157313, 34.504138183213335], [-118.6316633442705, 34.50446660972265], [-118.63247684722712, 34.50550736939287], [-118.6329770710197, 34.50523687104469], [-118.63306988812268, 34.50543860451466], [-118.63533294056182, 34.50552100899098], [-118.63579474370327, 34.50564491231973], [-118.63577566568485, 34.50593702989988], [-118.63726050996567, 34.50620549118244], [-118.63736389982537, 34.50617403480643], [-118.63716772401699, 34.50579679038477], [-118.63765893510309, 34.50579421167156], [-118.63888216475837, 34.506535783929195], [-118.63888626933603, 34.50721306264498], [-118.63933774405231, 34.507213296209564], [-118.63928564083274, 34.507512925860176], [-118.63903271110452, 34.50748639661552], [-118.63896211011352, 34.508132766630695], [-118.6366941508092, 34.5079611759781], [-118.63658013221021, 34.50837835404414], [-118.63705040176072, 34.50844376074915], [-118.6371179444342, 34.50876782161785], [-118.63880906292567, 34.509038039544244], [-118.63942833802002, 34.508501497533395], [-118.64039904680152, 34.509269253045794], [-118.64348059560706, 34.51507725025385], [-118.64266178190435, 34.51523992058791], [-118.64288279486698, 34.51586958277141], [-118.64173536167299, 34.51656320140545], [-118.63936124998374, 34.51543067978628]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Castaic", "population": 0.27192386131883073, "cases": 20.0, "resource_uri": "/1.0/boundary/castaic-la-county-neighborhood-current/", "external_id": "castaic", "slug": "castaic-la-county-neighborhood-current", "metadata": {"sqmi": 5.476575183, "type": "unincorporated-area", "name": "Castaic", "slug": "castaic"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.2433060000001, 34.02071299912436], [-118.23950600000016, 34.0200129991243], [-118.239745, 34.01349399912444], [-118.239593, 34.0088869991245], [-118.23791800000012, 33.98939299912469], [-118.25643597484513, 33.989498000008], [-118.256506, 33.98921506329079], [-118.256406, 33.99881399912459], [-118.25650700000011, 34.01471299912435], [-118.254407, 34.01991299912431], [-118.25410700000012, 34.020512999124335], [-118.25050700000011, 34.02451299912422], [-118.246006, 34.021912999124304], [-118.24400600000013, 34.02091299912429], [-118.2433060000001, 34.02071299912436]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Central-Alameda", "population": 0.5199834047849536, "cases": 188.0, "resource_uri": "/1.0/boundary/central-alameda-la-county-neighborhood-current/", "external_id": "central-alameda", "slug": "central-alameda-la-county-neighborhood-current", "metadata": {"sqmi": 2.18269484806, "type": "segment-of-a-city", "name": "Central-Alameda", "slug": "central-alameda"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.41442789354493, 34.06444100521822], [-118.413514, 34.06316499912383], [-118.414166, 34.06284099912377], [-118.41220400000016, 34.060100999123875], [-118.411551, 34.06042499912388], [-118.40595400000011, 34.05262599912396], [-118.417111, 34.04620999912391], [-118.42151200000018, 34.0512089991238], [-118.421612, 34.0523089991239], [-118.42271200000013, 34.053308999123985], [-118.423212, 34.05530899912395], [-118.4239120000001, 34.05710899912385], [-118.424212, 34.057508999123755], [-118.41442789354493, 34.06444100521822]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Century City", "population": 0.1279208596281767, "cases": 30.0, "resource_uri": "/1.0/boundary/century-city-la-county-neighborhood-current/", "external_id": "century-city", "slug": "century-city-la-county-neighborhood-current", "metadata": {"sqmi": 0.700611362635, "type": "segment-of-a-city", "name": "Century City", "slug": "century-city"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.03782900000017, 33.88739699912591], [-118.03326400000023, 33.88492099912605], [-118.02889000000019, 33.882797999126105], [-118.028709, 33.86622199912628], [-118.03762500000015, 33.86600699912627], [-118.03753900000011, 33.8625129991263], [-118.041997, 33.862413999126396], [-118.04175300000013, 33.85870199912643], [-118.04620600000014, 33.85867899912629], [-118.046086, 33.853509999126494], [-118.04979700000018, 33.85361499912653], [-118.0505970000002, 33.853514999126446], [-118.05049300000019, 33.85069599912652], [-118.05070300000015, 33.84991599912639], [-118.05539200000017, 33.84980599912646], [-118.05471100000013, 33.84967699912649], [-118.05470000000021, 33.846218999126506], [-118.05960500000026, 33.84639699912659], [-118.062393, 33.846160999126504], [-118.081981, 33.84600599912656], [-118.082027, 33.85013299912645], [-118.0835120000002, 33.85018799912647], [-118.08653300000017, 33.850125999126355], [-118.08680400000013, 33.84596899912648], [-118.09893900000017, 33.845874999126565], [-118.1000850000001, 33.84827599912654], [-118.10278800000027, 33.85831999912643], [-118.10391000000021, 33.85831299912632], [-118.10394400000017, 33.85851999912636], [-118.10574700000032, 33.85851299912631], [-118.10636200000013, 33.85829699912642], [-118.108316, 33.8582829991263], [-118.10853900000012, 33.87290399912619], [-118.10676900000014, 33.872942999126245], [-118.1085140000002, 33.879562999126094], [-118.10856600000012, 33.887050999125925], [-118.10437200000013, 33.88700699912595], [-118.10440000000014, 33.887522999126055], [-118.10425300000014, 33.88760999912601], [-118.10051700000024, 33.887533999126], [-118.10050500000018, 33.887076999126016], [-118.09988400000015, 33.88706899912604], [-118.0998880000001, 33.887536999126056], [-118.09552900000013, 33.88756699912602], [-118.09571000000018, 33.88031199912615], [-118.08770700000014, 33.88033899912615], [-118.0877170000002, 33.87675199912617], [-118.091167, 33.876648999126196], [-118.09128700000018, 33.876414999126204], [-118.09101000000025, 33.87453199912623], [-118.09090100000012, 33.861312999126305], [-118.09039800000015, 33.8613169991264], [-118.09031300000014, 33.86010799912639], [-118.08639700000015, 33.8599889991264], [-118.08670300000011, 33.858422999126404], [-118.08669000000025, 33.856314999126376], [-118.08209400000015, 33.85621899912645], [-118.08211800000022, 33.85845399912641], [-118.08299900000017, 33.85844799912638], [-118.08278200000018, 33.85932099912635], [-118.08212800000011, 33.85931999912636], [-118.08211200000022, 33.86037199912636], [-118.07497200000016, 33.855989999126386], [-118.07492900000017, 33.857070999126464], [-118.07228700000016, 33.856939999126375], [-118.07223700000021, 33.85432499912644], [-118.07074600000014, 33.85340899912641], [-118.06891500000016, 33.85342299912643], [-118.06900700000011, 33.85855699912639], [-118.07113300000027, 33.858535999126275], [-118.07100600000018, 33.859142999126405], [-118.07112600000012, 33.86039299912631], [-118.0708230000002, 33.86031499912639], [-118.07013600000018, 33.860718999126384], [-118.07046900000033, 33.862153999126186], [-118.07026300000017, 33.86972699912622], [-118.07250200000021, 33.8696939991263], [-118.07250400000021, 33.8698209991263], [-118.07031100000023, 33.8698339991262], [-118.07027000000019, 33.87311199912628], [-118.08004300000019, 33.87305399912623], [-118.080066, 33.8752609991262], [-118.07741800000014, 33.8764709991261], [-118.07812800000022, 33.87675799912615], [-118.07498500000027, 33.87680599912615], [-118.07502400000014, 33.87962299912605], [-118.07489500000011, 33.88038299912613], [-118.07270800000029, 33.88039199912627], [-118.07283200000028, 33.88615099912607], [-118.06848300000031, 33.886022999126034], [-118.06846900000018, 33.88771099912609], [-118.06409400000015, 33.887723999126116], [-118.06408500000022, 33.887164999126064], [-118.05537600000018, 33.88721599912604], [-118.055385, 33.88778899912604], [-118.03884300000023, 33.88790999912599], [-118.03782900000017, 33.88739699912591]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Cerritos", "population": 0.5006872177498527, "cases": 51.0, "resource_uri": "/1.0/boundary/cerritos-la-county-neighborhood-current/", "external_id": "cerritos", "slug": "cerritos-la-county-neighborhood-current", "metadata": {"sqmi": 8.85825545795, "type": "standalone-city", "name": "Cerritos", "slug": "cerritos"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.86379698568639, 34.10666800427394], [-117.83764099046479, 34.1066110044204], [-117.83765198481088, 34.09728700076394], [-117.83992097972111, 34.09611800640663], [-117.83990098571091, 34.09943400244614], [-117.84005097852317, 34.099833001054606], [-117.83965099294187, 34.099850002818], [-117.83973899284968, 34.10123700330201], [-117.84200098561192, 34.10121600023179], [-117.84190197142429, 34.09941500576913], [-117.84227398555379, 34.09580100243831], [-117.84418497863714, 34.095818001359966], [-117.84417597979002, 34.09887000648508], [-117.84386198572736, 34.09891200404707], [-117.84382498571362, 34.09940600410821], [-117.84636597857305, 34.099419001616155], [-117.84636497887782, 34.10014600503732], [-117.84564698545876, 34.10038900171236], [-117.84564698569226, 34.10154500420121], [-117.8463549786059, 34.10155400148137], [-117.8463539857148, 34.103036004112106], [-117.8479959785838, 34.103041001574994], [-117.84796597856294, 34.10396900162387], [-117.84718198553922, 34.10402700578785], [-117.8471579786299, 34.104640000795584], [-117.8463659857535, 34.10466100392322], [-117.84636698573088, 34.10491800404015], [-117.84826497854982, 34.10489900172602], [-117.8482699999753, 34.10539916340791], [-117.84834998572752, 34.10304100406204], [-117.8523469857092, 34.103048999880436], [-117.85234198573272, 34.10250200405129], [-117.85269197855821, 34.10249900171001], [-117.8528389714384, 34.102577005775885], [-117.85283998570591, 34.10305200416878], [-117.85438998559157, 34.10304500006785], [-117.85428698583743, 34.10168800521508], [-117.8550849857477, 34.10170799968725], [-117.8550639857456, 34.09781000399834], [-117.85636297854792, 34.09779000178165], [-117.85632298571785, 34.09939800412894], [-117.86157097859515, 34.09942400159053], [-117.8616039857294, 34.10304000409759], [-117.86465797858253, 34.10303600165665], [-117.86479398578618, 34.10330800380288], [-117.86600498547294, 34.10325700040013], [-117.86601698570827, 34.101538004197245], [-117.86782598581138, 34.101545999656125], [-117.86778298573022, 34.09942200411234], [-117.87005398575843, 34.099420999877594], [-117.87009198570591, 34.09575500516969], [-117.87049298571671, 34.095753000147035], [-117.87049198573281, 34.09509500410862], [-117.8724619857077, 34.094999000474495], [-117.87246498576226, 34.09400400397784], [-117.87292098578946, 34.09399500017376], [-117.8729399857788, 34.093586003888916], [-117.87635197853966, 34.09348200194407], [-117.87639297860514, 34.09572200078581], [-117.872460985754, 34.0957290040197], [-117.87245897866299, 34.096451999694786], [-117.87167798570806, 34.09641900514698], [-117.87169398565635, 34.09731500439084], [-117.87247597871618, 34.09734600119783], [-117.87250197857752, 34.09880000006691], [-117.87143198596054, 34.098774005684845], [-117.87151597857023, 34.09997300127877], [-117.87127098581095, 34.09998800363694], [-117.87123698559517, 34.100402004567314], [-117.87248698579604, 34.10048099931512], [-117.87249898571352, 34.09943500494486], [-117.87739897860527, 34.09942400161877], [-117.87736197868044, 34.10306399984335], [-117.87250198572741, 34.10306100501808], [-117.87250897865113, 34.10470899987413], [-117.87038898567249, 34.1046430043382], [-117.87043798577463, 34.10434200390234], [-117.87079198584692, 34.10434099961213], [-117.87081198585707, 34.10389400036628], [-117.87046298560585, 34.10387300453901], [-117.87049598573145, 34.10304300078776], [-117.8692979856927, 34.103035004392524], [-117.86919497863825, 34.10478800151568], [-117.86818098574628, 34.104810004043266], [-117.86815498546682, 34.105882004866515], [-117.86919697871132, 34.105940001199336], [-117.86919998089097, 34.10646500102042], [-117.86379698568639, 34.10666800427394]], [[-117.85508197144165, 34.10250800577629], [-117.8550839857171, 34.10214800080326], [-117.85465498572457, 34.10214900409613], [-117.85463898571675, 34.102651004129314], [-117.85508198572275, 34.10265199993085], [-117.85508197144165, 34.10250800577629]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Charter Oak", "population": 0.13144590495449948, "cases": 13.0, "resource_uri": "/1.0/boundary/charter-oak-la-county-neighborhood-current/", "external_id": "charter-oak", "slug": "charter-oak-la-county-neighborhood-current", "metadata": {"sqmi": 0.921541249085, "type": "unincorporated-area", "name": "Charter Oak", "slug": "charter-oak"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.58509099991984, 34.30347799919912], [-118.57176199992755, 34.29861899923004], [-118.571578999896, 34.29794999932509], [-118.5710169999807, 34.296930999034586], [-118.5701590001585, 34.295803999043734], [-118.572476, 34.29467699912104], [-118.57033200000016, 34.28698899912099], [-118.569577, 34.27999999912114], [-118.569535, 34.275454999121216], [-118.55982, 34.2745019991212], [-118.559484, 34.27403499912135], [-118.557959, 34.273449999121155], [-118.556651, 34.27121399912134], [-118.556702, 34.26697499912122], [-118.55695700000017, 34.26644199912128], [-118.55672, 34.26620199912139], [-118.55672, 34.26550199912127], [-118.55852, 34.26320199912134], [-118.55782, 34.25900199912152], [-118.55872000000012, 34.25720199912154], [-118.55842000000013, 34.25720199912154], [-118.55982, 34.25550199912147], [-118.55964700000014, 34.253408999121476], [-118.56222, 34.24900299912151], [-118.56282, 34.248402999121524], [-118.56342000000015, 34.24710299912152], [-118.56452, 34.2425029991216], [-118.56432, 34.23530299912171], [-118.56342000000015, 34.234802999121804], [-118.56322, 34.234102999121674], [-118.57102100000012, 34.23558199912164], [-118.57102000000013, 34.231502999121666], [-118.58036200000012, 34.23149999912173], [-118.580705, 34.2316319991218], [-118.580938, 34.231993999121705], [-118.581068, 34.234351999121664], [-118.581418, 34.234887999121696], [-118.58231900000013, 34.23527099912172], [-118.604821, 34.235302999121664], [-118.604949, 34.235545999121754], [-118.60765354766113, 34.23769560681683], [-118.60914727963052, 34.238621630574016], [-118.61060541048782, 34.238867886769924], [-118.61292560466912, 34.238153871179414], [-118.61626366265062, 34.238507572068], [-118.61811764783995, 34.23828352960979], [-118.62011602973863, 34.23852691095383], [-118.62091854883687, 34.23904951246072], [-118.62134671277168, 34.23976911116555], [-118.62137818765608, 34.24084188968266], [-118.62188905567744, 34.24250299924526], [-118.625421, 34.24040299912175], [-118.63023500000013, 34.23924099912181], [-118.629945, 34.23872299912175], [-118.6304780060361, 34.238556985864925], [-118.630725, 34.237771999121854], [-118.63146295259078, 34.237018047559225], [-118.64698115168137, 34.238081976016446], [-118.64971200001935, 34.22711500225083], [-118.65286100308413, 34.22711074544825], [-118.652862, 34.22735199912176], [-118.653292, 34.22734899912189], [-118.653291, 34.227109999121836], [-118.65404708247469, 34.22710902341229], [-118.65407200000013, 34.22468799912179], [-118.658735, 34.22457799912178], [-118.65930800000012, 34.22221199912178], [-118.65975200000017, 34.22114899912195], [-118.65981700000015, 34.218085999121875], [-118.659205, 34.21691799912181], [-118.6589590000002, 34.21594599912199], [-118.655916, 34.215945999121956], [-118.6546200000002, 34.216417999121894], [-118.65237500000016, 34.216418999121935], [-118.65324107201008, 34.212945997571374], [-118.66277077198214, 34.21292340088551], [-118.66276400000015, 34.209342999122036], [-118.667796, 34.20932899912203], [-118.66773800000023, 34.21211199912197], [-118.668058, 34.22398799912191], [-118.6675460000001, 34.240402999121685], [-118.64807400000021, 34.24043499912167], [-118.6375010000001, 34.24027199912156], [-118.635787, 34.240505999121616], [-118.63249500000018, 34.24042599912177], [-118.63251000497867, 34.2582690037844], [-118.63229897780433, 34.26356698772205], [-118.6332486404081, 34.26968305703512], [-118.62874600009418, 34.27330399931528], [-118.62686299999649, 34.274378999198845], [-118.62521199988572, 34.27503299931598], [-118.62257099974576, 34.27564199930243], [-118.60733600023481, 34.27774399889798], [-118.6059840001408, 34.27778299911409], [-118.6043390001363, 34.27752299891747], [-118.5962079999324, 34.274520999236394], [-118.5937230000746, 34.27718399913047], [-118.59257199980426, 34.278036999247284], [-118.59199700016823, 34.27918499928423], [-118.59169900025265, 34.280229998907146], [-118.59190899992912, 34.28062699923555], [-118.59217000012926, 34.282356999165444], [-118.59101399979654, 34.28243699909401], [-118.59108600000225, 34.28364099900939], [-118.59127200025249, 34.283833998996215], [-118.59176399992964, 34.285572999225096], [-118.59196700022063, 34.286853999310125], [-118.59163599984952, 34.28770399922698], [-118.59118000012269, 34.29179699926832], [-118.5909380001942, 34.29766999910409], [-118.58853300000119, 34.30321899914454], [-118.5868779999033, 34.3031499989456], [-118.58509099991984, 34.30347799919912]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Chatsworth", "population": 0.3870446498839079, "cases": 93.0, "resource_uri": "/1.0/boundary/chatsworth-la-county-neighborhood-current/", "external_id": "chatsworth", "slug": "chatsworth-la-county-neighborhood-current", "metadata": {"sqmi": 15.2435966589, "type": "segment-of-a-city", "name": "Chatsworth", "slug": "chatsworth"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.62091854883687, 34.23904951246072], [-118.62011602973863, 34.23852691095383], [-118.61811764783995, 34.23828352960979], [-118.61626366265062, 34.238507572068], [-118.61292560466912, 34.238153871179414], [-118.61060541048782, 34.238867886769924], [-118.60914727963052, 34.238621630574016], [-118.60765354766113, 34.23769560681683], [-118.604949, 34.235545999121754], [-118.604821, 34.235302999121664], [-118.61021900000014, 34.235222999121824], [-118.61055300000014, 34.234986999121745], [-118.610792, 34.23445999912178], [-118.611323, 34.23388899912171], [-118.612519, 34.2331639991219], [-118.614061, 34.231715999121775], [-118.61496400000016, 34.23138599912181], [-118.61584100000016, 34.22776399912188], [-118.61624, 34.22714899912192], [-118.625314, 34.227948999121836], [-118.62595, 34.22783999912187], [-118.626563, 34.227458999121794], [-118.628031, 34.226171999121775], [-118.629872, 34.225210999121906], [-118.631221, 34.22470299912194], [-118.6366600000001, 34.22446399912191], [-118.6428680000001, 34.22364199912186], [-118.643415, 34.2239689991219], [-118.647094, 34.2239689991219], [-118.64696000000012, 34.22944999912187], [-118.647105, 34.22955399912183], [-118.64713400000012, 34.23049499912179], [-118.647502, 34.230869999121786], [-118.648034, 34.23098699912177], [-118.6488460000001, 34.230254999121875], [-118.64872200000015, 34.22960299912184], [-118.64908551423557, 34.22963270231993], [-118.64698115168137, 34.238081976016446], [-118.63146295259078, 34.237018047559225], [-118.630725, 34.237771999121854], [-118.6304780060361, 34.238556985864925], [-118.629945, 34.23872299912175], [-118.63023500000013, 34.23924099912181], [-118.625421, 34.24040299912175], [-118.6219210000001, 34.242502999121655], [-118.62137818765608, 34.24084188968266], [-118.62134671277168, 34.23976911116555], [-118.62091854883687, 34.23904951246072]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Chatsworth Reservoir", "population": null, "cases": null, "resource_uri": "/1.0/boundary/chatsworth-reservoir-la-county-neighborhood-current/", "external_id": "chatsworth-reservoir", "slug": "chatsworth-reservoir-la-county-neighborhood-current", "metadata": {"sqmi": 1.8010929772, "type": "segment-of-a-city", "name": "Chatsworth Reservoir", "slug": "chatsworth-reservoir"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.308908, 33.9930129991246], [-118.3090080000001, 33.98891299912483], [-118.308808, 33.98661299912474], [-118.308907, 33.97441299912499], [-118.31760800000012, 33.97441299912493], [-118.317508, 33.98171299912489], [-118.31760800000012, 33.98891299912483], [-118.31710800000018, 33.988912999124764], [-118.317108, 33.9930129991246], [-118.311308, 33.993112999124776], [-118.308908, 33.9930129991246]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Chesterfield Square", "population": null, "cases": null, "resource_uri": "/1.0/boundary/chesterfield-square-la-county-neighborhood-current/", "external_id": "chesterfield-square", "slug": "chesterfield-square-la-county-neighborhood-current", "metadata": {"sqmi": 0.633386374403, "type": "segment-of-a-city", "name": "Chesterfield Square", "slug": "chesterfield-square"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.400911, 34.02990999912417], [-118.401211, 34.029409999124226], [-118.40591100000012, 34.02980999912429], [-118.41121100000011, 34.03080999912419], [-118.414799, 34.03228199912421], [-118.41611100000011, 34.03320999912413], [-118.418411, 34.03620999912418], [-118.4214110000001, 34.03710999912423], [-118.421511, 34.03740999912408], [-118.42331100000011, 34.03950999912405], [-118.423711, 34.04030999912415], [-118.4248120000001, 34.041809999123984], [-118.406541, 34.05229699912386], [-118.401531, 34.0519669991239], [-118.402553, 34.04635299912396], [-118.39885900000017, 34.0454799991239], [-118.399011, 34.043809999123965], [-118.398711, 34.04370999912402], [-118.398511, 34.041209999124064], [-118.39921100000014, 34.039709999124135], [-118.398111, 34.03570999912416], [-118.399911, 34.03130999912419], [-118.400911, 34.02990999912417]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Cheviot Hills", "population": 0.09170847494200787, "cases": 17.0, "resource_uri": "/1.0/boundary/cheviot-hills-la-county-neighborhood-current/", "external_id": "cheviot-hills", "slug": "cheviot-hills-la-county-neighborhood-current", "metadata": {"sqmi": 1.53643338074, "type": "segment-of-a-city", "name": "Cheviot Hills", "slug": "cheviot-hills"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.22510599999983, 34.07190999912357], [-118.224806, 34.07060999912362], [-118.2247059999999, 34.06771099912363], [-118.22700599999983, 34.06231099912373], [-118.22710599999989, 34.0618109991237], [-118.22650599999983, 34.05673099912389], [-118.22663399999986, 34.055754999123735], [-118.22730599999984, 34.05511099912374], [-118.22980599999983, 34.056110999123796], [-118.23770599999985, 34.05841099912366], [-118.23950699999982, 34.05841099912366], [-118.240207, 34.05871099912377], [-118.244607, 34.06131099912378], [-118.24930699999989, 34.06531099912365], [-118.24910699999988, 34.06551099912359], [-118.24850699999983, 34.06541099912367], [-118.24770699999982, 34.06581099912384], [-118.245807, 34.06881099912376], [-118.244407, 34.06981099912365], [-118.241807, 34.06771099912374], [-118.24030699999987, 34.06711099912356], [-118.239807, 34.06761099912359], [-118.2392069999998, 34.067810999123566], [-118.23590599999977, 34.06691099912358], [-118.235406, 34.06741099912367], [-118.23000599999988, 34.07111099912354], [-118.22690599999973, 34.07180999912373], [-118.22510599999983, 34.07190999912357]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Chinatown", "population": 0.08020675519115944, "cases": 9.0, "resource_uri": "/1.0/boundary/chinatown-la-county-neighborhood-current/", "external_id": "chinatown", "slug": "chinatown-la-county-neighborhood-current", "metadata": {"sqmi": 0.909367075497, "type": "segment-of-a-city", "name": "Chinatown", "slug": "chinatown"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.88944300000027, 34.112588999123275], [-117.89021845734264, 34.11257605901443], [-117.89021008673184, 34.113318006994724], [-117.88943200000026, 34.113319999123284], [-117.88944300000027, 34.112588999123275]]], [[[-117.90332800000029, 34.11104499912336], [-117.90339900000029, 34.11066699912336], [-117.90153700000027, 34.11073299912333], [-117.90159800000026, 34.114201999123345], [-117.89983159773675, 34.11419556741183], [-117.89984700000014, 34.11390099912332], [-117.89949500000024, 34.113906999123216], [-117.89963100000035, 34.10889799912341], [-117.90059400000032, 34.10889899912339], [-117.90059400000032, 34.10821799912335], [-117.90352900000022, 34.10808399912338], [-117.9059674260114, 34.106746884212946], [-117.90755700000017, 34.1067509991234], [-117.9075600000002, 34.10762299912334], [-117.90538500000025, 34.10776199912322], [-117.90542400000025, 34.11422799912328], [-117.90370800000026, 34.114229999123246], [-117.90371200000025, 34.11352999912334], [-117.90331600000029, 34.113499999123235], [-117.90332800000029, 34.11104499912336]]], [[[-117.88130698582941, 34.127070003178034], [-117.88129198564053, 34.126817001763825], [-117.87930898574004, 34.12683900411299], [-117.87925498572159, 34.125101000849384], [-117.87716898571655, 34.125104004203806], [-117.8771649858985, 34.124744000268485], [-117.876767985566, 34.12471400466507], [-117.87716698392724, 34.12434000500397], [-117.88035298571722, 34.12433700000827], [-117.8803569857263, 34.12143900417299], [-117.88137098575272, 34.12144300016416], [-117.88147698571103, 34.10740900423193], [-117.88238598577442, 34.10742299979245], [-117.88239498574355, 34.106642000770954], [-117.88148998573857, 34.106646998113305], [-117.8791079714738, 34.10596900578659], [-117.87874498555469, 34.105853997798654], [-117.87875698583237, 34.10549000323672], [-117.88039298564232, 34.10529000167258], [-117.88039699993736, 34.105416002704594], [-117.88148598564347, 34.105415001692435], [-117.88148900008947, 34.106140999567025], [-117.88290998569497, 34.10585500223349], [-117.88288800002181, 34.1066390023606], [-117.88328998662293, 34.10670800095382], [-117.88687798103996, 34.10676600040382], [-117.8868889857552, 34.10844800406585], [-117.89024297146246, 34.10842100257284], [-117.89023497148762, 34.110574005795115], [-117.89670798592573, 34.108604003269186], [-117.89894997850928, 34.108229003432], [-117.89889897149877, 34.1133080058007], [-117.89942497149876, 34.11537600580345], [-117.89938897127038, 34.12099400175532], [-117.89462598638649, 34.1208910013769], [-117.89233398666042, 34.120544001802706], [-117.89123197148591, 34.119840005807326], [-117.8901629852886, 34.119628005231135], [-117.89019898579478, 34.114719003867314], [-117.89112398574058, 34.11468500035102], [-117.89113198576995, 34.11414400068838], [-117.89079098571776, 34.11413900423483], [-117.89071198569569, 34.113615001034695], [-117.89020898579162, 34.113632003887616], [-117.89023498580701, 34.111527000556585], [-117.88830998621948, 34.111463005591276], [-117.88480198455714, 34.113138000514226], [-117.88479897136489, 34.114350001670935], [-117.88438298579545, 34.11436700383616], [-117.88436897147712, 34.117697005802896], [-117.88467997147713, 34.11878000580443], [-117.88453898576611, 34.12144800400656], [-117.88933997861209, 34.12140300163036], [-117.88938298568553, 34.12163100434811], [-117.88985397869651, 34.12164500131517], [-117.88989198561566, 34.12189600456002], [-117.890140978802, 34.12191100099794], [-117.89012097857365, 34.12406100138801], [-117.88921398581748, 34.124118003687364], [-117.889198985758, 34.12438900406371], [-117.88985098577615, 34.124382000073815], [-117.88985498575467, 34.12423500408107], [-117.89009597145595, 34.124233002586564], [-117.8901159714032, 34.12465900287322], [-117.88968198583535, 34.12470100344176], [-117.88969497853898, 34.12508700070184], [-117.88573798574826, 34.125093004096826], [-117.88573097152029, 34.12706300008124], [-117.88130698582941, 34.127070003178034]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Citrus", "population": null, "cases": null, "resource_uri": "/1.0/boundary/citrus-la-county-neighborhood-current/", "external_id": "citrus", "slug": "citrus-la-county-neighborhood-current", "metadata": {"sqmi": 1.01155085149, "type": "unincorporated-area", "name": "Citrus", "slug": "citrus"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.75580626049015, 34.165320277901984], [-117.72488934305406, 34.16491793848483], [-117.72488900000012, 34.16530599912259], [-117.715968, 34.16524399912261], [-117.71578700000015, 34.15813599912282], [-117.70628500000016, 34.158446999122674], [-117.703106, 34.15826199912271], [-117.702572, 34.15437899912272], [-117.69205200000012, 34.15364099912268], [-117.6920070000003, 34.15349199912284], [-117.6873560000002, 34.154428999122764], [-117.68707600000016, 34.15357299912279], [-117.68662600000013, 34.153456999122916], [-117.684295, 34.155850999122684], [-117.684024, 34.15655099912276], [-117.68383500000012, 34.15798199912264], [-117.682572, 34.15975699912284], [-117.68255800000016, 34.16066199912275], [-117.68378500000017, 34.16064899912271], [-117.68373000000014, 34.15989299912282], [-117.68551200000016, 34.1578369991227], [-117.698276, 34.15795199912272], [-117.69807200000011, 34.16499399912263], [-117.677745, 34.16479899912266], [-117.68134600000025, 34.15700099912272], [-117.682868, 34.155182999122744], [-117.686388, 34.142707999122884], [-117.68718800000012, 34.13890799912297], [-117.6935880000001, 34.1215089991231], [-117.70247900000012, 34.09953299912343], [-117.70299000000016, 34.09885699912349], [-117.704595, 34.095114999123396], [-117.70429000000016, 34.09505499912341], [-117.70472500000015, 34.09395699912345], [-117.71106700000018, 34.079535999123756], [-117.72799700000013, 34.079409999123584], [-117.72798200000015, 34.09035899912352], [-117.7319900000002, 34.09027899912359], [-117.73197600000022, 34.09398599912348], [-117.73252300000017, 34.098728999123445], [-117.736794, 34.09885799912345], [-117.736809, 34.111114999123274], [-117.73751800000021, 34.111223999123304], [-117.73804800000013, 34.11088799912335], [-117.73906600000016, 34.110824999123224], [-117.73888700000019, 34.10834999912323], [-117.73978400000018, 34.10820099912334], [-117.741192, 34.10819399912328], [-117.74132100000016, 34.108574999123334], [-117.74210400000023, 34.108603999123325], [-117.74208100000018, 34.110891999123254], [-117.74656800000015, 34.11118799912331], [-117.74852800000015, 34.11106499912315], [-117.74855000000011, 34.11285399912323], [-117.74994700000023, 34.11293599912327], [-117.74991300000015, 34.11138899912326], [-117.74974700000018, 34.111289999123215], [-117.74963800000013, 34.11073999912332], [-117.75071300000016, 34.110894999123275], [-117.7507690000003, 34.12067399912311], [-117.755192, 34.12068299912316], [-117.7550710000002, 34.11931399912323], [-117.759794, 34.11944499912324], [-117.75969700000019, 34.12952999912306], [-117.750242, 34.12942399912305], [-117.75009300000015, 34.13032699912309], [-117.75036900000012, 34.132380999122965], [-117.7488450000001, 34.132407999123], [-117.7487840000002, 34.13328699912292], [-117.74813800000014, 34.13468899912292], [-117.747667, 34.13756599912299], [-117.74768700000011, 34.14015799912295], [-117.749659, 34.14111899912281], [-117.75018, 34.141133999122935], [-117.75015200000023, 34.14332999912294], [-117.75100200000018, 34.142595999122925], [-117.75213400000015, 34.14379399912282], [-117.753586, 34.14366199912281], [-117.753811, 34.143776999122835], [-117.753597, 34.14533399912298], [-117.75582900000016, 34.14519999912289], [-117.755723, 34.1458929991228], [-117.75443300000012, 34.14962699912298], [-117.75333400000017, 34.14952999912279], [-117.75054900000022, 34.15097399912282], [-117.750419, 34.150915999122795], [-117.75052500000015, 34.157061999122746], [-117.755601, 34.15711099912283], [-117.75548100000016, 34.16356699912275], [-117.75572363527098, 34.16356965591402], [-117.75580626049015, 34.165320277901984]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Claremont", "population": 0.3648525387655822, "cases": 24.0, "resource_uri": "/1.0/boundary/claremont-la-county-neighborhood-current/", "external_id": "claremont", "slug": "claremont-la-county-neighborhood-current", "metadata": {"sqmi": 16.6616865732, "type": "standalone-city", "name": "Claremont", "slug": "claremont"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.14617596896117, 34.01793287497825], [-118.1462244718976, 34.017611002179756], [-118.14654768826203, 34.01767173975717], [-118.14696232960766, 34.014367375566366], [-118.14663880141656, 34.014320148607496], [-118.14676066575267, 34.013388260696765], [-118.14707347316664, 34.013431924637466], [-118.14753357406855, 34.0097670949776], [-118.127398, 34.00803299912455], [-118.127411, 34.00776399912449], [-118.1277870000002, 34.00763999912465], [-118.12782800000015, 34.007257999124676], [-118.12732100000011, 34.00722499912457], [-118.12989500000019, 34.0025089991246], [-118.12961600000025, 34.00219699912453], [-118.12892700000013, 34.001979999124565], [-118.12952700000018, 34.00089099912472], [-118.12852700000012, 34.00047699912465], [-118.12886300000015, 33.999920999124704], [-118.12847800000021, 33.99972799912467], [-118.12881600000014, 33.999018999124665], [-118.128398, 33.99884599912463], [-118.12976300000022, 33.993215999124764], [-118.1281090000002, 33.99225999912481], [-118.12670200000015, 33.99181299912475], [-118.12517900000022, 33.99095499912476], [-118.12860500000022, 33.98530299912491], [-118.13099600000014, 33.98490199912482], [-118.132721, 33.98601699912478], [-118.13316500000013, 33.984556999124806], [-118.12963500000015, 33.98104899912482], [-118.12658000000016, 33.9776449991249], [-118.12636900000027, 33.97778299912492], [-118.1212110000002, 33.97289899912497], [-118.12491300000023, 33.97052799912506], [-118.12726900000021, 33.97095199912505], [-118.12942300000017, 33.97093399912495], [-118.13059500000016, 33.97318999912501], [-118.13256200000015, 33.97252099912495], [-118.13437600000012, 33.97239999912505], [-118.15027100000015, 33.974151999124906], [-118.14961200000013, 33.97664599912495], [-118.14973200000013, 33.9774839991249], [-118.167315, 33.979335999124835], [-118.16774700000016, 33.98209899912481], [-118.16871600000016, 33.98494199912487], [-118.16947100000029, 33.98642599912479], [-118.17047100000012, 33.98788899912475], [-118.16476000000019, 33.98767299912485], [-118.1634410000001, 33.98726999912477], [-118.1618050000001, 33.98735999912476], [-118.16108700000014, 33.99201799912472], [-118.16014300000012, 33.991538999124735], [-118.159241, 33.99129699912484], [-118.155353, 33.99133299912472], [-118.15445300000012, 33.99121299912477], [-118.15268000000029, 33.99065099912463], [-118.15208900000023, 33.99198599912478], [-118.16044100000029, 33.99537799912475], [-118.165504, 33.998112999124665], [-118.17287200000017, 34.00036299912461], [-118.17446500000031, 34.0010379991246], [-118.17428600000025, 34.00133699912469], [-118.18127300000013, 34.00555999912462], [-118.18641300000016, 34.007309999124566], [-118.19088700000013, 34.00862799912465], [-118.19351400000022, 34.00970699912452], [-118.1928230000001, 34.01147599912448], [-118.192531, 34.01138799912436], [-118.19230900000024, 34.01283699912447], [-118.19142800000016, 34.01276099912445], [-118.19143600000017, 34.015083999124414], [-118.19221900000011, 34.01507999912446], [-118.19223100459234, 34.01654650668326], [-118.18734085217548, 34.016569460112], [-118.18732768432436, 34.015647148061], [-118.18129380228595, 34.015663901491514], [-118.18123985197946, 34.01203646024979], [-118.17591285192168, 34.01141146037478], [-118.17589985215548, 34.018273460383945], [-118.15890151107354, 34.010618527753905], [-118.15365285204997, 34.01963046091161], [-118.14624085194636, 34.01807646108474], [-118.14617596896117, 34.01793287497825]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Commerce", "population": 0.13068789354877033, "cases": 11.0, "resource_uri": "/1.0/boundary/commerce-la-county-neighborhood-current/", "external_id": "commerce", "slug": "commerce-la-county-neighborhood-current", "metadata": {"sqmi": 6.58056684961, "type": "standalone-city", "name": "Commerce", "slug": "commerce"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.22409300000014, 33.92219999912564], [-118.22000600000018, 33.92231799912575], [-118.21995900000023, 33.92275099912556], [-118.21962500000018, 33.922086999125675], [-118.21866000000016, 33.921313999125594], [-118.21818400000014, 33.92123799912561], [-118.21679700000014, 33.91222699912574], [-118.21392200000012, 33.91260299912577], [-118.21383900000018, 33.91306099912571], [-118.20640800000011, 33.91061899912573], [-118.20582700000023, 33.91262199912573], [-118.20186200000025, 33.91166399912581], [-118.19872600000012, 33.910560999125714], [-118.198387, 33.91067899912584], [-118.19997900000013, 33.906676999125764], [-118.19714900000017, 33.90646799912588], [-118.195122, 33.9112719991258], [-118.1938910000002, 33.91093299912574], [-118.19579200000011, 33.906330999125814], [-118.19019, 33.90581899912588], [-118.19019500000014, 33.9060999991258], [-118.189516, 33.90606099912576], [-118.18931500000018, 33.907339999125746], [-118.1867750000003, 33.90689299912581], [-118.18702700000011, 33.90548499912583], [-118.1896100000002, 33.90574899912587], [-118.18977650612186, 33.905578125741954], [-118.18964699051189, 33.903726874487454], [-118.18908000801547, 33.90373325363013], [-118.18892724927014, 33.90345501375035], [-118.18735200000016, 33.90335199912586], [-118.18683000000028, 33.902980999125774], [-118.1881035111767, 33.90316906253989], [-118.18810179036132, 33.90282479573148], [-118.18952328324457, 33.902812315369246], [-118.18947771259658, 33.90222241474434], [-118.18893163509475, 33.90222692931056], [-118.18893607138651, 33.90194216307571], [-118.18842305750726, 33.90194717704712], [-118.18842035170076, 33.90153660598428], [-118.18867905308784, 33.901533796095485], [-118.18867600000017, 33.90169499912575], [-118.18943433442477, 33.90164079565193], [-118.18936087311195, 33.900569240061664], [-118.18988650409615, 33.90056758561334], [-118.1894649054185, 33.894704405936025], [-118.18814917625677, 33.89471969848663], [-118.18812558453843, 33.89487619155366], [-118.18610000000017, 33.89485799912598], [-118.18589600000017, 33.89623399912592], [-118.182306, 33.89621199912588], [-118.18235600000023, 33.89425199912585], [-118.1816870000002, 33.894264999126], [-118.18159000000014, 33.892544999125946], [-118.17996200000019, 33.89253699912598], [-118.1824020000003, 33.88910599912613], [-118.18416900000031, 33.88913699912604], [-118.18429900000012, 33.89251899912604], [-118.18689700000013, 33.892419999126], [-118.1882070000001, 33.885223999126005], [-118.18762900000013, 33.88522999912612], [-118.1883680000002, 33.88132499912618], [-118.190069, 33.88141199912617], [-118.19162600000018, 33.88091699912609], [-118.1923870000002, 33.88143699912611], [-118.20889600000022, 33.88129199912605], [-118.2088980000002, 33.8806529991261], [-118.20861600000023, 33.880660999126], [-118.208513, 33.879775999126174], [-118.20856600000019, 33.8748569991262], [-118.20823800000015, 33.87482499912618], [-118.2082400000002, 33.87426399912617], [-118.20796300000012, 33.87426499912625], [-118.20792500000017, 33.874802999126196], [-118.2071570000002, 33.87471699912619], [-118.207155, 33.874268999126116], [-118.20560700000017, 33.87428599912616], [-118.20589500000014, 33.87289399912625], [-118.20560300000027, 33.872015999126276], [-118.20566600000015, 33.87038999912621], [-118.206321, 33.87034299912627], [-118.20709200000017, 33.87318399912618], [-118.21545800000017, 33.8729529991262], [-118.21616600000017, 33.872603999126326], [-118.21549800000012, 33.8716759991262], [-118.2150950000002, 33.869326999126265], [-118.218658, 33.86924799912619], [-118.21862500000015, 33.86817299912632], [-118.22578400000016, 33.868151999126184], [-118.22638400000014, 33.86429099912637], [-118.22680800000013, 33.86313799912633], [-118.22943800000019, 33.863085999126355], [-118.23084700000013, 33.863407999126345], [-118.2309420000002, 33.864691999126364], [-118.23171200000029, 33.864879999126316], [-118.232372, 33.86556599912629], [-118.23238600000013, 33.86666799912635], [-118.234127, 33.866641999126315], [-118.23412000000022, 33.86740099912629], [-118.23560200000013, 33.86734199912628], [-118.23563400000015, 33.86789999912624], [-118.24207700000015, 33.86773999912622], [-118.2423990000001, 33.8698939991262], [-118.244139, 33.87018599912626], [-118.24866000000023, 33.87007999912622], [-118.248642, 33.878812999126175], [-118.24742400000018, 33.87891199912617], [-118.24729800000017, 33.880451999126166], [-118.24873400000017, 33.88041499912604], [-118.24874100000022, 33.881716999126155], [-118.25366600000015, 33.881716999126155], [-118.25337600000016, 33.88011599912611], [-118.25909800000018, 33.87996199912611], [-118.26081400000018, 33.880181999126144], [-118.26151200000018, 33.88011199912614], [-118.26130600000016, 33.8813429991261], [-118.25814100000014, 33.88397199912608], [-118.2572130000001, 33.8840009991261], [-118.25760500000024, 33.88626799912611], [-118.25946200000013, 33.88621199912609], [-118.25936600000027, 33.885707999126076], [-118.259878, 33.885616999126], [-118.259841, 33.885247999126044], [-118.26116100000011, 33.88523399912604], [-118.2613629906937, 33.88609100127599], [-118.26069498607885, 33.886110003774945], [-118.26077298589425, 33.88672200121104], [-118.2598999861299, 33.88682700312434], [-118.2603929859447, 33.890061001778804], [-118.25918998610432, 33.890271002747795], [-118.26024698747334, 33.89472700449063], [-118.25982298413071, 33.89503899918145], [-118.2594039861287, 33.89508600318929], [-118.25947998571344, 33.895390000057176], [-118.25912498605328, 33.8953940039045], [-118.25941798555387, 33.89628899999947], [-118.25838799303142, 33.89629500311333], [-118.25830297899846, 33.89592900371884], [-118.25635698607083, 33.896329000918115], [-118.25239598609839, 33.89642700359842], [-118.25271598566273, 33.89767499982719], [-118.25226998607508, 33.897685003760834], [-118.25317097206133, 33.901609005609004], [-118.25360398607667, 33.902807003757225], [-118.26365898608421, 33.90234800318526], [-118.2635079860923, 33.905531000150916], [-118.26091298604317, 33.90556700395964], [-118.26092698601188, 33.91271599991173], [-118.25445598607784, 33.91293200375373], [-118.25445698599431, 33.917311000844954], [-118.2543409860878, 33.91732100190289], [-118.24620398594705, 33.917318003649186], [-118.24538298609068, 33.917462002764594], [-118.24525698661336, 33.91785799969115], [-118.23898399295582, 33.91771000339878], [-118.23905597900797, 33.91622400165088], [-118.23845899302881, 33.91622900309951], [-118.23840197902747, 33.91440500156183], [-118.2378069930143, 33.91440600316357], [-118.23778697902705, 33.91375300156156], [-118.23609699300863, 33.913753003185256], [-118.23610397898477, 33.9059520017583], [-118.23103098624246, 33.90728600466231], [-118.23050898578599, 33.907463001696065], [-118.23065698590784, 33.90775200210684], [-118.23037099302245, 33.90781300081585], [-118.23016597907318, 33.90754400419765], [-118.2286469859507, 33.90793400213708], [-118.22876198598703, 33.9081460023091], [-118.22826999302028, 33.908257000809556], [-118.22810397910527, 33.908015004317555], [-118.22749698595392, 33.908176002150284], [-118.22761798573504, 33.90840300168497], [-118.22503598588239, 33.90897700167188], [-118.22271098166358, 33.90872300749289], [-118.2223709860627, 33.90882600265702], [-118.22408998599347, 33.919799004059264], [-118.22803398602433, 33.919832000692566], [-118.22882798103045, 33.922779001859105], [-118.22428700000019, 33.923417999125526], [-118.22409300000014, 33.92219999912564]], [[-118.20046212215547, 33.906422547179034], [-118.20030245029625, 33.90409438728457], [-118.19782847829062, 33.90395766608119], [-118.19774623485667, 33.90303566103584], [-118.19938368907785, 33.90301245245657], [-118.19934357801931, 33.90220709587878], [-118.19991110012347, 33.902187775869486], [-118.19989208218472, 33.901915184320764], [-118.19933049365481, 33.901935171472616], [-118.19931709570618, 33.90165318843734], [-118.19987176822688, 33.90162860514699], [-118.19978440531744, 33.90038566115787], [-118.19925719659552, 33.90039255683174], [-118.19896017999588, 33.896129429113465], [-118.19834654849208, 33.896097399344164], [-118.19811688224218, 33.89283952906159], [-118.1974711291871, 33.89284665686299], [-118.19726842971863, 33.888741714546775], [-118.19498207575867, 33.888755693350916], [-118.19501312100732, 33.8891545496151], [-118.1939394395832, 33.88916805136643], [-118.19396199213207, 33.889481921925174], [-118.18942302062149, 33.88953348115704], [-118.19017354101412, 33.90056657778111], [-118.19321556700282, 33.90037982805509], [-118.19307212095896, 33.89843168760161], [-118.19406800452943, 33.898421519425916], [-118.19417440532732, 33.89986074952797], [-118.19383826599358, 33.89986319092616], [-118.19389778998085, 33.90054373767002], [-118.19173461589716, 33.90056075572991], [-118.19196013072965, 33.90358764997314], [-118.19164612489166, 33.90358797108449], [-118.1916787177683, 33.90405917142789], [-118.19058292338632, 33.904061974412826], [-118.1906842510778, 33.90552527063623], [-118.19398037209416, 33.90582783213145], [-118.19420321921652, 33.90502831946268], [-118.19405204477422, 33.9027483559545], [-118.19438489379596, 33.90274964706647], [-118.19439519910182, 33.90288932809372], [-118.19482166101157, 33.90288751993618], [-118.19488844188457, 33.903976612491235], [-118.19446988113383, 33.90398960680546], [-118.19454969690725, 33.90524284174045], [-118.1943877614948, 33.905735191153084], [-118.19477097986004, 33.90590038371131], [-118.20046212215547, 33.906422547179034]], [[-118.20053195041216, 33.88822920503387], [-118.20042900000016, 33.886328999126015], [-118.20194400000017, 33.886314999125865], [-118.20206700000017, 33.88811499912602], [-118.20611800000023, 33.88808299912607], [-118.2043003431371, 33.88161109788054], [-118.19727600000023, 33.881813999126045], [-118.19732, 33.88242099912613], [-118.19780500000019, 33.88232199912616], [-118.19788300000016, 33.88302399912605], [-118.19699000000014, 33.883127999126145], [-118.19730389284028, 33.88503527181219], [-118.19792837727393, 33.8850313336669], [-118.19817040406139, 33.88825519193463], [-118.1990913509091, 33.888253397419994], [-118.1991235402586, 33.888730741436746], [-118.20056802684418, 33.88872203930958], [-118.20053195041216, 33.88822920503387]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Compton", "population": 1.011885423435131, "cases": 209.0, "resource_uri": "/1.0/boundary/compton-la-county-neighborhood-current/", "external_id": "compton", "slug": "compton-la-county-neighborhood-current", "metadata": {"sqmi": 10.2604113792, "type": "standalone-city", "name": "Compton", "slug": "compton"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.85465498572447, 34.102149004096084], [-117.855083985717, 34.10214800080322], [-117.85508198572268, 34.1026519999308], [-117.85463898571668, 34.10265100412925], [-117.85465498572447, 34.102149004096084]]], [[[-117.90711730346774, 34.10673034223939], [-117.88328998662283, 34.10670800095377], [-117.88288800002174, 34.10663900236058], [-117.88290998569487, 34.10585500223343], [-117.88148900008937, 34.10614099956698], [-117.8814859856434, 34.10541500169241], [-117.88039699993725, 34.10541600270448], [-117.88039298564222, 34.10529000167252], [-117.87875698583225, 34.10549000323669], [-117.87874498555459, 34.1058539977986], [-117.87731100000023, 34.105486999123364], [-117.87674500000021, 34.10548799912334], [-117.87389800000025, 34.10602999912338], [-117.86919998089087, 34.106465001020375], [-117.86919697871124, 34.10594000119931], [-117.86815498546673, 34.105882004866466], [-117.86818098574616, 34.104810004043216], [-117.86919497863815, 34.10478800151563], [-117.8692979856926, 34.10303500439244], [-117.87049598573135, 34.103043000787714], [-117.87046298560576, 34.10387300453896], [-117.87081198585697, 34.103894000366225], [-117.87079198584682, 34.104340999612106], [-117.87043798577453, 34.10434200390229], [-117.87038898567238, 34.10464300433817], [-117.87250897865103, 34.104708999874084], [-117.8725019857273, 34.10306100501802], [-117.87736197868034, 34.10306399984333], [-117.87739897860514, 34.09942400161874], [-117.87249898571342, 34.099435004944795], [-117.87248698579594, 34.100480999315074], [-117.87123698559508, 34.10040200456729], [-117.87127098581085, 34.099988003636916], [-117.87151597857013, 34.099973001278705], [-117.87143198596044, 34.09877400568479], [-117.87250197857745, 34.098800000066866], [-117.87247597871608, 34.0973460011978], [-117.87169398565628, 34.09731500439082], [-117.87167798570796, 34.096419005146956], [-117.87245897866289, 34.09645199969477], [-117.8724609857539, 34.09572900401968], [-117.87639297860501, 34.09572200078576], [-117.87635197853956, 34.09348200194405], [-117.8729399857787, 34.09358600388886], [-117.87292098578936, 34.09399500017374], [-117.87246498576214, 34.094004003977794], [-117.8724619857076, 34.094999000474445], [-117.87049198573271, 34.0950950041086], [-117.87049298571661, 34.095753000147], [-117.87009198570581, 34.09575500516965], [-117.87005398575833, 34.09942099987753], [-117.86778298573012, 34.09942200411228], [-117.86782598581128, 34.10154599965608], [-117.86601698570817, 34.101538004197224], [-117.86600498547284, 34.10325700040008], [-117.86479398578608, 34.103308003802844], [-117.86465797858243, 34.103036001656584], [-117.86160398572932, 34.103040004097544], [-117.86157097859505, 34.099424001590506], [-117.85632298571775, 34.09939800412892], [-117.85636297854779, 34.09779000178159], [-117.85506398574553, 34.0978100039983], [-117.85508498574762, 34.101707999687235], [-117.85428698583733, 34.10168800521506], [-117.85438998559147, 34.10304500006782], [-117.85283998570581, 34.103052004168724], [-117.8528389714383, 34.102577005775835], [-117.85269197855811, 34.10249900170995], [-117.85234198573262, 34.102502004051246], [-117.8523469857091, 34.103048999880386], [-117.84834998572742, 34.10304100406203], [-117.84826999997517, 34.10539916340787], [-117.84826497854972, 34.10489900172596], [-117.84636698573081, 34.10491800404009], [-117.8463659857534, 34.10466100392317], [-117.8471579786298, 34.104640000795534], [-117.84718198553912, 34.10402700578782], [-117.84796597856284, 34.10396900162382], [-117.8479959785837, 34.10304100157495], [-117.84635398571467, 34.10303600411207], [-117.8463549786058, 34.10155400148131], [-117.84564698569216, 34.101545004201164], [-117.84564698545863, 34.10038900171233], [-117.84636497887772, 34.10014600503725], [-117.84636597857295, 34.099419001616056], [-117.84382498571352, 34.099406004108175], [-117.84386198572726, 34.09891200404705], [-117.84417597978992, 34.098870006485036], [-117.84418497863705, 34.09581800135991], [-117.84054900000017, 34.09579599912342], [-117.846396, 34.09280999912347], [-117.8463920000003, 34.088905999123604], [-117.84774100000016, 34.08871299912352], [-117.84990800000013, 34.087912999123596], [-117.84998000000013, 34.08705699912354], [-117.85091800000018, 34.0863629991236], [-117.85156800000019, 34.086201999123595], [-117.85168100000021, 34.08585699912361], [-117.85206700000022, 34.085855999123645], [-117.85210900000015, 34.08620399912364], [-117.853478, 34.086199999123586], [-117.85344300000017, 34.084429999123564], [-117.8540590000001, 34.08351899912363], [-117.85404700000021, 34.08324599912364], [-117.85375500000022, 34.08276599912367], [-117.85325100000011, 34.08254599912359], [-117.84968600000016, 34.082483999123596], [-117.84918200000018, 34.08224099912371], [-117.84478600000016, 34.0819819991237], [-117.84343000000018, 34.08153199912363], [-117.84126600000018, 34.08040299912367], [-117.8431450000001, 34.07879899912371], [-117.84246400000013, 34.0782479991237], [-117.84290500000014, 34.07740399912371], [-117.84369800000016, 34.077643999123694], [-117.84431500000012, 34.077433999123684], [-117.84681000000012, 34.075209999123686], [-117.850793, 34.0773089991237], [-117.85126300000015, 34.07660399912376], [-117.85219100000018, 34.076806999123676], [-117.85141500000023, 34.07799499912369], [-117.85259300000018, 34.07900899912362], [-117.85229300000012, 34.08040899912361], [-117.851661, 34.08088299912379], [-117.85228800000017, 34.08210599912366], [-117.856861, 34.0822209991236], [-117.85651700000022, 34.08154999912362], [-117.856668, 34.080430999123756], [-117.85901800000025, 34.0805499991237], [-117.85919563917076, 34.08022022386862], [-117.85883378607627, 34.07996311304193], [-117.85908254886584, 34.079477001425545], [-117.85869155296947, 34.079123085731695], [-117.8600909375734, 34.07868401196807], [-117.8604785008203, 34.078918963283996], [-117.8606289347812, 34.07881577878358], [-117.86030600000015, 34.07856399912366], [-117.860013, 34.078551999123704], [-117.86019300000018, 34.076541999123826], [-117.86061400000017, 34.07631699912367], [-117.85990600000015, 34.07581099912378], [-117.86016000000028, 34.07549599912371], [-117.85966800000014, 34.075142999123734], [-117.85913600000018, 34.075481999123745], [-117.85894800000017, 34.07455999912372], [-117.85834000000011, 34.074619999123705], [-117.85822100000014, 34.074112999123685], [-117.85937900000012, 34.07408999912377], [-117.8593130000002, 34.07226599912376], [-117.8592510000002, 34.0721159991238], [-117.85835700000013, 34.072434999123786], [-117.85824200000023, 34.07165199912377], [-117.85834600000021, 34.070969999123726], [-117.85813200000015, 34.070035999123746], [-117.8571190000002, 34.06892899912382], [-117.85635900000011, 34.06871799912378], [-117.85575700000022, 34.0688329991238], [-117.85534700000011, 34.068130999123774], [-117.8571190000002, 34.06795599912377], [-117.85870400000013, 34.068640999123744], [-117.85914500000014, 34.06858899912373], [-117.86064000000022, 34.068893999123794], [-117.8617930000002, 34.06932199912382], [-117.86206700000014, 34.06967799912391], [-117.86215500000016, 34.07034099912377], [-117.86266900000018, 34.070304999123756], [-117.86271000000016, 34.070879999123726], [-117.86288000000015, 34.070818999123766], [-117.8631240000002, 34.070983999123825], [-117.86446700000013, 34.070735999123706], [-117.866038, 34.07139899912381], [-117.8680480000002, 34.07188099912382], [-117.86626800000016, 34.072314999123726], [-117.86586500000014, 34.073342999123795], [-117.86717300000018, 34.07343999912372], [-117.86738500000018, 34.07398799912376], [-117.86763000000018, 34.074146999123734], [-117.868366, 34.0739409991238], [-117.86882100000018, 34.074034999123754], [-117.869172, 34.0746079991237], [-117.86950300000025, 34.07461399912373], [-117.86968400000033, 34.075855999123704], [-117.87142500000023, 34.07541999912371], [-117.87316800000016, 34.074495999123705], [-117.8741100000001, 34.07367299912386], [-117.8812020000003, 34.07370699912376], [-117.88121900000014, 34.075283999123705], [-117.89002700000015, 34.07536399912369], [-117.89004300000023, 34.07735799912364], [-117.89175100000021, 34.07743899912368], [-117.89250500000014, 34.077323999123614], [-117.89259700000012, 34.07537799912375], [-117.89239000000016, 34.07336999912379], [-117.89889500000014, 34.073611999123784], [-117.898903, 34.07543299912384], [-117.90330100000011, 34.07546599912369], [-117.9032900000002, 34.086282999123526], [-117.90776100000018, 34.08631199912361], [-117.9077730000001, 34.08493999912353], [-117.91656400000016, 34.084798999123606], [-117.91658600000017, 34.08842699912356], [-117.91808400000023, 34.08841299912359], [-117.92164700000015, 34.08895999912351], [-117.923705, 34.08702299912358], [-117.92369600000025, 34.086438999123494], [-117.92719498578494, 34.08646500073843], [-117.9272949857577, 34.089620999440484], [-117.92540998567503, 34.089544004452534], [-117.92540798575952, 34.092935999937325], [-117.92341599985616, 34.09292400297788], [-117.92355098577859, 34.09217200075191], [-117.91928198413072, 34.09214000496953], [-117.9182649838501, 34.09300899823239], [-117.91657498574159, 34.09298500420957], [-117.91657697870484, 34.09213100139599], [-117.9144129857637, 34.09211900411344], [-117.91454497152638, 34.09533300578092], [-117.91434398576315, 34.09579400411703], [-117.91456998576321, 34.09579400078791], [-117.91448897152591, 34.09671000578279], [-117.91372697152455, 34.09746200578362], [-117.91370398577106, 34.09960900408085], [-117.91656898575485, 34.09959300082908], [-117.91657198650805, 34.10041800395451], [-117.91210798514018, 34.10254400111625], [-117.91223498611971, 34.10286000339085], [-117.91139799861025, 34.10318200199746], [-117.91434498587117, 34.103168000415266], [-117.91420698584722, 34.10703499949489], [-117.90711730346774, 34.10673034223939]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Covina", "population": 0.6585196454188179, "cases": 116.0, "resource_uri": "/1.0/boundary/covina-la-county-neighborhood-current/", "external_id": "covina", "slug": "covina-la-county-neighborhood-current", "metadata": {"sqmi": 7.60402649998, "type": "standalone-city", "name": "Covina", "slug": "covina"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.194261, 33.970399999125064], [-118.19434700000018, 33.96982199912502], [-118.19397900000017, 33.969782999125066], [-118.194031, 33.969418999125075], [-118.19210400000031, 33.96931399912497], [-118.1921960000002, 33.96843799912501], [-118.19206300000018, 33.968423999125065], [-118.19196500000018, 33.969103999125], [-118.1918440000001, 33.96908499912505], [-118.19192600000012, 33.96840899912511], [-118.19065100000012, 33.968272999125], [-118.190608, 33.968952999125044], [-118.19016000000013, 33.96895399912503], [-118.19021500000015, 33.96938999912511], [-118.1878400000002, 33.96950599912507], [-118.18800900000014, 33.970303999125015], [-118.18563800000017, 33.97005199912493], [-118.18574300000016, 33.9690789991249], [-118.17773900000016, 33.96838299912507], [-118.177794, 33.968097999124936], [-118.17698000000016, 33.96798099912502], [-118.17698900000016, 33.967700999125086], [-118.17528600000023, 33.967511999125016], [-118.17509100000015, 33.96801299912498], [-118.173003, 33.967713999125095], [-118.17322200000011, 33.9664389991251], [-118.17168500000014, 33.96628699912503], [-118.171491, 33.96761599912505], [-118.171076, 33.967533999125045], [-118.1711210000002, 33.967280999124995], [-118.1709620000002, 33.96727999912497], [-118.171116, 33.96633099912505], [-118.17010500000022, 33.966215999124984], [-118.1703190000002, 33.964604999125044], [-118.170853, 33.96410999912504], [-118.16924700000017, 33.96359199912514], [-118.17043800000019, 33.95568699912525], [-118.17038000000022, 33.95402799912513], [-118.17296500000016, 33.954301999125185], [-118.17262500000021, 33.95651499912527], [-118.17742700000016, 33.95700599912516], [-118.17733200000018, 33.957687999125206], [-118.17952200000026, 33.9579179991252], [-118.17967500000017, 33.95698199912524], [-118.1769380000003, 33.95663599912516], [-118.1785030000001, 33.95497399912516], [-118.18506400000011, 33.95563699912526], [-118.19860900000022, 33.96666299912504], [-118.20061400000017, 33.96873099912508], [-118.20189800000021, 33.97061099912498], [-118.1996120000001, 33.97039299912498], [-118.1994880000002, 33.971212999124944], [-118.194261, 33.970399999125064]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Cudahy", "population": 0.24346979235504854, "cases": 70.0, "resource_uri": "/1.0/boundary/cudahy-la-county-neighborhood-current/", "external_id": "cudahy", "slug": "cudahy-la-county-neighborhood-current", "metadata": {"sqmi": 1.22903553842, "type": "standalone-city", "name": "Cudahy", "slug": "cudahy"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.37157000000018, 34.03066199912427], [-118.37190100000016, 34.0299289991243], [-118.37364300000013, 34.0304209991243], [-118.37563200000011, 34.029047999124245], [-118.37659900000017, 34.0265889991244], [-118.37669300000013, 34.026036999124344], [-118.37636900000017, 34.02584899912437], [-118.37669700000019, 34.02398799912441], [-118.37875000000022, 34.02204699912442], [-118.3783350000002, 34.02118099912438], [-118.38048300000011, 34.02083599912436], [-118.3792120000002, 34.0195679991245], [-118.37797300000018, 34.01801799912442], [-118.375832, 34.01804999912445], [-118.37589100000022, 34.018519999124386], [-118.37281300000018, 34.018362999124435], [-118.37262700000014, 34.0184709991244], [-118.373736, 34.0163759991245], [-118.37407000000022, 34.01513399912447], [-118.37392600000015, 34.0138669991245], [-118.37309299594305, 34.01191300272932], [-118.37859698514843, 34.01193299905848], [-118.37951698644267, 34.011416007129824], [-118.38432898405661, 34.012485997927755], [-118.38750998222528, 34.0096680088842], [-118.38782098610636, 34.00856900245176], [-118.38770898610635, 34.00818200245141], [-118.39012998610879, 34.00293500244845], [-118.39074198610953, 34.00201400244784], [-118.39036798610923, 34.00165400244754], [-118.38862298585791, 34.00120200234828], [-118.38240999263061, 34.00031200443173], [-118.38380899101927, 33.996100007403726], [-118.38500898116186, 33.996433997474405], [-118.38589398610743, 33.99350400244185], [-118.3834099905608, 33.99231199741047], [-118.38800697461701, 33.98891100724404], [-118.38220898612424, 33.98895600401321], [-118.38210998683174, 33.99111200389276], [-118.37890999196163, 33.99271199860292], [-118.37864698610336, 33.98899000243798], [-118.37883698610345, 33.98851900243777], [-118.38450499150397, 33.97846900500577], [-118.38565098183659, 33.97856299750146], [-118.38673500000014, 33.97671899912491], [-118.3910660000002, 33.978632999124954], [-118.39262800000019, 33.97974399912496], [-118.39765000000016, 33.98206999912485], [-118.3975690000002, 33.982189999124934], [-118.3984630000002, 33.98317799912483], [-118.39508500000018, 33.98381799912492], [-118.395678, 33.98436599912478], [-118.39585100000014, 33.984912999124845], [-118.39828800000011, 33.987596999124825], [-118.39848300000016, 33.98761499912483], [-118.398761, 33.98795699912481], [-118.40123900000019, 33.986385999124835], [-118.4062030000002, 33.98940399912481], [-118.40514900000011, 33.99050099912469], [-118.4078560000002, 33.99211699912473], [-118.40641600000015, 33.992974999124655], [-118.40611900000017, 33.992979999124756], [-118.40600200000011, 33.993278999124726], [-118.40551800000019, 33.99359699912468], [-118.4041890000002, 33.99505899912471], [-118.40373200000013, 33.99532999912473], [-118.40302700000014, 33.996304999124696], [-118.40118000000018, 33.99972699912464], [-118.401285, 33.99978599912471], [-118.40075800000017, 34.001219999124665], [-118.40066300000015, 34.001428999124656], [-118.40042500000013, 34.001434999124605], [-118.40017500000013, 34.00203999912465], [-118.402768, 34.00346499912457], [-118.40588900000013, 33.99923599912476], [-118.40907700000014, 34.001211999124635], [-118.40963700000022, 34.000487999124715], [-118.41423100000021, 34.00343299912469], [-118.41436, 34.003661999124645], [-118.4160580000001, 34.000498999124595], [-118.418053, 33.99920199912467], [-118.419016, 33.99803699912467], [-118.41967400000013, 33.99760799912476], [-118.42843700000026, 33.996555999124645], [-118.43110200000015, 33.99638099912469], [-118.43018200000016, 33.99012499912483], [-118.42971700000021, 33.98975599912473], [-118.43087400000022, 33.98919199912479], [-118.43246300000017, 33.9914529991247], [-118.4371740000002, 33.9952759991247], [-118.44702300000016, 33.990518999124816], [-118.44717800000014, 33.99075899912486], [-118.44847200000017, 33.99335899912478], [-118.44471300000023, 33.99437499912475], [-118.44335000000014, 33.99531699912475], [-118.44245700000015, 33.99359899912473], [-118.43581100000017, 33.99691699912457], [-118.4353070000002, 33.99689899912468], [-118.430327, 33.999445999124646], [-118.4308360000002, 34.000101999124574], [-118.42848900000018, 34.00134399912462], [-118.42598000000021, 33.99806999912468], [-118.42040000000016, 33.998687999124634], [-118.41917800000013, 34.00003399912461], [-118.41823900000018, 34.00061899912468], [-118.4212490000001, 34.00442199912459], [-118.41734400000018, 34.006748999124625], [-118.41923000000018, 34.00910299912441], [-118.42008500000013, 34.00864499912461], [-118.42141100000019, 34.010323999124616], [-118.40686400000023, 34.018573999124406], [-118.40546, 34.016853999124294], [-118.4004760000002, 34.01989699912447], [-118.40128500000017, 34.021086999124414], [-118.40060800000016, 34.021471999124365], [-118.40024900000014, 34.02085999912444], [-118.39949200000012, 34.021293999124346], [-118.39910100000024, 34.020786999124425], [-118.3987960000002, 34.02086199912452], [-118.397455, 34.021661999124355], [-118.39835000000016, 34.022916999124355], [-118.39408400000012, 34.0253099991243], [-118.394197, 34.02555899912434], [-118.39393700000012, 34.025705999124334], [-118.39344600000017, 34.025370999124334], [-118.39334200000025, 34.02551199912433], [-118.39293100000015, 34.02552099912429], [-118.392622, 34.02627799912436], [-118.38717100000014, 34.02939999912429], [-118.3867990000002, 34.029128999124254], [-118.38666200000019, 34.02920699912432], [-118.3863960000002, 34.02890499912428], [-118.384206, 34.03021399912433], [-118.37591900000012, 34.03241699912421], [-118.36957700000013, 34.03507999912425], [-118.37157000000018, 34.03066199912427]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Culver City", "population": 0.39865454092438024, "cases": 64.0, "resource_uri": "/1.0/boundary/culver-city-la-county-neighborhood-current/", "external_id": "culver-city", "slug": "culver-city-la-county-neighborhood-current", "metadata": {"sqmi": 5.19276111048, "type": "standalone-city", "name": "Culver City", "slug": "culver-city"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.219006, 34.08900999912346], [-118.216806, 34.08880999912347], [-118.21600600000012, 34.0892099991235], [-118.215606, 34.08850999912352], [-118.21210600000015, 34.09030999912343], [-118.2113060000001, 34.091108999123584], [-118.211106, 34.08980999912349], [-118.21140600000015, 34.08890999912355], [-118.21200600000013, 34.0881099991235], [-118.212906, 34.0864099991235], [-118.214506, 34.08630999912341], [-118.219306, 34.08470999912355], [-118.226306, 34.08000999912354], [-118.226906, 34.08100999912357], [-118.22740600000016, 34.08290999912356], [-118.228006, 34.08830999912348], [-118.22860600000014, 34.08990999912355], [-118.230606, 34.09220999912347], [-118.232207, 34.09320999912347], [-118.23060700000015, 34.09420899912352], [-118.237207, 34.10200899912338], [-118.232822, 34.104268999123356], [-118.232707, 34.10400899912322], [-118.234207, 34.10320899912329], [-118.233907, 34.10180899912332], [-118.233607, 34.10140899912327], [-118.232807, 34.10100899912329], [-118.232207, 34.1004089991234], [-118.230107, 34.099508999123266], [-118.22740600000016, 34.09770899912326], [-118.225406, 34.09670899912334], [-118.223706, 34.09640899912336], [-118.22220600000013, 34.095408999123386], [-118.221306, 34.09410899912343], [-118.22100600000014, 34.093208999123355], [-118.220906, 34.09140999912338], [-118.220606, 34.09060999912335], [-118.219006, 34.08900999912346]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Cypress Park", "population": null, "cases": null, "resource_uri": "/1.0/boundary/cypress-park-la-county-neighborhood-current/", "external_id": "cypress-park", "slug": "cypress-park-la-county-neighborhood-current", "metadata": {"sqmi": 0.724461994547, "type": "segment-of-a-city", "name": "Cypress Park", "slug": "cypress-park"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.37711698547298, 33.92910500339143], [-118.36821599204436, 33.92902000254833], [-118.36820197221309, 33.92529100566645], [-118.36853198604851, 33.92346800107023], [-118.36562898577421, 33.92331900490209], [-118.36562397221024, 33.92291600566266], [-118.3656169856216, 33.91777800125847], [-118.36811798662774, 33.91670000357581], [-118.36810398609018, 33.91638300083838], [-118.36360498611408, 33.916417003981785], [-118.3636139861032, 33.91602100076553], [-118.36272899305507, 33.91602200319359], [-118.36263697977226, 33.916422000126374], [-118.36123498610314, 33.91642100402133], [-118.36124098594617, 33.915917005956615], [-118.36168098582966, 33.91596499877471], [-118.36157898619804, 33.914875003234684], [-118.36186598625319, 33.91484300108684], [-118.36190798607873, 33.914177000873636], [-118.36160898612926, 33.91418200390274], [-118.36161098609493, 33.91379300079608], [-118.36125798611282, 33.913795003979445], [-118.36125298610278, 33.91035500485029], [-118.36230698611226, 33.91035699992105], [-118.36230998609713, 33.90949000079028], [-118.3619099861128, 33.909492003979956], [-118.3620079860966, 33.907766000792584], [-118.36126898611334, 33.907770003975344], [-118.36125598610798, 33.905207003998065], [-118.36181298609982, 33.90520599995871], [-118.36181098609524, 33.904443000799674], [-118.36150698611581, 33.90444500396406], [-118.36145197221073, 33.903966005637116], [-118.36150298576136, 33.903717004872945], [-118.36190698611905, 33.9037189998883], [-118.36209598583706, 33.90199900476227], [-118.36308697956396, 33.90211100043488], [-118.36311999305842, 33.902803003174434], [-118.3641469861231, 33.90280099995992], [-118.36415198579641, 33.90232800484591], [-118.36514997962917, 33.902454000310755], [-118.36510799307196, 33.90370400311736], [-118.36590698610975, 33.90369800001816], [-118.36592398620265, 33.902454003152876], [-118.36968197917749, 33.9023270015239], [-118.36937199206702, 33.903304998686934], [-118.36981198611127, 33.903845002382425], [-118.36988898611135, 33.904334002382754], [-118.36983998611001, 33.91188000238761], [-118.36958499306272, 33.91632000317139], [-118.37434098050291, 33.91630600022579], [-118.37432499301606, 33.91718600336761], [-118.37640497921045, 33.9172180014157], [-118.37639499305303, 33.91973100322604], [-118.37838297917553, 33.919734001560926], [-118.37842898371596, 33.92900800175242], [-118.37711698547298, 33.92910500339143]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Del Aire", "population": 0.043931216267101794, "cases": 7.0, "resource_uri": "/1.0/boundary/del-aire-la-county-neighborhood-current/", "external_id": "del-aire", "slug": "del-aire-la-county-neighborhood-current", "metadata": {"sqmi": 0.989829123892, "type": "unincorporated-area", "name": "Del Aire", "slug": "del-aire"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.441698, 33.99397799912478], [-118.44249096721673, 33.99366434702838], [-118.43697066141675, 33.99634003849492], [-118.437123, 33.99626599912467], [-118.441698, 33.99397799912478]]], [[[-118.411641, 34.0017719991245], [-118.40963700000012, 34.00048799912467], [-118.409077, 34.001211999124614], [-118.405889, 33.999235999124735], [-118.40276799999985, 34.0034649991245], [-118.400175, 34.00203999912465], [-118.400425, 34.00143499912458], [-118.400663, 34.0014289991246], [-118.400758, 34.00121999912471], [-118.401288, 33.9995049991247], [-118.403027, 33.99630499912475], [-118.403732, 33.99532999912483], [-118.4041890000001, 33.99505899912476], [-118.405518, 33.993596999124804], [-118.406002, 33.99327899912472], [-118.406119, 33.992979999124756], [-118.406416, 33.992974999124755], [-118.407856, 33.99211699912483], [-118.405149, 33.99050099912473], [-118.406203, 33.98940399912489], [-118.40441, 33.98831199912488], [-118.408138, 33.9881139991248], [-118.411045, 33.987191999124846], [-118.413808, 33.985461999124794], [-118.41801, 33.982490999124785], [-118.420615, 33.98133399912471], [-118.42311, 33.980810999124834], [-118.42831000000011, 33.9773109991247], [-118.43219249436724, 33.97492238490894], [-118.43339898614322, 33.97634900243616], [-118.43654398614504, 33.97850900243791], [-118.43981998614674, 33.981342002440364], [-118.44181100000013, 33.983510999124796], [-118.442711, 33.98491099912471], [-118.447811, 33.99051099912464], [-118.447211, 33.990810999124754], [-118.447023, 33.990518999124745], [-118.437174, 33.99527599912467], [-118.432463, 33.99145299912465], [-118.43087400000012, 33.989191999124884], [-118.429717, 33.98975599912471], [-118.430182, 33.99012499912479], [-118.431102, 33.996380999124746], [-118.42843700000017, 33.9965559991247], [-118.419674, 33.99760799912473], [-118.419016, 33.998036999124615], [-118.418053, 33.99920199912465], [-118.416058, 34.00049899912457], [-118.41436, 34.0036619991246], [-118.414231, 34.00343299912464], [-118.411641, 34.0017719991245]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Del Rey", "population": 0.2993646138807429, "cases": 49.0, "resource_uri": "/1.0/boundary/del-rey-la-county-neighborhood-current/", "external_id": "del-rey", "slug": "del-rey-la-county-neighborhood-current", "metadata": {"sqmi": 2.4526483285, "type": "segment-of-a-city", "name": "Del Rey", "slug": "del-rey"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.14981502302123, 34.597258152375744], [-118.14941551148422, 34.59721083680312], [-118.14941251047972, 34.59702481996288], [-118.15356596540668, 34.59556738729846], [-118.15130579005694, 34.59344741993051], [-118.14886511993312, 34.59516860633953], [-118.14886797788809, 34.59538016953567], [-118.14833376513381, 34.5953847234637], [-118.14828458256716, 34.59174294986232], [-118.1488252925147, 34.591738698284395], [-118.1488201310415, 34.5914538890831], [-118.14755760159426, 34.59145748650229], [-118.1475074913113, 34.58708197672678], [-118.15011595982816, 34.58707231551281], [-118.14992496289267, 34.58455924647242], [-118.15091172574427, 34.58452087208009], [-118.15088905993213, 34.584250207552344], [-118.15185150624347, 34.58393291508832], [-118.15184584282659, 34.58347956407577], [-118.15284413443399, 34.583481030769406], [-118.15284698932695, 34.58369808979391], [-118.15405898969361, 34.58396637051583], [-118.15406624982467, 34.5844554409266], [-118.15539597382943, 34.58483103284469], [-118.15597129022336, 34.58455573571805], [-118.15630837014898, 34.58503638314284], [-118.15633440880387, 34.58704238708229], [-118.16159960219235, 34.5870069027536], [-118.16160517606383, 34.58803659287768], [-118.16136005824463, 34.58848959311953], [-118.15720972155948, 34.59151323697879], [-118.15753357586156, 34.591812921967865], [-118.15594263632345, 34.59298321832873], [-118.15626513392779, 34.593287794581904], [-118.15532838611045, 34.593977446367894], [-118.15597167876318, 34.594581455757336], [-118.15854059852578, 34.592704448328426], [-118.15920546000169, 34.59332770312422], [-118.16086256574049, 34.59211150854601], [-118.16086984597624, 34.59261019364425], [-118.15600521000177, 34.59604286383273], [-118.15064194677794, 34.59785030835607], [-118.14982851513886, 34.59827474175789], [-118.14981502302123, 34.597258152375744]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Desert View Highlands", "population": 0.02492936679408343, "cases": 3.0, "resource_uri": "/1.0/boundary/desert-view-highlands-la-county-neighborhood-current/", "external_id": "desert-view-highlands", "slug": "desert-view-highlands-la-county-neighborhood-current", "metadata": {"sqmi": 0.443173884018, "type": "unincorporated-area", "name": "Desert View Highlands", "slug": "desert-view-highlands"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.80010300000016, 34.04141299912412], [-117.79811900000018, 34.04051199912411], [-117.796761, 34.03908199912414], [-117.795311, 34.03808199912417], [-117.79377000000018, 34.037406999124244], [-117.79225000000018, 34.037037999124166], [-117.78631600000018, 34.033361999124224], [-117.78504600000022, 34.02762199912418], [-117.78040900000018, 34.02588999912438], [-117.7677900000001, 34.01861099912438], [-117.76759000000015, 34.004611999124585], [-117.78529100000017, 34.00481199912451], [-117.80276600000016, 33.975817999124885], [-117.803578, 33.975927999125], [-117.80562800000021, 33.97561899912493], [-117.81318300000012, 33.97546699912495], [-117.81444900000017, 33.97508099912495], [-117.81495900000013, 33.97313699912495], [-117.81980400000015, 33.96898199912508], [-117.82354200000023, 33.9661029991251], [-117.83094000000011, 33.96106799912508], [-117.83124500000012, 33.96047199912515], [-117.8329170000003, 33.95937199912509], [-117.83820500000014, 33.96078299912515], [-117.83847200000015, 33.95881999912511], [-117.84778200000017, 33.9611669991251], [-117.855509, 33.95932899912511], [-117.85646600000018, 33.959217999125194], [-117.85649051254839, 33.960026547454596], [-117.85493400019355, 33.960871227961555], [-117.85503095740438, 33.97840013833306], [-117.8552279574229, 33.98022813833645], [-117.85511995741176, 33.980957138338745], [-117.85521363917888, 33.9901551582565], [-117.86387133754307, 33.99644234340392], [-117.86190800000014, 33.99663399912476], [-117.8604210000001, 33.99715399912462], [-117.86011000000023, 33.998686999124644], [-117.8596840000001, 33.999229999124644], [-117.8613980000002, 34.00059999912465], [-117.85950300000029, 34.0015209991246], [-117.85854500000013, 34.000102999124636], [-117.85755600000019, 34.00083799912474], [-117.85646000000015, 34.00135599912464], [-117.85679000000016, 34.0019139991246], [-117.85517700000017, 34.00348299912453], [-117.84427300000031, 34.008483999124486], [-117.84292200000021, 34.00927499912442], [-117.842022, 34.01002899912451], [-117.8382340000002, 34.007542999124524], [-117.83908900000017, 34.00731899912458], [-117.840357, 34.006598999124634], [-117.841189, 34.006604999124505], [-117.84179900000025, 34.00689799912452], [-117.84185900000018, 34.00663699912464], [-117.84226800000012, 34.00677299912466], [-117.84215900000012, 34.006292999124554], [-117.841141, 34.00641199912464], [-117.841022, 34.00611199912451], [-117.840965, 34.0034919991246], [-117.84033300000016, 34.00175999912464], [-117.83571600000018, 34.00196999912457], [-117.83490300000018, 34.00183799912462], [-117.83418600000013, 34.00198899912462], [-117.82872600000019, 34.005689999124634], [-117.82508900000013, 34.00894899912462], [-117.8245850000002, 34.00972099912449], [-117.82490000000017, 34.01129299912457], [-117.8246330000001, 34.01191599912452], [-117.82371500000018, 34.01222899912445], [-117.823263, 34.01039599912461], [-117.82234900000019, 34.01188299912446], [-117.822511, 34.012441999124526], [-117.82137700000017, 34.01300099912446], [-117.82074100000021, 34.01253899912451], [-117.81979500000014, 34.029245999124264], [-117.82153800000026, 34.03089199912423], [-117.81771700000021, 34.03482099912422], [-117.80965100000016, 34.03086799912423], [-117.80761000000015, 34.03414399912416], [-117.80552100000011, 34.03699999912421], [-117.80212700000016, 34.04053499912412], [-117.80204700000012, 34.04081199912411], [-117.80230800000018, 34.04047599912421], [-117.80225300000019, 34.041355999124015], [-117.80174400000018, 34.04246199912416], [-117.80123300000012, 34.04219199912412], [-117.8007810000002, 34.04170799912418], [-117.80010300000016, 34.04141299912412]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Diamond Bar", "population": 0.5751014884979703, "cases": 34.0, "resource_uri": "/1.0/boundary/diamond-bar-la-county-neighborhood-current/", "external_id": "diamond-bar", "slug": "diamond-bar-la-county-neighborhood-current", "metadata": {"sqmi": 15.1260322873, "type": "standalone-city", "name": "Diamond Bar", "slug": "diamond-bar"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.1189190000003, 33.970547999124946], [-118.11050700000014, 33.96132899912513], [-118.09780300000027, 33.9525209991252], [-118.09591300000017, 33.95140999912527], [-118.09361100000015, 33.95045999912529], [-118.0978980000001, 33.94561699912529], [-118.0982870000002, 33.94490199912536], [-118.09847000000013, 33.94413699912536], [-118.094055, 33.937463999125384], [-118.09026200000014, 33.93210199912551], [-118.10471800000015, 33.93201099912548], [-118.10550100000019, 33.93321399912548], [-118.11154100000016, 33.92190799912566], [-118.1117980000001, 33.920984999125544], [-118.11172800000018, 33.91908399912559], [-118.11128100000012, 33.91702399912566], [-118.11088000000014, 33.91378199912574], [-118.10980000000029, 33.90971399912575], [-118.13409000000016, 33.90976399912579], [-118.13519700000026, 33.909684999125695], [-118.13823200000014, 33.90896299912579], [-118.13959300000019, 33.90915699912575], [-118.14240400000018, 33.91045299912579], [-118.14290000000018, 33.90864699912572], [-118.14273400000016, 33.902454999125865], [-118.143039, 33.9024869991259], [-118.145286, 33.90352299912586], [-118.145316, 33.90378499912583], [-118.1475210000003, 33.9044849991258], [-118.15103800000023, 33.9061899991258], [-118.15147100000023, 33.90621199912583], [-118.15145700000025, 33.90638999912581], [-118.15329200000018, 33.907272999125766], [-118.14928800000018, 33.91373499912564], [-118.17058400000016, 33.92368399912556], [-118.167768, 33.92572199912562], [-118.1676270000002, 33.92592799912558], [-118.16767400000029, 33.92695599912557], [-118.16688800000017, 33.927433999125554], [-118.16673300000025, 33.92743399912553], [-118.16631900000014, 33.926830999125556], [-118.165349, 33.927455999125534], [-118.16505300000017, 33.92685399912552], [-118.1642120000002, 33.926472999125465], [-118.16272000000014, 33.92662599912542], [-118.16271900000018, 33.92687299912552], [-118.1623600000001, 33.92742299912551], [-118.16178700000013, 33.928923999125516], [-118.16274300000028, 33.92919899912546], [-118.162567, 33.93015699912553], [-118.16377300000018, 33.93333399912542], [-118.16491600000016, 33.93319599912546], [-118.16588200000017, 33.93587299912546], [-118.1646480000002, 33.93877799912539], [-118.164697, 33.93925499912548], [-118.16446500000016, 33.94029599912544], [-118.1639420000001, 33.94086899912542], [-118.16210300000014, 33.94201399912535], [-118.15810500000016, 33.94844099912525], [-118.15611900000016, 33.95102599912522], [-118.15849300000022, 33.9520359991252], [-118.157647, 33.952884999125224], [-118.155064, 33.95474199912517], [-118.1405890000003, 33.96263599912503], [-118.13947800000017, 33.963029999125055], [-118.13741200000014, 33.965836999125095], [-118.1366680000001, 33.96745299912506], [-118.13360200000011, 33.97111299912486], [-118.12726900000021, 33.97095199912505], [-118.12491300000023, 33.97052799912506], [-118.1212110000002, 33.97289899912497], [-118.1189190000003, 33.970547999124946]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Downey", "population": 1.1426445578231292, "cases": 215.0, "resource_uri": "/1.0/boundary/downey-la-county-neighborhood-current/", "external_id": "downey", "slug": "downey-la-county-neighborhood-current", "metadata": {"sqmi": 12.5294779177, "type": "standalone-city", "name": "Downey", "slug": "downey"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.24020700000014, 34.05871099912385], [-118.239507, 34.05841099912376], [-118.237706, 34.05841099912376], [-118.229806, 34.056110999123874], [-118.227306, 34.05511099912379], [-118.22890600000017, 34.053210999123834], [-118.230306, 34.048011999124036], [-118.228406, 34.038611999124115], [-118.227406, 34.03451199912409], [-118.22646400000012, 34.02943499912414], [-118.2262060000001, 34.02931199912413], [-118.223906, 34.01851299912442], [-118.22291280880971, 34.01494244501524], [-118.223232, 34.014940999124484], [-118.223395, 34.015368999124405], [-118.223705, 34.015362999124406], [-118.223692, 34.014941999124474], [-118.225696, 34.01493699912441], [-118.225707, 34.015318999124375], [-118.2275010000001, 34.01528099912441], [-118.227673, 34.014920999124406], [-118.23970817900988, 34.01470622792806], [-118.23950600000016, 34.0200129991243], [-118.24400600000013, 34.02091299912429], [-118.2533070000001, 34.025912999124266], [-118.27410700000011, 34.03541199912403], [-118.274007, 34.038411999124044], [-118.27360100000013, 34.04113399912407], [-118.272807, 34.04291199912408], [-118.271807, 34.04441199912395], [-118.27120700000015, 34.04511199912397], [-118.270507, 34.04561199912394], [-118.26096100000017, 34.05126499912385], [-118.26148, 34.051571999123865], [-118.26074500000013, 34.05197799912394], [-118.259729, 34.05299999912385], [-118.259807, 34.05311099912405], [-118.259107, 34.053910999123936], [-118.255793, 34.057424999123896], [-118.254207, 34.05931099912385], [-118.252307, 34.06231099912379], [-118.249307, 34.06531099912374], [-118.24460700000013, 34.06131099912382], [-118.24020700000014, 34.05871099912385]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Downtown", "population": 0.667691265676166, "cases": 181.0, "resource_uri": "/1.0/boundary/downtown-la-county-neighborhood-current/", "external_id": "downtown", "slug": "downtown-la-county-neighborhood-current", "metadata": {"sqmi": 5.83816978008, "type": "segment-of-a-city", "name": "Downtown", "slug": "downtown"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.924704, 34.19432499912225], [-117.92479600000019, 34.165505999122644], [-117.94174700000015, 34.16522799912267], [-117.94150800000014, 34.15350599912281], [-117.93824700000015, 34.153504999122724], [-117.93815100000033, 34.15203899912283], [-117.9350590000003, 34.15382299912284], [-117.93516000000021, 34.154326999122766], [-117.93399000000018, 34.15372899912274], [-117.934101, 34.15344299912278], [-117.93087300000015, 34.15107599912282], [-117.93067300000014, 34.1506929991227], [-117.930023, 34.15053199912274], [-117.93157700000026, 34.14912999912286], [-117.9324260000002, 34.14798099912286], [-117.93751400000019, 34.14298499912285], [-117.939702, 34.14053999912298], [-117.94286200000015, 34.13872699912286], [-117.94324800000012, 34.13769199912292], [-117.943592, 34.13734999912297], [-117.94380700000012, 34.137491999122986], [-117.94442800000016, 34.13695499912298], [-117.94629500000022, 34.137757999122975], [-117.94686000000013, 34.13718399912295], [-117.946958, 34.13738499912295], [-117.94891200000015, 34.13575099912295], [-117.95200000000013, 34.135910999123006], [-117.95205200000015, 34.136125999123045], [-117.96002700000015, 34.136075999122994], [-117.96066600000017, 34.13535499912296], [-117.9602320000001, 34.13489599912304], [-117.960115, 34.13222299912308], [-117.96769500000015, 34.13206499912304], [-117.9692660000002, 34.13221699912297], [-117.96922700000017, 34.130318999123006], [-117.96966200000021, 34.12844999912307], [-117.97058300000012, 34.12816999912305], [-117.97269600000013, 34.126467999123115], [-117.97358500000016, 34.12515499912309], [-117.97753600000013, 34.12500999912313], [-117.97754500000022, 34.125288999123114], [-117.979198, 34.1251069991231], [-117.97928100000028, 34.12627499912316], [-117.98194200000017, 34.12626899912317], [-117.98193000000015, 34.12664899912305], [-117.982314, 34.12666199912308], [-117.98236800000018, 34.126798999123125], [-117.98444900000011, 34.12604499912303], [-117.98523800000022, 34.12621599912314], [-117.98581900000013, 34.12491999912314], [-117.9863710000002, 34.12462299912317], [-117.98623900000017, 34.12359099912307], [-117.98695700000019, 34.12378599912305], [-117.98786500000013, 34.12138599912313], [-117.99054300000022, 34.122120999123155], [-117.98677100000013, 34.13188099912297], [-117.98633700000022, 34.13242699912307], [-117.98630000000013, 34.13946999912304], [-117.9811050000002, 34.13952099912298], [-117.98108700000014, 34.140228999122925], [-117.9797030000002, 34.14013599912291], [-117.9796970000001, 34.14322799912288], [-117.97754600000015, 34.14324699912287], [-117.97755300000013, 34.143635999122864], [-117.97538053584937, 34.143677262903644], [-117.96312300000014, 34.14378199912293], [-117.96312400000016, 34.143679999122874], [-117.961586, 34.143499999122824], [-117.96002900000015, 34.14342599912286], [-117.95155, 34.14351699912286], [-117.95159800000016, 34.14451799912283], [-117.95130800000018, 34.14577899912286], [-117.95129700000027, 34.1483059991228], [-117.95150500000013, 34.150420999122794], [-117.96005200000019, 34.151784999122825], [-117.960054, 34.1650539991226], [-117.94439700000014, 34.1652059991227], [-117.94447100000015, 34.16704999912267], [-117.94153600000017, 34.1670529991225], [-117.94179900000015, 34.1805009991225], [-117.95959400000021, 34.180580999122455], [-117.9595930000002, 34.194175999122294], [-117.924704, 34.19432499912225]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Duarte", "population": 0.26443949577348463, "cases": 73.0, "resource_uri": "/1.0/boundary/duarte-la-county-neighborhood-current/", "external_id": "duarte", "slug": "duarte-la-county-neighborhood-current", "metadata": {"sqmi": 6.68890771425, "type": "standalone-city", "name": "Duarte", "slug": "duarte"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.198191, 34.1516259991227], [-118.198195, 34.1490449991229], [-118.19040900000013, 34.14904899912281], [-118.1839200000001, 34.148672999122795], [-118.18421300000013, 34.146279999122775], [-118.18456100000013, 34.14540099912282], [-118.182435, 34.14395499912291], [-118.18218, 34.143396999122885], [-118.182206, 34.14306099912283], [-118.181164, 34.142198999122826], [-118.18075700000018, 34.141299999122914], [-118.180082, 34.14109099912298], [-118.180198, 34.140817999122966], [-118.181956, 34.140635999122885], [-118.18312800000014, 34.14025999912295], [-118.184342, 34.139406999122905], [-118.184893, 34.139552999122934], [-118.185683, 34.13903299912289], [-118.185672, 34.13885399912286], [-118.185395, 34.13884099912291], [-118.185526, 34.13856599912286], [-118.185524, 34.137334999122984], [-118.185796, 34.13736799912294], [-118.185686, 34.13666199912297], [-118.185887, 34.13618299912293], [-118.185206, 34.136067999122936], [-118.185531, 34.13472599912297], [-118.186097, 34.133731999122936], [-118.182817, 34.131210999122914], [-118.18282421238357, 34.129715995032996], [-118.185605, 34.128907999122994], [-118.185705, 34.128507999122995], [-118.187605, 34.128107999122946], [-118.188905, 34.13100799912296], [-118.190705, 34.13070799912289], [-118.190805, 34.13110799912307], [-118.191205, 34.13110799912302], [-118.191305, 34.130507999123], [-118.192505, 34.129807999122946], [-118.193906, 34.129507999123], [-118.194506, 34.12640799912301], [-118.19550600000014, 34.12650799912305], [-118.19810600000015, 34.12640799912301], [-118.19823500000014, 34.12661399912298], [-118.198606, 34.12620799912295], [-118.20000600000016, 34.12730799912308], [-118.200006, 34.12790799912306], [-118.200306, 34.128107999122946], [-118.2022060000001, 34.125207999122956], [-118.203506, 34.12540799912299], [-118.20390600000016, 34.12370799912302], [-118.20830600000014, 34.124407999122965], [-118.20890600000011, 34.121807999123064], [-118.213706, 34.12260799912307], [-118.216206, 34.12320799912308], [-118.216806, 34.12080799912305], [-118.2155060000001, 34.12060799912311], [-118.21440600000012, 34.120207999123096], [-118.213506, 34.11940799912322], [-118.212906, 34.11770799912302], [-118.213706, 34.116207999123134], [-118.215006, 34.11640799912308], [-118.21710600000011, 34.117507999123085], [-118.21870600000011, 34.117807999123016], [-118.221306, 34.11980799912314], [-118.222406, 34.12100799912303], [-118.223706, 34.121607999123135], [-118.224407, 34.122307999123066], [-118.22540700000015, 34.12180799912311], [-118.226207, 34.12370799912307], [-118.228407, 34.12530799912306], [-118.2285070000001, 34.12800799912295], [-118.229607, 34.132907999123034], [-118.229607, 34.13560099912295], [-118.227751, 34.13560099912295], [-118.22787700000013, 34.13808399912294], [-118.229149, 34.13807899912285], [-118.229156, 34.13907299912289], [-118.228784, 34.13907299912289], [-118.228769, 34.14589699912277], [-118.228889, 34.14611999912285], [-118.228577, 34.14588099912278], [-118.228237, 34.14644699912288], [-118.228683, 34.14673499912293], [-118.228602, 34.14688599912278], [-118.22816300000015, 34.1468309991228], [-118.22826000000013, 34.14745199912278], [-118.227649, 34.14742299912279], [-118.227452, 34.14775499912279], [-118.22700400000012, 34.14762799912287], [-118.226939, 34.14860999912273], [-118.22623100000013, 34.149788999122784], [-118.224967, 34.14936299912289], [-118.222455, 34.14925399912281], [-118.221172, 34.14805699912281], [-118.21963, 34.14743799912283], [-118.2194760000001, 34.14695299912282], [-118.21614, 34.14694799912282], [-118.21557400000012, 34.146658999122884], [-118.2120960000001, 34.14658399912291], [-118.210933, 34.14617299912284], [-118.20877400000015, 34.14650699912281], [-118.207723, 34.147246999122814], [-118.20543200000012, 34.14743099912283], [-118.204229, 34.149278999122856], [-118.203573, 34.14969199912273], [-118.2027010000001, 34.15063299912271], [-118.19892, 34.15115399912277], [-118.198191, 34.1516259991227]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Eagle Rock", "population": 0.39588281868566905, "cases": 85.0, "resource_uri": "/1.0/boundary/eagle-rock-la-county-neighborhood-current/", "external_id": "eagle-rock", "slug": "eagle-rock-la-county-neighborhood-current", "metadata": {"sqmi": 4.25075591913, "type": "segment-of-a-city", "name": "Eagle Rock", "slug": "eagle-rock"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.19912354025867, 33.888730741436795], [-118.19909135090923, 33.88825339742004], [-118.19817040406151, 33.88825519193469], [-118.19792837727402, 33.88503133366695], [-118.19730389284038, 33.88503527181222], [-118.19699000000026, 33.883127999126145], [-118.19788300000027, 33.8830239991261], [-118.19780500000029, 33.882321999126184], [-118.19732000000015, 33.8824209991262], [-118.19727600000033, 33.88181399912612], [-118.20430034313723, 33.88161109788058], [-118.20611800000033, 33.888082999126084], [-118.20206700000027, 33.88811499912605], [-118.20194400000027, 33.886314999125915], [-118.20042900000026, 33.88632899912607], [-118.20056802684428, 33.888722039309606], [-118.19912354025867, 33.888730741436795]]], [[[-118.18667100000032, 33.90242099912591], [-118.18688500000016, 33.89947199912593], [-118.18765000000029, 33.89486599912596], [-118.18812558453853, 33.894876191553664], [-118.18814917625687, 33.89471969848668], [-118.1894649054186, 33.89470440593607], [-118.18988650409626, 33.90056758561338], [-118.18936087311208, 33.900569240061685], [-118.18943433442489, 33.90164079565197], [-118.18867600000027, 33.90169499912584], [-118.18867905308794, 33.90153379609553], [-118.18842035170083, 33.901536605984305], [-118.18842305750736, 33.90194717704714], [-118.1889360713866, 33.90194216307575], [-118.18893163509485, 33.902226929310594], [-118.1894777125967, 33.90222241474438], [-118.18952328324464, 33.902812315369296], [-118.18810179036139, 33.90282479573152], [-118.1881035111768, 33.90316906253992], [-118.18745131028793, 33.903173552030246], [-118.18734936109787, 33.903003842951705], [-118.1868300000004, 33.90298099912583], [-118.18667100000032, 33.90242099912591]]], [[[-118.18861700000026, 33.905628999125945], [-118.18645100000028, 33.9054179991258], [-118.18586000000023, 33.90498599912588], [-118.1866741078711, 33.9044511190716], [-118.1867710000003, 33.90367199912591], [-118.18778742131515, 33.90361433726687], [-118.18777356739399, 33.90339581141091], [-118.18892724927026, 33.90345501375038], [-118.18908000801557, 33.90373325363014], [-118.18964699051199, 33.903726874487496], [-118.18977650612199, 33.905578125741975], [-118.1896100000003, 33.90574899912589], [-118.18861700000026, 33.905628999125945]]], [[[-118.19838557785026, 33.906232632462896], [-118.19477097986014, 33.905900383711355], [-118.1943877614949, 33.90573519115312], [-118.19454969690736, 33.9052428417405], [-118.1944698811339, 33.903989606805496], [-118.19488844188464, 33.9039766124913], [-118.19482166101164, 33.90288751993622], [-118.19439519910192, 33.90288932809374], [-118.19438489379606, 33.9027496470665], [-118.19405204477432, 33.90274835595454], [-118.19420321921662, 33.905028319462694], [-118.19398037209426, 33.9058278321315], [-118.19068425107787, 33.90552527063626], [-118.19058292338642, 33.90406197441287], [-118.19167871776843, 33.904059171427946], [-118.19164612489176, 33.90358797108455], [-118.19196013072975, 33.903587649973176], [-118.19173461589726, 33.90056075572997], [-118.19389778998095, 33.90054373767008], [-118.1938382659937, 33.89986319092622], [-118.19417440532743, 33.89986074952802], [-118.19406800452956, 33.898421519425966], [-118.19307212095906, 33.898431687601644], [-118.19321556700294, 33.900379828055144], [-118.19017354101422, 33.90056657778116], [-118.18942302062159, 33.8895334811571], [-118.19396199213217, 33.889481921925224], [-118.1939394395833, 33.889168051366454], [-118.19501312100742, 33.88915454961513], [-118.19498207575874, 33.88875569335093], [-118.19726842971873, 33.888741714546825], [-118.19747112918719, 33.89284665686301], [-118.19811688224227, 33.89283952906163], [-118.19834654849218, 33.89609739934425], [-118.19896017999598, 33.89612942911352], [-118.19925719659565, 33.90039255683176], [-118.19978440531754, 33.900385661157905], [-118.19987176822698, 33.90162860514702], [-118.19931709570628, 33.90165318843739], [-118.19933049365493, 33.901935171472694], [-118.19989208218479, 33.90191518432079], [-118.19991110012357, 33.90218777586955], [-118.19934357801941, 33.902207095878836], [-118.19938368907795, 33.90301245245662], [-118.19774623485677, 33.90303566103589], [-118.19782847829072, 33.90395766608124], [-118.20030245029635, 33.904094387284594], [-118.20046212215557, 33.90642254717908], [-118.19838557785026, 33.906232632462896]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "East Compton", "population": 0.15307820299500832, "cases": 23.0, "resource_uri": "/1.0/boundary/east-compton-la-county-neighborhood-current/", "external_id": "east-compton", "slug": "east-compton-la-county-neighborhood-current", "metadata": {"sqmi": 0.834359225737, "type": "unincorporated-area", "name": "East Compton", "slug": "east-compton"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.293009, 34.10170899912326], [-118.289308, 34.099508999123266], [-118.284208, 34.09590899912338], [-118.284808, 34.09590899912351], [-118.28450800000012, 34.076809999123604], [-118.28570800000014, 34.07680999912369], [-118.286908, 34.07650999912369], [-118.289608, 34.07640999912368], [-118.309309, 34.07640999912364], [-118.309409, 34.10160899912327], [-118.29460900000011, 34.10180899912332], [-118.293009, 34.10170899912326]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "East Hollywood", "population": 0.47121159694981424, "cases": 226.0, "resource_uri": "/1.0/boundary/east-hollywood-la-county-neighborhood-current/", "external_id": "east-hollywood", "slug": "east-hollywood-la-county-neighborhood-current", "metadata": {"sqmi": 2.3787363778, "type": "segment-of-a-city", "name": "East Hollywood", "slug": "east-hollywood"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.98590697168177, 33.929752005583225], [-117.98544100000029, 33.92952701019746], [-117.98544198582002, 33.92989499736043], [-117.98289897167798, 33.928754005581105], [-117.98071698560848, 33.92825200278653], [-117.97627198583459, 33.92818500235223], [-117.97639297166938, 33.927627005578245], [-117.97629697167012, 33.924712005574385], [-117.97649499293017, 33.91731200309702], [-117.99197198583809, 33.91721300077769], [-117.9916849929255, 33.91762200074486], [-117.99243898584622, 33.91745100234174], [-117.99233399264867, 33.91804500401989], [-117.99433798603225, 33.91821300015908], [-117.99439900001842, 33.924505002269846], [-117.99743298587913, 33.924475001246655], [-118.00351298585576, 33.923077002358234], [-118.00525199056703, 33.92826800126907], [-117.99020598579895, 33.931808002322256], [-117.98590697168177, 33.929752005583225]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "East La Mirada", "population": 0.1059754872886973, "cases": 11.0, "resource_uri": "/1.0/boundary/east-la-mirada-la-county-neighborhood-current/", "external_id": "east-la-mirada", "slug": "east-la-mirada-la-county-neighborhood-current", "metadata": {"sqmi": 1.11006524514, "type": "unincorporated-area", "name": "East La Mirada", "slug": "east-la-mirada"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.1777348536693, 34.062299460399196], [-118.17306685363698, 34.06229246050904], [-118.17339400000023, 34.062098999123926], [-118.1733189109832, 34.06198636559942], [-118.17302300000028, 34.06212099912398], [-118.17283190173335, 34.06183335642105], [-118.17183502817716, 34.062290914076364], [-118.169256147444, 34.06228774733536], [-118.16927536651994, 34.048354602193726], [-118.16806453897017, 34.04835296862878], [-118.16823286943297, 34.04787941473156], [-118.16822513860102, 34.0466124131354], [-118.16889149816194, 34.04591209627887], [-118.16911268982604, 34.04492645782553], [-118.16939851762861, 34.04479286901199], [-118.16960384823983, 34.04419761128106], [-118.15713373095463, 34.04431404000623], [-118.15714335412788, 34.04062957035081], [-118.15733778693881, 34.04062742123656], [-118.15728320237395, 34.03626101492489], [-118.15504630571944, 34.036207934120704], [-118.15373685260893, 34.03601246093278], [-118.15265685257573, 34.03525646095645], [-118.15159785252844, 34.03407846097912], [-118.15056385254417, 34.03474446100463], [-118.15019685254391, 34.03481246101309], [-118.14647385247174, 34.033445461099376], [-118.14408091992253, 34.0334665639896], [-118.14406066157905, 34.032281437060014], [-118.14286384580458, 34.03215940825749], [-118.14287221808104, 34.03091801553211], [-118.14384259071653, 34.03091128554585], [-118.14384209677854, 34.03039648707542], [-118.14285685234337, 34.03039946118089], [-118.14284252277348, 34.02723789722135], [-118.14355351347838, 34.02627947987469], [-118.14283411058769, 34.02584779227811], [-118.14282507654612, 34.02473140254949], [-118.14322287977146, 34.024325099924674], [-118.14309034102031, 34.02424603632555], [-118.14339217943905, 34.02389263936936], [-118.13019695188058, 34.015978665439455], [-118.13040821652456, 34.015261139836845], [-118.1307364479508, 34.01530176369506], [-118.13102724212835, 34.01446716338173], [-118.1306743440788, 34.014392337016886], [-118.130774026981, 34.01407331237659], [-118.12664885164338, 34.01310946154104], [-118.12745854407366, 34.008037959322834], [-118.14753357406867, 34.00976709497764], [-118.14707347316671, 34.01343192463749], [-118.14676066575277, 34.01338826069679], [-118.14663880141666, 34.01432014860755], [-118.14696232960776, 34.014367375566415], [-118.14654768826213, 34.01767173975721], [-118.1462244718977, 34.0176110021798], [-118.14615362697589, 34.018056385190064], [-118.15365285205004, 34.019630460911664], [-118.15890151107361, 34.01061852775393], [-118.17589985215561, 34.018273460383995], [-118.17591285192178, 34.01141146037482], [-118.18123985197956, 34.012036460249846], [-118.18129380228605, 34.01566390149157], [-118.18732768432446, 34.015647148061035], [-118.18734085217558, 34.01656946011203], [-118.19223385220816, 34.01654645999698], [-118.19237985277802, 34.03323346001479], [-118.19128885277173, 34.03327446004116], [-118.1912718527834, 34.0336134600425], [-118.19129385281089, 34.03441746004169], [-118.19184585281462, 34.03441646002904], [-118.19184085280048, 34.03400446002813], [-118.19238685280425, 34.03400246001554], [-118.19262785375241, 34.06176246004635], [-118.18130585367503, 34.06175446031374], [-118.18130485369164, 34.06224946031432], [-118.1777348536693, 34.062299460399196]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "East Los Angeles", "population": 1.2526733883287504, "cases": 369.0, "resource_uri": "/1.0/boundary/east-los-angeles-la-county-neighborhood-current/", "external_id": "east-los-angeles", "slug": "east-los-angeles-la-county-neighborhood-current", "metadata": {"sqmi": 7.46596436352, "type": "unincorporated-area", "name": "East Los Angeles", "slug": "east-los-angeles"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.06776997172146, 34.14792200588523], [-118.06746798594686, 34.13150900367181], [-118.06903398666716, 34.13139800066032], [-118.06938798622414, 34.130989003417156], [-118.06931898592258, 34.130649002723445], [-118.07439997173681, 34.13032000586392], [-118.0814489717468, 34.12937700586437], [-118.08408197175072, 34.12886200586431], [-118.09098697176098, 34.12684000586334], [-118.09315797176227, 34.13148300586977], [-118.09428798081052, 34.13521599967081], [-118.08976798585586, 34.135159004274946], [-118.08969898586867, 34.133676000852375], [-118.08750698588824, 34.1336910041355], [-118.08749598577826, 34.131275001682724], [-118.08598598583373, 34.13143200569855], [-118.08600697878217, 34.1330100003724], [-118.08399398587288, 34.133008004190074], [-118.08381897174857, 34.13371800587054], [-118.08321797174547, 34.140324005878995], [-118.08368697174598, 34.14084100587976], [-118.08307998586626, 34.140466000839375], [-118.08152898587804, 34.140472004162575], [-118.08152198586038, 34.139591000860726], [-118.07892198588127, 34.139609004139565], [-118.07895998587969, 34.142250004147385], [-118.08350097879139, 34.14222000173377], [-118.0832699858708, 34.14470600419962], [-118.08670897881169, 34.14470700165893], [-118.08696597751269, 34.145191000551726], [-118.08643098588954, 34.14519600412917], [-118.08639197907169, 34.145546000536584], [-118.08459398589181, 34.145747004112025], [-118.08459697878395, 34.146214000512906], [-118.08250498588394, 34.14623000414144], [-118.08250198577502, 34.145720001502724], [-118.08049798571061, 34.14572700469697], [-118.08043798586714, 34.14524000082559], [-118.07986098587249, 34.14524100418194], [-118.07988298586474, 34.14476100083494], [-118.07923098587437, 34.14476300417194], [-118.07957897821865, 34.14624800049935], [-118.07810498588101, 34.14625800413971], [-118.07796198019733, 34.14663799916634], [-118.07773698567618, 34.14661900477561], [-118.07775597869303, 34.14739700171521], [-118.07371898602852, 34.14786200133115], [-118.07339199920165, 34.14776502469844], [-118.07342397872857, 34.15021400107754], [-118.06782399323541, 34.15028700491922], [-118.06776997172146, 34.14792200588523]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "East Pasadena", "population": 0, "cases": 0.0, "resource_uri": "/1.0/boundary/east-pasadena-la-county-neighborhood-current/", "external_id": "east-pasadena", "slug": "east-pasadena-la-county-neighborhood-current", "metadata": {"sqmi": 1.30792712424, "type": "unincorporated-area", "name": "East Pasadena", "slug": "east-pasadena"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.08045400000019, 34.09946399912345], [-118.08046200000037, 34.09924399912346], [-118.08146567451566, 34.09927168669631], [-118.0814470000003, 34.09946399912345], [-118.08045400000019, 34.09946399912345]]], [[[-118.08242419637058, 34.100010549544464], [-118.08241000000041, 34.09924299912351], [-118.08338400000027, 34.09924299912349], [-118.08337200000022, 34.09945099912344], [-118.08304300000025, 34.099510999123424], [-118.0830240000003, 34.09977599912343], [-118.08365206046896, 34.09977599912343], [-118.08365016843156, 34.1000043071483], [-118.08242419637058, 34.100010549544464]]], [[[-118.07954252363652, 34.1012420274355], [-118.07953495531764, 34.09991288702816], [-118.08124692246061, 34.09992905087876], [-118.0812420000003, 34.10120199912346], [-118.08044100000023, 34.10109799912346], [-118.08043300000023, 34.101352999123414], [-118.08121474922872, 34.102544456894144], [-118.07954960616232, 34.1025019695304], [-118.07954252363652, 34.1012420274355]]], [[[-118.08326974812468, 34.10253543777262], [-118.08326818476246, 34.10239227508149], [-118.08297173343126, 34.10239446694963], [-118.08295400000027, 34.10218399912343], [-118.08228600000022, 34.10218699912336], [-118.08227700000042, 34.10129899912347], [-118.0836197037223, 34.10131907257437], [-118.0835810000003, 34.10263599912338], [-118.08326974812468, 34.10253543777262]]], [[[-118.08473594810985, 34.10303084474523], [-118.08449994722065, 34.10295135267634], [-118.08449144651883, 34.10248721612322], [-118.08396819963406, 34.102488322548126], [-118.08394600000028, 34.10087699912348], [-118.08224000000028, 34.100833999123466], [-118.08226000000028, 34.100464999123474], [-118.08457300000026, 34.10043099912343], [-118.08457800000033, 34.099571999123484], [-118.08520200000031, 34.09950399912348], [-118.0852330000003, 34.09908099912348], [-118.08593000000033, 34.099081999123484], [-118.08590100000038, 34.099708999123486], [-118.08678547356898, 34.099689251705406], [-118.08678362863613, 34.09953427292643], [-118.08742437617528, 34.09943746818752], [-118.08850400000031, 34.099650999123455], [-118.08850300000032, 34.09930799912343], [-118.08956000000029, 34.09929099912342], [-118.08957800000026, 34.0999549991235], [-118.08915300000025, 34.09996599912345], [-118.08917200000018, 34.10030999912345], [-118.0896160000003, 34.10032499912349], [-118.08974206334871, 34.102240681187695], [-118.09031112284897, 34.10223712347689], [-118.09027800000023, 34.10236799912347], [-118.08973200000031, 34.10236699912342], [-118.08974201116496, 34.10292507245122], [-118.08473594810985, 34.10303084474523]]], [[[-118.07616300000016, 34.10200599912334], [-118.07577300000023, 34.100229999123435], [-118.07568900000038, 34.09842199912363], [-118.07534200000025, 34.09842699912343], [-118.07503900000036, 34.09800999912355], [-118.07344500000023, 34.09709699912352], [-118.07333097787667, 34.09056297992054], [-118.08762800000031, 34.0952839991235], [-118.08952000000023, 34.09834199912345], [-118.08935300000029, 34.09902299912346], [-118.08887000000028, 34.0989649991235], [-118.08878700000031, 34.098511999123495], [-118.0879974063735, 34.09856177363026], [-118.08799838719901, 34.098677183993445], [-118.08767056505721, 34.09867897316226], [-118.08766800000032, 34.09854199912351], [-118.08671909419176, 34.09856447128157], [-118.08670274849727, 34.09788747676352], [-118.08622095521345, 34.09788900840079], [-118.0862960000003, 34.097409999123535], [-118.08669300000032, 34.097409999123535], [-118.08668906419813, 34.09690536962112], [-118.08630882701175, 34.0969083795907], [-118.08634800000026, 34.096708999123535], [-118.08609110817802, 34.09671146923716], [-118.08608683686107, 34.096523958396716], [-118.08493107511742, 34.09653095722505], [-118.0849347557487, 34.096965671129695], [-118.08370764626028, 34.09697281837061], [-118.0837248451352, 34.09844247582768], [-118.08308427215613, 34.09844654665598], [-118.0830851585705, 34.098599239594684], [-118.08288200000027, 34.09860699912346], [-118.08299500000031, 34.098971999123435], [-118.0823692164157, 34.09896115021227], [-118.0823692093209, 34.09793456005314], [-118.08280100000016, 34.09715999912346], [-118.0822260000003, 34.0937989991235], [-118.08143200000026, 34.0935819991236], [-118.08147800000037, 34.098971999123435], [-118.07764800000031, 34.09887199912341], [-118.0778230000003, 34.10144399912346], [-118.0775560000002, 34.101441999123296], [-118.07753228121126, 34.10168906984225], [-118.07720631092455, 34.10169001343458], [-118.07720980048809, 34.10315401865949], [-118.07629000000028, 34.10316899912348], [-118.07616300000016, 34.10200599912334]]], [[[-118.06788798569245, 34.13072600471117], [-118.06787098579795, 34.12976300116216], [-118.06735398592652, 34.12978800384528], [-118.0672899859459, 34.12535500368531], [-118.06772998579083, 34.12532500069267], [-118.06794898588251, 34.12414600256586], [-118.06815800000035, 34.12398599912318], [-118.06716200000028, 34.124144999123196], [-118.06702000000027, 34.1230189991232], [-118.0664990000003, 34.123362999123124], [-118.06132000000025, 34.124101999123084], [-118.06123900000028, 34.12368099912317], [-118.06054400000014, 34.12391899912315], [-118.06047000000015, 34.12353099912318], [-118.05984800000029, 34.12362199912316], [-118.05961500000028, 34.12249599912319], [-118.05833100000024, 34.122674999123184], [-118.05791700000032, 34.12061799912321], [-118.05713800000021, 34.120726999123086], [-118.0565760000003, 34.1183369991232], [-118.0630370000003, 34.117413999123194], [-118.06374900000031, 34.12099599912315], [-118.06804697924503, 34.120399002448245], [-118.06832398592027, 34.11956300276056], [-118.0728779858923, 34.118664002045804], [-118.07412598725422, 34.117857004572095], [-118.07392098595635, 34.11745800362762], [-118.07415998536734, 34.117440000799775], [-118.07387798584763, 34.11675700238249], [-118.07312698595771, 34.11692000304789], [-118.0735869858707, 34.11354900416237], [-118.07937898587463, 34.11352400080336], [-118.07946000004766, 34.114040002270784], [-118.07992598536978, 34.11403300013011], [-118.07988598590055, 34.11390600259944], [-118.08047498585752, 34.1137760023054], [-118.08046398588434, 34.11351900412583], [-118.08230198586499, 34.11350700003227], [-118.08220998588702, 34.106267004117385], [-118.08332198586989, 34.10626399996233], [-118.08331998578055, 34.10588100162273], [-118.08272398587835, 34.10590900415662], [-118.08275397843796, 34.10610800038177], [-118.08240198587801, 34.106108004156695], [-118.08220097175588, 34.10559800583366], [-118.08214498604892, 34.104011005112476], [-118.08390798572066, 34.104007000043865], [-118.0838779860286, 34.103688005337396], [-118.08450197188154, 34.103708002029066], [-118.08448598577694, 34.103896004508336], [-118.08499797196656, 34.10392200177136], [-118.08500298589094, 34.10525200410901], [-118.08806298588166, 34.10523100003194], [-118.08806398580127, 34.10489900128592], [-118.08790198596314, 34.10491000367156], [-118.08786698592684, 34.10380900513553], [-118.08854397885938, 34.10381800149918], [-118.0885499859246, 34.1041380039542], [-118.09014197194915, 34.10412200184356], [-118.09019998597694, 34.104699003511094], [-118.090487978686, 34.10467300260842], [-118.09048697882136, 34.10521500049666], [-118.08857098589317, 34.10522800411072], [-118.0885909787634, 34.10623000053933], [-118.08666398589689, 34.106249004087836], [-118.08669198589006, 34.10810100411938], [-118.09105798586977, 34.108068000863476], [-118.091173985876, 34.11402299994215], [-118.09019099990543, 34.1140210029372], [-118.09015100000023, 34.11440299912322], [-118.09020199204006, 34.114908005277556], [-118.09119198587123, 34.11495900085413], [-118.09135300000032, 34.12164399912327], [-118.09121900000027, 34.12218299912325], [-118.09030600000034, 34.123365999123244], [-118.09023100000027, 34.12394199912318], [-118.09040998569466, 34.124904001025925], [-118.08933298597607, 34.12501000347186], [-118.08935897278921, 34.12533700821679], [-118.08808198537074, 34.12589500132513], [-118.08825097913584, 34.12695600511985], [-118.08794598566627, 34.12705900186517], [-118.08820298566029, 34.127577001873675], [-118.08998598600888, 34.12703500291717], [-118.08999198555819, 34.126410001639044], [-118.09077497240425, 34.126115007570114], [-118.09098697176098, 34.12684000586334], [-118.08493997175192, 34.12865800586422], [-118.0814489717468, 34.12937700586437], [-118.07439997173681, 34.13032000586392], [-118.06788798569245, 34.13072600471117]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "East San Gabriel", "population": 0.24034334763948498, "cases": 14.0, "resource_uri": "/1.0/boundary/east-san-gabriel-la-county-neighborhood-current/", "external_id": "east-san-gabriel", "slug": "east-san-gabriel-la-county-neighborhood-current", "metadata": {"sqmi": 2.18274231728, "type": "unincorporated-area", "name": "East San Gabriel", "slug": "east-san-gabriel"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.248307, 34.085909999123466], [-118.24880700000013, 34.08540999912357], [-118.24890700000012, 34.083809999123595], [-118.249807, 34.082509999123495], [-118.248107, 34.080809999123595], [-118.2490070000001, 34.078009999123516], [-118.24880700000013, 34.07700999912362], [-118.247407, 34.07251099912374], [-118.244407, 34.06981099912366], [-118.245807, 34.06881099912385], [-118.247707, 34.06581099912388], [-118.248507, 34.065410999123756], [-118.249107, 34.06551099912368], [-118.25160700000015, 34.063110999123765], [-118.252307, 34.06231099912379], [-118.254207, 34.05931099912385], [-118.25523400000012, 34.05805899912392], [-118.256595, 34.058954999123756], [-118.25950700000013, 34.06191099912397], [-118.25990700000013, 34.0646109991238], [-118.261318, 34.069746999123645], [-118.264607, 34.07091099912361], [-118.27300800000012, 34.07480999912358], [-118.274408, 34.07530999912364], [-118.27190800000012, 34.079209999123485], [-118.269808, 34.08140999912357], [-118.266708, 34.08650999912349], [-118.26610800000012, 34.08640999912353], [-118.2645080000001, 34.08560999912344], [-118.263408, 34.08730999912355], [-118.25990700000013, 34.08580999912346], [-118.25920700000013, 34.08990999912353], [-118.258507, 34.09160999912347], [-118.254507, 34.094609999123485], [-118.253607, 34.095708999123396], [-118.25180700000011, 34.09860899912342], [-118.250607, 34.101008999123444], [-118.249807, 34.09930899912341], [-118.244607, 34.095808999123335], [-118.24400700000018, 34.095608999123314], [-118.243907, 34.095009999123405], [-118.2442070000001, 34.09450999912347], [-118.245207, 34.09380999912345], [-118.2451070000001, 34.09240999912341], [-118.24530700000012, 34.09170999912344], [-118.24560700000012, 34.09130999912338], [-118.24370700000011, 34.09050999912354], [-118.243607, 34.0892099991235], [-118.246307, 34.08760999912351], [-118.248307, 34.085909999123466]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Echo Park", "population": 0.5623989838887847, "cases": 180.0, "resource_uri": "/1.0/boundary/echo-park-la-county-neighborhood-current/", "external_id": "echo-park", "slug": "echo-park-la-county-neighborhood-current", "metadata": {"sqmi": 2.39828121013, "type": "segment-of-a-city", "name": "Echo Park", "slug": "echo-park"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.39463388187708, 34.674006343751735], [-118.38152492940901, 34.673975697162916], [-118.38151838125953, 34.66670802800072], [-118.36834644544045, 34.66690373478488], [-118.36836945361495, 34.662831008680726], [-118.36741517171961, 34.662833894566475], [-118.36693286182201, 34.66355181255327], [-118.36626517990618, 34.66318245896136], [-118.36596307934037, 34.66352879466963], [-118.36531554382984, 34.66333050864169], [-118.36523450953436, 34.66355225260418], [-118.36409468142247, 34.66335154726451], [-118.35960564354032, 34.66342718023054], [-118.3596436208913, 34.65974836300545], [-118.35895046417315, 34.659725268134075], [-118.355944951554, 34.65903361504448], [-118.35589454354545, 34.65974971689978], [-118.34200057682048, 34.659752091816365], [-118.34193448117229, 34.6450462977256], [-118.36395031417817, 34.64500977936099], [-118.36393494143661, 34.64140969804397], [-118.37705086789477, 34.64136573099436], [-118.37708549561563, 34.64492917936304], [-118.39458324333593, 34.644862788494365], [-118.39456925757831, 34.655778460541896], [-118.40772403675865, 34.6557424703629], [-118.40776264102543, 34.65941992776606], [-118.43041073366388, 34.65943725166697], [-118.43048784601469, 34.66660947903074], [-118.41726197545313, 34.666587304256275], [-118.41730070685684, 34.673871772097286], [-118.39463388187708, 34.674006343751735]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Elizabeth Lake", "population": 0.01661129568106312, "cases": 1.0, "resource_uri": "/1.0/boundary/elizabeth-lake-la-county-neighborhood-current/", "external_id": "elizabeth-lake", "slug": "elizabeth-lake-la-county-neighborhood-current", "metadata": {"sqmi": 6.30556759372, "type": "unincorporated-area", "name": "Elizabeth Lake", "slug": "elizabeth-lake"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.00574300000021, 34.09964799912341], [-118.001097, 34.098071999123505], [-118.000304, 34.099686999123406], [-117.997465, 34.098680999123495], [-117.99789800000013, 34.097968999123424], [-117.99865000000015, 34.09728099912348], [-117.997651, 34.096894999123414], [-118.00186200000012, 34.0882619991236], [-117.998926, 34.0872649991236], [-117.998653, 34.08700699912365], [-118.00023900000028, 34.08292099912375], [-118.00105500000015, 34.079112999123794], [-118.00121500000023, 34.076473999123714], [-118.001434, 34.07540799912371], [-118.00489900000018, 34.065160999123925], [-118.0046320000002, 34.06498899912382], [-118.00464200000013, 34.064376999123844], [-118.0059630000002, 34.06419699912382], [-118.0064020000002, 34.06358399912391], [-118.007064, 34.06358099912393], [-118.007712, 34.063227999123924], [-118.00820400000015, 34.062522999123836], [-118.00896800000012, 34.0626019991239], [-118.00979700000016, 34.06087799912392], [-118.01036700000023, 34.06106899912393], [-118.00966700000018, 34.06250999912378], [-118.01030800000018, 34.06276099912386], [-118.01052, 34.06368999912387], [-118.01141200000022, 34.06359899912392], [-118.01164800000018, 34.063131999123904], [-118.01142400000013, 34.06307199912392], [-118.011115, 34.06333299912391], [-118.0115940000002, 34.062398999123886], [-118.01184400000017, 34.062507999123895], [-118.0124810000002, 34.06105399912391], [-118.00742800000022, 34.057790999123995], [-118.00927700000024, 34.05236099912404], [-118.01002400000021, 34.050722999124], [-118.0120540000001, 34.047705999124], [-118.01373900000029, 34.04595899912409], [-118.01631500000016, 34.044007999124034], [-118.02179100000023, 34.04139299912414], [-118.02466900000022, 34.04400299912413], [-118.02575700000014, 34.043094999124065], [-118.02799900000012, 34.04490999912404], [-118.0258870000002, 34.04620999912398], [-118.02632300000026, 34.046650999124026], [-118.026544, 34.04645799912405], [-118.0278020000002, 34.0474149991241], [-118.02825700000012, 34.04704599912404], [-118.03122200000027, 34.04949899912402], [-118.03371800000029, 34.051903999124036], [-118.03426400000016, 34.05153599912398], [-118.03472000000022, 34.051856999124105], [-118.034308, 34.052207999124064], [-118.03427600000016, 34.05325499912397], [-118.03381400000015, 34.053199999123976], [-118.033868, 34.05378599912396], [-118.03440700000017, 34.053822999124016], [-118.034604, 34.056025999123975], [-118.03629800000012, 34.0560349991239], [-118.03619900000018, 34.056758999123986], [-118.037299, 34.056789999123936], [-118.03730000000019, 34.0574099991239], [-118.03815200000017, 34.057411999124], [-118.03814100000015, 34.05859599912385], [-118.0401200000003, 34.05860199912393], [-118.04010200000022, 34.05803699912395], [-118.041029, 34.05803699912395], [-118.0410550000002, 34.0586079991239], [-118.04393400000018, 34.058631999123946], [-118.045163, 34.0590839991239], [-118.05359700000012, 34.05908799912389], [-118.05350000000017, 34.05730999912396], [-118.05486500000018, 34.05717899912397], [-118.054793, 34.05599199912393], [-118.05564000000028, 34.05603899912395], [-118.05564000000028, 34.056746999123995], [-118.05632700000018, 34.056760999123945], [-118.05655800000022, 34.0590249991239], [-118.05784100000017, 34.059088999123894], [-118.05785600000011, 34.05859699912393], [-118.05815700000014, 34.05859699912393], [-118.05813800000021, 34.05944599912396], [-118.057843, 34.05949999912394], [-118.05784800000016, 34.06070999912387], [-118.05689200000018, 34.06077799912393], [-118.05692500000018, 34.061690999123805], [-118.05640400000013, 34.06171299912395], [-118.0563920000001, 34.06218399912387], [-118.0556690000002, 34.06218899912384], [-118.05567100000013, 34.06241399912389], [-118.05534900000028, 34.06239299912382], [-118.05540500000025, 34.063390999123854], [-118.05580300000024, 34.06338199912385], [-118.05580700000013, 34.06370899912383], [-118.05654300000022, 34.06363399912385], [-118.05655200000015, 34.06403399912391], [-118.05678600000016, 34.06402999912381], [-118.05679400000017, 34.06360799912403], [-118.057374, 34.06360799912387], [-118.05736900000015, 34.06388299912387], [-118.05910300000022, 34.063807999123796], [-118.05924500000015, 34.06362299912391], [-118.05964500000015, 34.0636129991239], [-118.05965900000018, 34.0638129991239], [-118.05974900000017, 34.06366499912392], [-118.06014400000018, 34.06365599912389], [-118.06014600000016, 34.06387699912389], [-118.06037200000011, 34.063873999123885], [-118.06035800000016, 34.064044999123894], [-118.06062800000014, 34.06403599912383], [-118.06059900000015, 34.064402999123836], [-118.06143900000016, 34.064437999123925], [-118.06142600000021, 34.06359699912392], [-118.06315100000026, 34.06360699912392], [-118.06314900000018, 34.06409999912388], [-118.06354600000017, 34.06404899912394], [-118.06355200000017, 34.06371399912383], [-118.06397200000026, 34.06366499912392], [-118.06400100000019, 34.063305999123905], [-118.06475300000014, 34.06326799912388], [-118.06509600000017, 34.063417999123935], [-118.06553100000032, 34.063088999123885], [-118.0665270000002, 34.06419699912382], [-118.06834300000018, 34.06431799912383], [-118.06861400000032, 34.06411199912383], [-118.06895800000015, 34.06268899912387], [-118.07036, 34.062690999123916], [-118.06956500000018, 34.06422899912386], [-118.06924000000022, 34.06410699912378], [-118.0689080000002, 34.06433299912384], [-118.069121, 34.06569899912392], [-118.06895900000018, 34.065781999123764], [-118.068222, 34.06488199912388], [-118.06756500000029, 34.065165999123856], [-118.072231, 34.069679999123785], [-118.0728540000002, 34.07095699912372], [-118.07292700000032, 34.07226599912368], [-118.055601, 34.072451999123885], [-118.05575200000014, 34.08029399912365], [-118.05606800000017, 34.08042999912366], [-118.05575500000023, 34.0807789991237], [-118.055777, 34.08409199912366], [-118.055956, 34.08455899912358], [-118.05618300000012, 34.08491999912364], [-118.05676100000014, 34.08510299912354], [-118.05765100000012, 34.08285899912365], [-118.05985800000012, 34.083242999123584], [-118.06003100000014, 34.08270399912356], [-118.06047000000012, 34.08264199912356], [-118.06058200000015, 34.08227299912366], [-118.05928600000016, 34.082107999123494], [-118.05966400000017, 34.08128799912366], [-118.0630020000003, 34.08118899912365], [-118.062032, 34.085998999123625], [-118.06220700000014, 34.08690199912355], [-118.05864600000011, 34.08571699912358], [-118.05836100000018, 34.08619499912359], [-118.05665700000013, 34.085358999123706], [-118.0561780000002, 34.0866719991236], [-118.056189, 34.08707099912355], [-118.05594200000023, 34.08721399912358], [-118.05502500000017, 34.08945499912353], [-118.055562, 34.08963699912356], [-118.05581500000011, 34.089302999123646], [-118.05657600000012, 34.089155999123626], [-118.05679100000023, 34.08955599912358], [-118.051951, 34.090302999123544], [-118.05210500000015, 34.09098199912354], [-118.05184200000028, 34.09101699912355], [-118.05170600000022, 34.090336999123615], [-118.04278, 34.09157599912347], [-118.04297300000017, 34.0924239991234], [-118.042423, 34.092536999123475], [-118.04221000000021, 34.09166199912352], [-118.03996000000016, 34.0920009991235], [-118.04001400000023, 34.09231999912351], [-118.03870400000014, 34.09248599912351], [-118.0386440000002, 34.092189999123505], [-118.03621900000012, 34.09254899912353], [-118.03624900000013, 34.0933409991235], [-118.0347680000002, 34.093597999123524], [-118.03491400000021, 34.09399299912354], [-118.03428800000016, 34.09389699912351], [-118.03344300000018, 34.094122999123485], [-118.03290100000017, 34.09407699912349], [-118.03322100000021, 34.096399999123356], [-118.02854502972912, 34.097089231202155], [-118.0281420000001, 34.09703599912351], [-118.02791970732932, 34.0971926820613], [-118.02737709992856, 34.09683954986519], [-118.02574609412284, 34.097823892109425], [-118.02581813047559, 34.09674058512515], [-118.02555394455366, 34.096714481623145], [-118.02560260888261, 34.09631745961805], [-118.02178051417602, 34.098228992445236], [-118.02187083146423, 34.09839533166656], [-118.0203170000001, 34.09919099912338], [-118.0201250000001, 34.09652799912344], [-118.017388, 34.0968269991235], [-118.01638600000018, 34.09672799912348], [-118.012932, 34.09840399912345], [-118.01207, 34.09924899912338], [-118.01122, 34.09966899912337], [-118.010283, 34.09956499912343], [-118.009566, 34.10094599912344], [-118.00574300000021, 34.09964799912341]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "El Monte", "population": 1.1727244485865176, "cases": 151.0, "resource_uri": "/1.0/boundary/el-monte-la-county-neighborhood-current/", "external_id": "el-monte", "slug": "el-monte-la-county-neighborhood-current", "metadata": {"sqmi": 9.69174808989, "type": "standalone-city", "name": "El Monte", "slug": "el-monte"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.40205900000015, 33.931494999125654], [-118.39801500000014, 33.93088599912554], [-118.380286, 33.93092299912541], [-118.378726, 33.930544999125594], [-118.37872400000015, 33.929007999125545], [-118.37842898371586, 33.92900800175238], [-118.37838297917543, 33.919734001560904], [-118.37639499305293, 33.91973100322599], [-118.37640497921032, 33.917218001415634], [-118.37432499301596, 33.917186003367576], [-118.37434098050281, 33.91630600022576], [-118.378388, 33.916374999125665], [-118.37868000000014, 33.91488999912567], [-118.3787010000002, 33.90190499912588], [-118.40170100000024, 33.901959999125765], [-118.414413, 33.90189599912582], [-118.41550200000017, 33.90173499912576], [-118.41560400000017, 33.90189099912577], [-118.41742600000018, 33.90167099912583], [-118.41950900000019, 33.906184999125884], [-118.42327939601124, 33.90486737284448], [-118.42417699376662, 33.90731599916022], [-118.42457100565737, 33.90771101068051], [-118.42568301464692, 33.90973899603785], [-118.42666202029032, 33.91100300133559], [-118.42724701404295, 33.91092397798683], [-118.42733198255732, 33.91104698503718], [-118.42891497491517, 33.91471699350963], [-118.43013647438055, 33.91676320708832], [-118.4298150000001, 33.91672699912565], [-118.42944700000015, 33.91631799912566], [-118.4222210000002, 33.916328999125604], [-118.4222220000002, 33.91995699912571], [-118.42439100000016, 33.91995799912563], [-118.42439600000013, 33.92176999912552], [-118.42657100000024, 33.92176899912559], [-118.42657400000012, 33.9235829991256], [-118.42766000000012, 33.92358199912559], [-118.42766700000016, 33.92720299912558], [-118.42875400000021, 33.92720099912571], [-118.428775, 33.93096999912551], [-118.425423, 33.93135099912551], [-118.40205900000015, 33.931494999125654]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "El Segundo", "population": 0.22813033844492933, "cases": 34.0, "resource_uri": "/1.0/boundary/el-segundo-la-county-neighborhood-current/", "external_id": "el-segundo", "slug": "el-segundo-la-county-neighborhood-current", "metadata": {"sqmi": 5.45900812963, "type": "standalone-city", "name": "El Segundo", "slug": "el-segundo"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.17799421052638, 34.09860899912342], [-118.15529, 34.09867199912344], [-118.155463, 34.09751499912345], [-118.156191, 34.09650799912349], [-118.159498, 34.094170999123456], [-118.15935300000011, 34.094529999123345], [-118.160673, 34.093740999123455], [-118.160496, 34.07513099912369], [-118.161761, 34.07463499912366], [-118.161562, 34.07297099912378], [-118.161717, 34.07179299912374], [-118.163371, 34.06974699912387], [-118.162032, 34.069673999123786], [-118.164011, 34.06571199912374], [-118.164433, 34.06450599912381], [-118.16483500000012, 34.06228299912383], [-118.17138700000018, 34.06228999912394], [-118.172831, 34.06183199912377], [-118.173023, 34.06212099912393], [-118.17331800000015, 34.061984999123794], [-118.173394, 34.06209899912383], [-118.173064, 34.06229199912391], [-118.17907800000013, 34.0622969991239], [-118.18130200000014, 34.0622489991238], [-118.181303, 34.061753999123866], [-118.192705, 34.0617309991237], [-118.192805, 34.06391099912392], [-118.197305, 34.06481099912375], [-118.196105, 34.06630999912371], [-118.19530500000012, 34.0690099991236], [-118.19400500000012, 34.07580999912377], [-118.193305, 34.078609999123536], [-118.19370500000014, 34.07960999912369], [-118.193605, 34.079909999123494], [-118.193205, 34.080709999123556], [-118.190805, 34.08320999912352], [-118.18740500000015, 34.08620999912353], [-118.184305, 34.08580999912346], [-118.184305, 34.086908999123416], [-118.18410500000016, 34.08770899912359], [-118.17799437103525, 34.10275336728524], [-118.17799421052638, 34.09860899912342]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "El Sereno", "population": 0.4523616697411459, "cases": 100.0, "resource_uri": "/1.0/boundary/el-sereno-la-county-neighborhood-current/", "external_id": "el-sereno", "slug": "el-sereno-la-county-neighborhood-current", "metadata": {"sqmi": 4.16777889868, "type": "segment-of-a-city", "name": "El Sereno", "slug": "el-sereno"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.225402, 34.0739299991236], [-118.225106, 34.07190999912367], [-118.226906, 34.07180999912379], [-118.230006, 34.071110999123654], [-118.23540600000011, 34.067410999123744], [-118.235906, 34.06691099912367], [-118.239207, 34.067810999123694], [-118.23980700000011, 34.067610999123694], [-118.240307, 34.06711099912365], [-118.24180700000011, 34.06771099912384], [-118.247407, 34.07251099912374], [-118.2490070000001, 34.078009999123516], [-118.248107, 34.080809999123595], [-118.249807, 34.082509999123495], [-118.24890700000012, 34.083809999123595], [-118.24880700000013, 34.08540999912357], [-118.246307, 34.08760999912351], [-118.243607, 34.0892099991235], [-118.24370700000011, 34.09050999912354], [-118.24560700000012, 34.09130999912338], [-118.24530700000012, 34.09170999912344], [-118.2451070000001, 34.09240999912341], [-118.245207, 34.09380999912345], [-118.2442070000001, 34.09450999912347], [-118.243907, 34.095009999123405], [-118.24400700000018, 34.095608999123314], [-118.2434070000001, 34.094609999123485], [-118.23660000000015, 34.08823799912337], [-118.23110600000015, 34.08530999912353], [-118.229406, 34.083909999123534], [-118.22740600000016, 34.08290999912356], [-118.226906, 34.08100999912357], [-118.226306, 34.08000999912354], [-118.22661800000013, 34.079945999123645], [-118.225402, 34.0739299991236]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Elysian Park", "population": 0.05712109672505712, "cases": 9.0, "resource_uri": "/1.0/boundary/elysian-park-la-county-neighborhood-current/", "external_id": "elysian-park", "slug": "elysian-park-la-county-neighborhood-current", "metadata": {"sqmi": 1.64508429808, "type": "segment-of-a-city", "name": "Elysian Park", "slug": "elysian-park"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.228006, 34.08830999912348], [-118.22740600000016, 34.08290999912356], [-118.229406, 34.083909999123534], [-118.23110600000015, 34.08530999912353], [-118.23660000000015, 34.08823799912337], [-118.2434070000001, 34.094609999123485], [-118.24400700000018, 34.095608999123314], [-118.244607, 34.095808999123335], [-118.249807, 34.09930899912341], [-118.250807, 34.101308999123404], [-118.253407, 34.10430899912336], [-118.255807, 34.10540899912328], [-118.25650700000011, 34.10590899912326], [-118.25350700000016, 34.1085089991233], [-118.24910700000017, 34.10860899912322], [-118.24640700000015, 34.107708999123304], [-118.243107, 34.105808999123184], [-118.242207, 34.10460899912327], [-118.24240700000011, 34.1013089991233], [-118.24200700000016, 34.09930899912338], [-118.240307, 34.09660899912335], [-118.238407, 34.09480899912341], [-118.23330700000011, 34.093609999123366], [-118.232207, 34.09320999912347], [-118.230606, 34.09220999912347], [-118.22860600000014, 34.08990999912355], [-118.228006, 34.08830999912348]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Elysian Valley", "population": 0.10170969148060251, "cases": 21.0, "resource_uri": "/1.0/boundary/elysian-valley-la-county-neighborhood-current/", "external_id": "elysian-valley", "slug": "elysian-valley-la-county-neighborhood-current", "metadata": {"sqmi": 0.789759467071, "type": "segment-of-a-city", "name": "Elysian Valley", "slug": "elysian-valley"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.52391700000014, 34.186503999122294], [-118.518417, 34.186403999122305], [-118.518517, 34.182504999122315], [-118.516417, 34.1824049991224], [-118.516417, 34.18090499912246], [-118.518517, 34.18090499912231], [-118.51851800000011, 34.18000199912236], [-118.509917, 34.18000499912242], [-118.507617, 34.17990499912238], [-118.507617, 34.17950499912239], [-118.505817, 34.17950499912237], [-118.50593400000012, 34.172127999122345], [-118.49966200000013, 34.17210799912244], [-118.498916, 34.17192199912239], [-118.498065, 34.17113999912251], [-118.49629700000011, 34.16833799912247], [-118.495663, 34.167606999122455], [-118.49437800000018, 34.1669159991226], [-118.49251900000012, 34.16662499912253], [-118.492516, 34.16530499912248], [-118.49008900000011, 34.165112999122584], [-118.47748700000011, 34.16511299912252], [-118.47596800000011, 34.16499199912247], [-118.474749, 34.16458599912259], [-118.472215, 34.16270499912256], [-118.471677, 34.16257999912253], [-118.47079, 34.16276399912256], [-118.470332, 34.16315099912252], [-118.46996, 34.163774999122545], [-118.469932, 34.158840999122695], [-118.46887800000016, 34.15510299912261], [-118.468524, 34.15293399912268], [-118.4685230000001, 34.15165799912272], [-118.469134, 34.14983099912269], [-118.47078100000016, 34.14645799912285], [-118.47131600000016, 34.14462999912281], [-118.47171600000011, 34.13762299912291], [-118.472559, 34.13386299912297], [-118.474133, 34.129844999122966], [-118.476115, 34.126005999122974], [-118.47763700000012, 34.125944999123114], [-118.478241, 34.12618399912304], [-118.478519, 34.126655999123], [-118.479364, 34.12951599912305], [-118.47998500000011, 34.13001299912292], [-118.48806700000016, 34.12995799912298], [-118.490015, 34.13060599912304], [-118.490415, 34.131205999122926], [-118.4928150000001, 34.13110599912298], [-118.494415, 34.130105999122975], [-118.49601500000014, 34.130005999122936], [-118.496815, 34.1305059991229], [-118.500916, 34.12910599912313], [-118.5022160000001, 34.12950599912306], [-118.502016, 34.13060599912289], [-118.5026160000001, 34.12840599912297], [-118.50411600000014, 34.128005999123026], [-118.508516, 34.131205999122926], [-118.51041600000013, 34.130705999122924], [-118.510716, 34.13030599912292], [-118.52711600000013, 34.12910599912314], [-118.526381, 34.13256099912293], [-118.525955, 34.13381899912295], [-118.52186700000014, 34.14194899912273], [-118.52135700000017, 34.14316999912286], [-118.521267, 34.14429099912278], [-118.52145900000014, 34.14699899912286], [-118.5226930000001, 34.147624999122684], [-118.52324, 34.14767499912268], [-118.52375600000013, 34.147387999122834], [-118.52413600000011, 34.146400999122775], [-118.52598, 34.145353999122726], [-118.52629, 34.14492199912285], [-118.526317, 34.14420599912277], [-118.5271510000001, 34.14415599912281], [-118.527131, 34.14320899912283], [-118.527879, 34.14217999912288], [-118.528283, 34.14201399912289], [-118.52961400000015, 34.14345399912275], [-118.528302, 34.143476999122775], [-118.52815300000012, 34.14415199912272], [-118.530177, 34.144970999122826], [-118.53046400000012, 34.14684399912277], [-118.53045400000013, 34.14825199912279], [-118.53022900000013, 34.14858599912274], [-118.530477, 34.148912999122736], [-118.53050700000011, 34.14931799912273], [-118.53045600000011, 34.149606999122724], [-118.53015400000014, 34.14986099912284], [-118.528688, 34.14994199912266], [-118.527823, 34.14975599912274], [-118.527542, 34.14920599912274], [-118.527745, 34.14859299912272], [-118.52738100000015, 34.14831299912267], [-118.527117, 34.147704999122745], [-118.526717, 34.147892999122654], [-118.52654500000014, 34.148284999122794], [-118.526484, 34.1505059991227], [-118.52574400000012, 34.15113999912266], [-118.52571500000012, 34.15230599912272], [-118.525207, 34.153526999122704], [-118.525504, 34.15416999912268], [-118.5258970000001, 34.15445599912262], [-118.528717, 34.15450499912269], [-118.527317, 34.15850499912255], [-118.527317, 34.186492999122315], [-118.52391700000014, 34.186503999122294]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Encino", "population": 0.4517100451710045, "cases": 84.0, "resource_uri": "/1.0/boundary/encino-la-county-neighborhood-current/", "external_id": "encino", "slug": "encino-la-county-neighborhood-current", "metadata": {"sqmi": 9.49970700034, "type": "segment-of-a-city", "name": "Encino", "slug": "encino"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.305408, 34.025711999124255], [-118.2914080000001, 34.025511999124234], [-118.291502, 34.01841599912441], [-118.279743, 34.01846799912429], [-118.28080700000015, 34.01691299912441], [-118.281107, 34.01591299912426], [-118.28120700000012, 34.01401299912447], [-118.281107, 34.011012999124475], [-118.2827070000001, 34.011112999124464], [-118.290007, 34.01081299912435], [-118.318008, 34.01091199912451], [-118.31800800000012, 34.01831199912425], [-118.317708, 34.01891199912424], [-118.31760800000012, 34.0204119991243], [-118.317708, 34.02561199912427], [-118.305408, 34.025711999124255]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Exposition Park", "population": 0.48243384408643364, "cases": 137.0, "resource_uri": "/1.0/boundary/exposition-park-la-county-neighborhood-current/", "external_id": "exposition-park", "slug": "exposition-park-la-county-neighborhood-current", "metadata": {"sqmi": 1.84679077622, "type": "segment-of-a-city", "name": "Exposition Park", "slug": "exposition-park"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.35170177864867, 34.08895370627337], [-118.34411082129512, 34.08889339451736], [-118.34421000000012, 34.08510899912352], [-118.34401000000011, 34.0736089991236], [-118.3441100000001, 34.06890999912375], [-118.34741000000012, 34.069109999123796], [-118.35331000000014, 34.07030899912368], [-118.36151000000012, 34.07150899912359], [-118.361706, 34.087159999123486], [-118.3528, 34.087128999123514], [-118.352802, 34.08896199912352], [-118.35170177864867, 34.08895370627337]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Fairfax", "population": 0.7769641890141972, "cases": 330.0, "resource_uri": "/1.0/boundary/fairfax-la-county-neighborhood-current/", "external_id": "fairfax", "slug": "fairfax-la-county-neighborhood-current", "metadata": {"sqmi": 1.23396477314, "type": "segment-of-a-city", "name": "Fairfax", "slug": "fairfax"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.25643597484533, 33.98949800000806], [-118.23902099059029, 33.98940300074955], [-118.2389539860213, 33.977176000716106], [-118.2376499859944, 33.97716600411244], [-118.23763198600784, 33.974738000768774], [-118.23023298128115, 33.9747450017675], [-118.2302759720096, 33.96199400568195], [-118.22954298608478, 33.961380002832904], [-118.23150498589129, 33.96101400192399], [-118.22740500330457, 33.94270504053751], [-118.2278079929869, 33.943089003275816], [-118.22949698601849, 33.943100000711944], [-118.23016499540618, 33.94564800324394], [-118.23482297661437, 33.945569001542786], [-118.2348549825035, 33.94713199984878], [-118.23063099555189, 33.947234001196065], [-118.23062199498438, 33.948278004336984], [-118.23402597663946, 33.94824300144705], [-118.23399499532731, 33.95326400351861], [-118.24421897673241, 33.953260001190124], [-118.24420999533903, 33.95427000349184], [-118.24744998955585, 33.95425699967499], [-118.24748498246419, 33.95335800524089], [-118.24883898885045, 33.95335799973406], [-118.24913798248149, 33.943273005368475], [-118.25363997668333, 33.943277001380025], [-118.25353299537922, 33.95126000336672], [-118.25398499008061, 33.95125599966319], [-118.25409997956001, 33.951032009346484], [-118.25592998951826, 33.95306000158193], [-118.25589899532868, 33.96016900353739], [-118.25639297674022, 33.960171001206376], [-118.25643597484533, 33.98949800000806]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Florence-Firestone", "population": 1.1214954945792501, "cases": 322.0, "resource_uri": "/1.0/boundary/florence-firestone-la-county-neighborhood-current/", "external_id": "florence-firestone", "slug": "florence-firestone-la-county-neighborhood-current", "metadata": {"sqmi": 3.57948601666, "type": "unincorporated-area", "name": "Florence-Firestone", "slug": "florence-firestone"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.25643598601832, 33.989214002424], [-118.256406, 33.9600149991251], [-118.268006, 33.960113999125], [-118.280807, 33.95991399912499], [-118.28080700000015, 33.979013999124824], [-118.28040700000011, 33.98591399912475], [-118.280507, 33.989013999124694], [-118.25643598601832, 33.989214002424]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Florence", "population": null, "cases": null, "resource_uri": "/1.0/boundary/florence-la-county-neighborhood-current/", "external_id": "florence", "slug": "florence-la-county-neighborhood-current", "metadata": {"sqmi": 2.79767885323, "type": "segment-of-a-city", "name": "Florence", "slug": "florence"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.32439200000027, 33.916466999125646], [-118.2917109954455, 33.91643600101184], [-118.29178800000012, 33.89412099912597], [-118.2905650000001, 33.8671659991263], [-118.29062400000018, 33.86633299912635], [-118.29143000000022, 33.865733999126284], [-118.29197, 33.865544999126335], [-118.29806800000013, 33.86555299912631], [-118.298063, 33.866421999126416], [-118.29449900000016, 33.86646999912624], [-118.29434900000011, 33.87062799912628], [-118.2991430000002, 33.8705309991263], [-118.29931900000011, 33.86569799912624], [-118.30895300000012, 33.86569099912635], [-118.308912, 33.871244999126226], [-118.30912100000019, 33.87305299912622], [-118.31311900000017, 33.87301499912619], [-118.31326700000012, 33.87685299912632], [-118.31320800000024, 33.88194599912607], [-118.31347600000032, 33.88706099912601], [-118.31781800000032, 33.88552299912604], [-118.32648800000018, 33.882820999126096], [-118.32649100000015, 33.90862399912576], [-118.3266890000002, 33.91282999912564], [-118.32650200000016, 33.9128199991257], [-118.32650400000028, 33.91640499912566], [-118.32439200000027, 33.916466999125646]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Gardena", "population": 0.6130922354584611, "cases": 158.0, "resource_uri": "/1.0/boundary/gardena-la-county-neighborhood-current/", "external_id": "gardena", "slug": "gardena-la-county-neighborhood-current", "metadata": {"sqmi": 5.84389184747, "type": "standalone-city", "name": "Gardena", "slug": "gardena"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.229607, 34.13560099912295], [-118.229607, 34.132907999123034], [-118.2285070000001, 34.12800799912295], [-118.228407, 34.12530799912306], [-118.226207, 34.12370799912307], [-118.22540700000015, 34.12180799912311], [-118.224407, 34.122307999123066], [-118.223706, 34.121607999123135], [-118.222406, 34.12100799912303], [-118.221306, 34.11980799912314], [-118.21870600000011, 34.117807999123016], [-118.219506, 34.11610799912322], [-118.22260600000011, 34.11690799912317], [-118.22300600000014, 34.11650799912317], [-118.22290600000015, 34.116207999123134], [-118.224106, 34.11530799912305], [-118.223906, 34.114807999123094], [-118.220906, 34.11110899912325], [-118.221006, 34.11030899912313], [-118.22230600000017, 34.1081089991232], [-118.22460600000011, 34.106808999123274], [-118.225406, 34.10610899912325], [-118.22810700000011, 34.10500899912333], [-118.229007, 34.10480899912335], [-118.231607, 34.10480899912335], [-118.237207, 34.10200899912338], [-118.23060700000015, 34.09420899912352], [-118.232207, 34.09320999912347], [-118.23330700000011, 34.093609999123366], [-118.238407, 34.09480899912341], [-118.240307, 34.09660899912335], [-118.24200700000016, 34.09930899912338], [-118.24240700000011, 34.1013089991233], [-118.242207, 34.10460899912327], [-118.243107, 34.105808999123184], [-118.24640700000015, 34.107708999123304], [-118.24910700000017, 34.10860899912322], [-118.248207, 34.11040899912321], [-118.246007, 34.112108999123265], [-118.24780700000017, 34.11310899912321], [-118.25414859778775, 34.118850727904785], [-118.251133, 34.1209469991231], [-118.25364, 34.1233029991231], [-118.253159, 34.12457099912308], [-118.252089, 34.12440399912315], [-118.235238, 34.12671999912302], [-118.235312, 34.12760199912312], [-118.236019, 34.1288299991232], [-118.236608, 34.13271499912293], [-118.236273, 34.13449799912296], [-118.233605, 34.13450999912291], [-118.233598, 34.13559999912305], [-118.229607, 34.13560099912295]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Glassell Park", "population": 0.31603817004694545, "cases": 103.0, "resource_uri": "/1.0/boundary/glassell-park-la-county-neighborhood-current/", "external_id": "glassell-park", "slug": "glassell-park-la-county-neighborhood-current", "metadata": {"sqmi": 2.75291010512, "type": "segment-of-a-city", "name": "Glassell Park", "slug": "glassell-park"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.23880700000025, 34.25250199912161], [-118.23880799072293, 34.25220200343297], [-118.24337198070417, 34.25205000079636], [-118.24346799838864, 34.24659502272611], [-118.24386798549607, 34.246857002134035], [-118.24435197911619, 34.24671000486777], [-118.24441098541071, 34.24607000862188], [-118.24525998313598, 34.2463919993944], [-118.24626699009632, 34.24538500547694], [-118.24641898445749, 34.24549999436937], [-118.24668898603652, 34.24509900293404], [-118.2471059808798, 34.244912007292356], [-118.24691898511112, 34.24427600099688], [-118.24705798682706, 34.2442010041767], [-118.24735198481463, 34.24443699428907], [-118.24777498462971, 34.24382900729731], [-118.24851198146635, 34.24400900768967], [-118.24875297194775, 34.22249500602399], [-118.24431897194218, 34.22070900602064], [-118.24435197194302, 34.218706006018095], [-118.24339798539282, 34.21810200831064], [-118.24304198227037, 34.218451999885744], [-118.24274998091725, 34.21835000729745], [-118.24253098306623, 34.218493000180935], [-118.24054997193824, 34.217156006015216], [-118.24063397193832, 34.21696400601486], [-118.23995597193765, 34.21658600601434], [-118.2399589726424, 34.21767997527341], [-118.239426985733, 34.217455004959305], [-118.23929197193665, 34.216566006014105], [-118.237031971934, 34.21508600601172], [-118.23754197193487, 34.21448400601096], [-118.23519997193218, 34.2130310060086], [-118.23524197193365, 34.208808006003075], [-118.23374197967928, 34.20804000002238], [-118.23301298567172, 34.20791600682252], [-118.23300398603635, 34.208319002812416], [-118.23258798581439, 34.20843700219901], [-118.23202897192967, 34.207267006000315], [-118.23117098593947, 34.20701500692239], [-118.23070198708812, 34.20775699716499], [-118.23038097192729, 34.20763600600043], [-118.23076197192809, 34.206887005999704], [-118.22976898492455, 34.20659000754728], [-118.22946598736422, 34.20729699761618], [-118.22915097192566, 34.20719200599958], [-118.22934897192619, 34.20657500599879], [-118.22915498501376, 34.20650200772612], [-118.22891098757394, 34.20710499747948], [-118.22851297192494, 34.2069660059992], [-118.22866597884102, 34.206124002237274], [-118.2272029845568, 34.20592100649238], [-118.22696598578239, 34.206586999532504], [-118.22566298597516, 34.20656700421774], [-118.22581197982333, 34.20565799979994], [-118.22496698548123, 34.20551300538633], [-118.22501597905439, 34.20539600130129], [-118.22416998587661, 34.20536300456533], [-118.22415497878713, 34.20521600281122], [-118.22333798606093, 34.20530100353634], [-118.22341598640428, 34.20584699927293], [-118.22211298603118, 34.20577000563872], [-118.22213298112396, 34.206109000238065], [-118.22047400000018, 34.206257999122116], [-118.2203250000002, 34.204860999122175], [-118.21731500000018, 34.205521999122055], [-118.21635600000019, 34.206200999122075], [-118.21500700000021, 34.20663199912214], [-118.21500700000021, 34.20380399912225], [-118.21563000000016, 34.20382399912212], [-118.21577600000015, 34.203397999122195], [-118.21680700000022, 34.20330399912215], [-118.21670700000027, 34.20090499912219], [-118.215901, 34.200756999122135], [-118.215807, 34.1984049991222], [-118.21420700000016, 34.1977049991222], [-118.21397000000019, 34.19665099912226], [-118.21073100000015, 34.194599999122296], [-118.21270700000015, 34.19240499912229], [-118.21230900000013, 34.19262599912233], [-118.21181300000013, 34.19090299912231], [-118.21022900000021, 34.189842999122234], [-118.2074180000001, 34.189044999122366], [-118.20790600000015, 34.18730499912238], [-118.20589800000015, 34.18704499912237], [-118.20520200000017, 34.18570799912234], [-118.20179100000014, 34.183713999122396], [-118.198867, 34.181690999122466], [-118.19786100000023, 34.1812319991224], [-118.1964380000001, 34.179893999122456], [-118.19533800000018, 34.18010599912233], [-118.19125300000013, 34.18035099912247], [-118.19120000000018, 34.180011999122364], [-118.19023000000013, 34.17910199912241], [-118.189791, 34.179311999122454], [-118.189633, 34.17896599912246], [-118.18954000000015, 34.17904399912242], [-118.1887730000002, 34.178512999122425], [-118.18888600000011, 34.17831699912246], [-118.1885320000002, 34.17813599912243], [-118.1888140000002, 34.177915999122405], [-118.190447, 34.1747019991225], [-118.19109800000018, 34.17413499912259], [-118.190811, 34.17205099912252], [-118.18958600000013, 34.168770999122636], [-118.189083, 34.168847999122605], [-118.18812600000011, 34.16638699912255], [-118.1886560000002, 34.165248999122596], [-118.18736200000026, 34.16488499912268], [-118.184956, 34.160059999122666], [-118.18436000000015, 34.16010699912274], [-118.1820050000002, 34.1502029991228], [-118.1824470000003, 34.14856199912283], [-118.19040900000023, 34.14904899912285], [-118.19819500000013, 34.149044999122935], [-118.19819100000016, 34.15162599912275], [-118.19892, 34.15115399912278], [-118.2027010000002, 34.15063299912276], [-118.20357300000012, 34.149691999122766], [-118.20422900000017, 34.149278999122885], [-118.20543200000021, 34.14743099912286], [-118.20772300000012, 34.14724699912286], [-118.20877400000025, 34.14650699912285], [-118.210933, 34.14617299912287], [-118.2120960000002, 34.14658399912293], [-118.21557400000025, 34.146658999122906], [-118.21614000000014, 34.146947999122844], [-118.2194760000002, 34.146952999122874], [-118.21963000000015, 34.147437999122864], [-118.22117200000012, 34.148056999122836], [-118.222455, 34.149253999122834], [-118.2249670000001, 34.149362999122935], [-118.2262310000002, 34.14978899912284], [-118.226939, 34.148609999122776], [-118.22700400000022, 34.14762799912292], [-118.227452, 34.14775499912281], [-118.227649, 34.147422999122846], [-118.2282600000002, 34.147451999122836], [-118.22816300000025, 34.14683099912285], [-118.228602, 34.14688599912283], [-118.22868300000017, 34.14673499912298], [-118.22823700000016, 34.14644699912291], [-118.22857700000013, 34.14588099912282], [-118.2288890000002, 34.14611999912292], [-118.228769, 34.14589699912282], [-118.228784, 34.13907299912292], [-118.2291560000001, 34.13907299912292], [-118.22914900000016, 34.138078999122925], [-118.22787700000025, 34.138083999123], [-118.22775100000013, 34.135600999122964], [-118.23359800000019, 34.13559999912305], [-118.23360500000017, 34.13450999912296], [-118.23627300000015, 34.13449799912299], [-118.23660800000016, 34.13271499912299], [-118.23601900000014, 34.12882999912322], [-118.23531200000015, 34.12760199912318], [-118.23523800000014, 34.12671999912304], [-118.252089, 34.124403999123174], [-118.253159, 34.12457099912312], [-118.25364, 34.123302999123126], [-118.25113300000011, 34.12094699912315], [-118.254258, 34.1187609991233], [-118.2570630000001, 34.121223999123146], [-118.25882900000013, 34.12302199912317], [-118.26066900000014, 34.125233999123104], [-118.262344, 34.12767599912314], [-118.27561300000016, 34.15326099912283], [-118.27706800000014, 34.153255999122734], [-118.27832400000017, 34.152995999122766], [-118.27851200000018, 34.15346999912284], [-118.27921200000026, 34.153942999122776], [-118.27937800000015, 34.155066999122745], [-118.28034900000019, 34.1559519991227], [-118.28169100000021, 34.15647299912279], [-118.2838090000001, 34.156537999122826], [-118.28746900000029, 34.15577099912274], [-118.29154000000011, 34.1557769991228], [-118.29569100000012, 34.15895299912269], [-118.29634400000013, 34.1590229991228], [-118.29741500000024, 34.15887099912271], [-118.29783700000023, 34.15857699912268], [-118.297935, 34.15829299912267], [-118.29894700000011, 34.15769899912275], [-118.30433800000014, 34.159016999122834], [-118.307248, 34.160955999122855], [-118.3078490000002, 34.16115199912266], [-118.30701700000017, 34.16178299912268], [-118.304583, 34.16435199912262], [-118.30203000000012, 34.16657099912258], [-118.29688700000011, 34.171559999122515], [-118.29918, 34.1732759991225], [-118.29890600000016, 34.17369899912255], [-118.29639200000017, 34.176121999122564], [-118.29759900000018, 34.1770039991226], [-118.29287500000018, 34.181633999122504], [-118.29009200000031, 34.18461599912246], [-118.28783100000015, 34.18763199912238], [-118.283377, 34.18598399912235], [-118.28010900000015, 34.190204999122294], [-118.28020900000014, 34.2071039991222], [-118.29276100000021, 34.221653999121976], [-118.26687100000012, 34.221845999121946], [-118.26673300000014, 34.2407959991217], [-118.26602400000019, 34.24035599912169], [-118.26599900000016, 34.24389199912168], [-118.26604400000016, 34.247767999121685], [-118.26669100000026, 34.24777199912165], [-118.26667200000013, 34.25077899912166], [-118.26529700000019, 34.25026499912157], [-118.26526400000019, 34.25237999912165], [-118.25650000000016, 34.25226599912153], [-118.25669000000018, 34.26718999912141], [-118.23890300000011, 34.26708399912147], [-118.23880700000025, 34.25250199912161]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Glendale", "population": 2.0649507560502327, "cases": 564.0, "resource_uri": "/1.0/boundary/glendale-la-county-neighborhood-current/", "external_id": "glendale", "slug": "glendale-la-county-neighborhood-current", "metadata": {"sqmi": 30.6279832578, "type": "standalone-city", "name": "Glendale", "slug": "glendale"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.82407900000015, 34.1786069991226], [-117.793624, 34.178587999122435], [-117.79353200000021, 34.166805999122516], [-117.79509200000015, 34.1667059991226], [-117.80129200000022, 34.16693399912262], [-117.80146800000011, 34.15882299912276], [-117.81148400000018, 34.1587749991228], [-117.81173500000013, 34.15041599912281], [-117.80936800000013, 34.14111399912296], [-117.81023700000019, 34.139319999122925], [-117.81108800000014, 34.138311999122955], [-117.81117400000021, 34.137967999122985], [-117.81179300000015, 34.12543899912305], [-117.82030900000017, 34.126999999123115], [-117.82020900000012, 34.11756599912324], [-117.82288100000018, 34.11755499912319], [-117.82264300000013, 34.11564199912324], [-117.8231260000001, 34.115605999123275], [-117.82443900000021, 34.11563899912323], [-117.824787, 34.11753799912323], [-117.82517400000016, 34.11749499912324], [-117.8247790000003, 34.115249999123215], [-117.8254880000001, 34.115185999123234], [-117.82528600000022, 34.11392499912327], [-117.826805, 34.113931999123295], [-117.8272610000003, 34.11444799912316], [-117.82883800000022, 34.11439399912336], [-117.82884200000017, 34.11391499912328], [-117.83765200000019, 34.113936999123204], [-117.83764099046469, 34.10661100442037], [-117.86613798578666, 34.10666600207032], [-117.87389800000025, 34.10602999912338], [-117.87715400000017, 34.10547499912334], [-117.88109198582366, 34.10656300291905], [-117.88239498574347, 34.106642000770925], [-117.88238598577429, 34.1074229997924], [-117.88147698571093, 34.10740900423191], [-117.88137098575262, 34.121443000164135], [-117.88035698572617, 34.121439004172935], [-117.88035298571712, 34.124337000008225], [-117.87716698392713, 34.12434000500395], [-117.8767679855659, 34.12471400466505], [-117.8771649858984, 34.12474400026844], [-117.87716898571644, 34.12510400420377], [-117.87925498572152, 34.125101000849334], [-117.87930898573994, 34.12683900411294], [-117.88129198564043, 34.126817001763726], [-117.881345, 34.13009499912297], [-117.88590800000016, 34.13003899912301], [-117.88598400000028, 34.13100099912308], [-117.886709, 34.13116299912308], [-117.88703700000025, 34.13263199912301], [-117.89003700000025, 34.13268999912309], [-117.88969200000018, 34.14682399912284], [-117.88967900000019, 34.15630199912266], [-117.889852, 34.161489999122644], [-117.88553700000017, 34.161502999122646], [-117.88569500000025, 34.165105999122574], [-117.880995, 34.16500599912263], [-117.88086300000013, 34.17130199912258], [-117.864398, 34.171445999122625], [-117.86427000000015, 34.178533999122614], [-117.85010500000011, 34.17856299912251], [-117.85055900000016, 34.16515499912266], [-117.845891, 34.16511199912264], [-117.845993, 34.15750699912277], [-117.841293, 34.15770699912268], [-117.841293, 34.16120599912272], [-117.839165, 34.16134999912273], [-117.8392930000002, 34.16240599912273], [-117.83867200000016, 34.16222299912264], [-117.83834300000012, 34.1598639991228], [-117.836609, 34.15589799912274], [-117.83422500000015, 34.156440999122836], [-117.832338, 34.157251999122806], [-117.83039600000015, 34.157619999122794], [-117.826993, 34.159531999122656], [-117.825364, 34.160199999122604], [-117.82468600000011, 34.16087299912275], [-117.824662, 34.161962999122785], [-117.8377530000001, 34.161524999122605], [-117.83771800000022, 34.1723639991225], [-117.846329, 34.1723739991226], [-117.84639, 34.1777329991225], [-117.845098, 34.177719999122495], [-117.84509800000014, 34.17859799912247], [-117.82407900000015, 34.1786069991226]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Glendora", "population": 0.5342114666118936, "cases": 46.0, "resource_uri": "/1.0/boundary/glendora-la-county-neighborhood-current/", "external_id": "glendora", "slug": "glendora-la-county-neighborhood-current", "metadata": {"sqmi": 19.5413403615, "type": "standalone-city", "name": "Glendora", "slug": "glendora"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.300207, 33.9599139991251], [-118.30026199536081, 33.94999900346872], [-118.30244797491132, 33.94999300010926], [-118.30245399536264, 33.945474003461285], [-118.30517997490868, 33.94546700018511], [-118.30519099550477, 33.94184500291147], [-118.30901497491601, 33.94183300014389], [-118.30902499719805, 33.93821000472189], [-118.31338698955152, 33.938214000142466], [-118.31337198316203, 33.94546000472394], [-118.317719982513, 33.9454629995714], [-118.3177610000001, 33.9598165504934], [-118.300207, 33.9599139991251]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Gramercy Park", "population": 0.10763863113354613, "cases": 29.0, "resource_uri": "/1.0/boundary/gramercy-park-la-county-neighborhood-current/", "external_id": "gramercy-park", "slug": "gramercy-park-la-county-neighborhood-current", "metadata": {"sqmi": 1.13403882337, "type": "segment-of-a-city", "name": "Gramercy Park", "slug": "gramercy-park"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.49015600000016, 34.31499299912082], [-118.4799170000001, 34.30319999912098], [-118.472817, 34.295800999121], [-118.469101, 34.29276299912098], [-118.468369, 34.29116799912103], [-118.468244, 34.29016299912113], [-118.46838100000011, 34.28841999912103], [-118.469314, 34.280127999121085], [-118.472002, 34.27185399912114], [-118.472017, 34.25720199912154], [-118.489203, 34.257217999121394], [-118.51311600000015, 34.25750699912141], [-118.52323200000012, 34.257499999121386], [-118.5232330000001, 34.2570989991214], [-118.529393, 34.25718999912147], [-118.528963, 34.26005499912139], [-118.52945600000021, 34.260945999121375], [-118.52831900000011, 34.2645019991213], [-118.527719, 34.26496199912127], [-118.52751100000013, 34.26611399912135], [-118.526631, 34.26836999912132], [-118.52586300000014, 34.268865999121346], [-118.52514300000013, 34.26966599912125], [-118.52498300000015, 34.27035399912135], [-118.525495, 34.271297999121195], [-118.526103, 34.27185799912126], [-118.526519, 34.27210199912127], [-118.52700800000012, 34.27207599912121], [-118.52644700000012, 34.273153999121256], [-118.526662, 34.27478399912124], [-118.526327, 34.27646299912116], [-118.526495, 34.277263999121175], [-118.5269190000001, 34.277800999121176], [-118.527519, 34.27930099912126], [-118.527519, 34.28130099912112], [-118.528019, 34.28210099912109], [-118.5276190000001, 34.283300999121224], [-118.528419, 34.284600999121146], [-118.52881900000011, 34.286000999121185], [-118.53011900000011, 34.28650099912105], [-118.5336190000001, 34.29030099912107], [-118.53481900000014, 34.292000999120994], [-118.539019, 34.29570099912101], [-118.54094523964707, 34.29879363870781], [-118.54082100023214, 34.29881399889549], [-118.54155699980872, 34.30021999896285], [-118.54259300010217, 34.301360999214076], [-118.54333499977436, 34.303257998979845], [-118.54429599975546, 34.303939999002075], [-118.54367199982538, 34.30571499901334], [-118.54709700021492, 34.313350999173196], [-118.5455109999157, 34.31565799917272], [-118.54629599982052, 34.31733199894586], [-118.5340110001175, 34.31453099930415], [-118.50784013232494, 34.33426630318251], [-118.50637, 34.33303499912057], [-118.50343600000012, 34.32671799912063], [-118.50333000000013, 34.325946999120646], [-118.50375100000015, 34.32471399912053], [-118.5036960000001, 34.32429999912059], [-118.503347, 34.323789999120535], [-118.4974160000001, 34.31978799912066], [-118.49467600000014, 34.31867699912072], [-118.4923500000001, 34.31552199912069], [-118.49015600000016, 34.31499299912082]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Granada Hills", "population": 0.5818998519728447, "cases": 114.0, "resource_uri": "/1.0/boundary/granada-hills-la-county-neighborhood-current/", "external_id": "granada-hills", "slug": "granada-hills-la-county-neighborhood-current", "metadata": {"sqmi": 15.1114320603, "type": "segment-of-a-city", "name": "Granada Hills", "slug": "granada-hills"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.25589798602273, 33.96012400240537], [-118.25592998951808, 33.95306000158186], [-118.25409997955981, 33.9510320093464], [-118.25398499008037, 33.951255999663104], [-118.25353299537902, 33.951260003366635], [-118.25363931622805, 33.94333341032043], [-118.25410600000016, 33.94331499912527], [-118.25410600000016, 33.933114999125394], [-118.25426898602684, 33.92938300238534], [-118.25347398602635, 33.92863200238475], [-118.25380398602667, 33.92818400238457], [-118.25381397671137, 33.92730000129795], [-118.2535499953424, 33.92730000347011], [-118.25359399531283, 33.923095004551776], [-118.2694377868819, 33.923101994170985], [-118.269506, 33.96001399912504], [-118.256406, 33.9600149991251], [-118.256406, 33.96017318509527], [-118.25589798602273, 33.96012400240537]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Green Meadows", "population": 0.21505376344086022, "cases": 55.0, "resource_uri": "/1.0/boundary/green-meadows-la-county-neighborhood-current/", "external_id": "green-meadows", "slug": "green-meadows-la-county-neighborhood-current", "metadata": {"sqmi": 2.21985249315, "type": "segment-of-a-city", "name": "Green Meadows", "slug": "green-meadows"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.39698477345304, 34.63065594283196], [-118.39449164996637, 34.6305814496146], [-118.3945628169649, 34.62348879362937], [-118.39018514376424, 34.62349824934721], [-118.39022514704162, 34.616388159004245], [-118.39463446252995, 34.616394755783624], [-118.3946982970034, 34.60917018758794], [-118.41128739234487, 34.60925022555681], [-118.41221354693887, 34.61636841150878], [-118.41642183155668, 34.61638490188102], [-118.41635359724984, 34.61281642293858], [-118.42975374003514, 34.61280631305668], [-118.42987054120378, 34.60923586590669], [-118.43797279455374, 34.60922931358011], [-118.43824802317089, 34.61283715764544], [-118.4362870396065, 34.61379921811665], [-118.43629832135102, 34.61528344484679], [-118.43445306169242, 34.615293212409824], [-118.434461220097, 34.61637027746956], [-118.42979519628157, 34.61639452789538], [-118.42985275334088, 34.62147511041281], [-118.42093866985638, 34.624802064853164], [-118.42102502507537, 34.627254939511026], [-118.41225093641265, 34.62720171601253], [-118.41234565779162, 34.63078851028207], [-118.40329289450843, 34.63084472740236], [-118.39698477345304, 34.63065594283196]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Green Valley", "population": null, "cases": null, "resource_uri": "/1.0/boundary/green-valley-la-county-neighborhood-current/", "external_id": "green-valley", "slug": "green-valley-la-county-neighborhood-current", "metadata": {"sqmi": 2.60519770856, "type": "unincorporated-area", "name": "Green Valley", "slug": "green-valley"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.298947, 34.157698999122715], [-118.297935, 34.15829299912267], [-118.29783700000013, 34.15857699912265], [-118.29741500000011, 34.1588709991227], [-118.295928, 34.15899699912266], [-118.295691, 34.15895299912266], [-118.29154, 34.155776999122786], [-118.28746900000017, 34.15577099912268], [-118.283809, 34.15653799912278], [-118.28222, 34.15651699912273], [-118.28169100000012, 34.156472999122755], [-118.280349, 34.15595199912265], [-118.279378, 34.155066999122695], [-118.27921200000014, 34.153942999122755], [-118.27873995932471, 34.15362371439506], [-118.27770900000013, 34.14540699912274], [-118.2764080000001, 34.14090699912273], [-118.275708, 34.13710699912297], [-118.273308, 34.128907999122994], [-118.2705080000001, 34.121507999123104], [-118.265408, 34.113608999123244], [-118.265408, 34.11340899912305], [-118.26630800000014, 34.11260899912315], [-118.267408, 34.11230899912312], [-118.26800800000012, 34.11270899912319], [-118.27180800000014, 34.117207999123046], [-118.27190800000012, 34.11690799912317], [-118.27370800000014, 34.11900799912314], [-118.274208, 34.11980799912314], [-118.286109, 34.118507999123096], [-118.29220900000011, 34.1176079991232], [-118.299009, 34.11570799912322], [-118.306609, 34.11380799912332], [-118.30750900000015, 34.11340799912308], [-118.309409, 34.11300799912316], [-118.3095100000001, 34.141106999122805], [-118.30941000000011, 34.14700699912273], [-118.31091, 34.15220699912263], [-118.31661, 34.15140699912278], [-118.31781000000015, 34.152106999122736], [-118.323038, 34.15246999912263], [-118.32871000000014, 34.14980699912272], [-118.32890469865548, 34.15029374576136], [-118.325721, 34.1532529991229], [-118.32211, 34.155726999122685], [-118.317677, 34.156312999122626], [-118.31721700000013, 34.15479199912274], [-118.316002, 34.15466099912266], [-118.315818, 34.15445299912271], [-118.314675, 34.154277999122726], [-118.31218900000013, 34.15534499912277], [-118.31032000000013, 34.16075999912261], [-118.309646, 34.161258999122644], [-118.30872800000012, 34.16143899912262], [-118.307248, 34.16095599912283], [-118.304338, 34.159016999122784], [-118.298947, 34.157698999122715]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Griffith Park", "population": null, "cases": null, "resource_uri": "/1.0/boundary/griffith-park-la-county-neighborhood-current/", "external_id": "griffith-park", "slug": "griffith-park-la-county-neighborhood-current", "metadata": {"sqmi": 5.83352180271, "type": "segment-of-a-city", "name": "Griffith Park", "slug": "griffith-park"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.9967929719719, 34.028399952296986], [-117.99245497238404, 34.02671895229442], [-117.9921059724169, 34.02713995229486], [-117.98940697267311, 34.02602395229321], [-117.98991497262553, 34.02498495229244], [-117.98253497332627, 34.021933952288755], [-117.98191597338473, 34.02292195228893], [-117.97945897361798, 34.02193295228766], [-117.97988918846656, 34.02086884109512], [-117.9757430000002, 34.01917499912444], [-117.97512187933538, 34.0202085439108], [-117.9771299738391, 34.02102695228667], [-117.97524097401765, 34.02341495228797], [-117.97313097421831, 34.021210952285486], [-117.97106897441407, 34.02071395228485], [-117.97371997416339, 34.01823695228366], [-117.97490897405127, 34.016383952282055], [-117.97557897398767, 34.01648495228205], [-117.97595835423193, 34.016097688775176], [-117.97524800000029, 34.01580699912451], [-117.9757668761243, 34.01497928253567], [-117.9735330000003, 34.01407799912449], [-117.96625100000021, 34.01182899912455], [-117.9646790000002, 34.01543699912447], [-117.9636850000003, 34.01553899912447], [-117.95867500000018, 34.01349199912459], [-117.95981265967673, 34.00986531188666], [-117.94870100000026, 34.0065199991246], [-117.948950668074, 34.00239690323489], [-117.93099900000021, 33.99721199912468], [-117.93161628454955, 33.990776610290155], [-117.93183742656878, 33.99075329132875], [-117.93192943359753, 33.98993739254688], [-117.93127242624854, 33.98987984463303], [-117.93304859759867, 33.97263469342468], [-117.94772614752539, 33.97602327832122], [-117.94774400000024, 33.975451999125056], [-117.94961077023453, 33.97507396840951], [-117.94961199253589, 33.97463932246806], [-117.95797430647744, 33.97253606053582], [-117.96877735630387, 33.97257183085362], [-117.97431555579249, 33.9741579693236], [-117.97627392312238, 33.97448398866154], [-117.97628305435627, 33.97472141124132], [-117.97666167773443, 33.97482983819606], [-117.97666255665328, 33.97509295690064], [-117.99376202979509, 33.975163453984926], [-117.99338931734836, 33.989647538172775], [-118.00226193583869, 33.98961348851785], [-118.00217540136033, 33.994044743517016], [-118.00579439370675, 33.99820936382009], [-118.00543457248756, 33.99882143171054], [-118.01916201529615, 34.01424998488637], [-118.00837181154893, 34.02577308195151], [-118.00503497118925, 34.03163495230172], [-118.00265397141527, 34.0308579523004], [-118.00012297165571, 34.02968695229981], [-117.9967929719719, 34.028399952296986]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Hacienda Heights", "population": 0.5592330518146542, "cases": 49.0, "resource_uri": "/1.0/boundary/hacienda-heights-la-county-neighborhood-current/", "external_id": "hacienda-heights", "slug": "hacienda-heights-la-county-neighborhood-current", "metadata": {"sqmi": 11.8870540287, "type": "unincorporated-area", "name": "Hacienda Heights", "slug": "hacienda-heights"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.326309, 34.0835089991235], [-118.325909, 34.062009999123724], [-118.34411, 34.06210999912375], [-118.34411, 34.08330899912357], [-118.326309, 34.0835089991235]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Hancock Park", "population": 0.17039000378644453, "cases": 63.0, "resource_uri": "/1.0/boundary/hancock-park-la-county-neighborhood-current/", "external_id": "hancock-park", "slug": "hancock-park-la-county-neighborhood-current", "metadata": {"sqmi": 1.51797955698, "type": "segment-of-a-city", "name": "Hancock Park", "slug": "hancock-park"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.368321, 34.27334699912117], [-118.361095, 34.27289699912131], [-118.36111300000013, 34.2726019991211], [-118.36061300000016, 34.27220199912128], [-118.359313, 34.2720019991213], [-118.359137, 34.27277699912113], [-118.35629300000012, 34.26716999912133], [-118.359996, 34.26724699912138], [-118.359879, 34.26603899912123], [-118.36551300000012, 34.26610199912149], [-118.37100700000015, 34.260447999121446], [-118.37111300000012, 34.26320199912134], [-118.372113, 34.26130199912136], [-118.373313, 34.26030199912133], [-118.38021400000014, 34.25950199912142], [-118.3861140000001, 34.26060199912139], [-118.390679, 34.25729999912136], [-118.39361600000015, 34.25827199912145], [-118.39497, 34.25914299912147], [-118.395414, 34.25920199912153], [-118.395914, 34.2588019991214], [-118.39611400000013, 34.25920199912144], [-118.4018140000001, 34.2645019991213], [-118.4014140000001, 34.26640199912143], [-118.400014, 34.26810199912133], [-118.397314, 34.27100199912122], [-118.39391400000011, 34.27350199912125], [-118.391781, 34.27333299912138], [-118.3823820000001, 34.27374299912122], [-118.381394, 34.27411299912126], [-118.368321, 34.27334699912117]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Hansen Dam", "population": null, "cases": null, "resource_uri": "/1.0/boundary/hansen-dam-la-county-neighborhood-current/", "external_id": "hansen-dam", "slug": "hansen-dam-la-county-neighborhood-current", "metadata": {"sqmi": 1.96106923644, "type": "segment-of-a-city", "name": "Hansen Dam", "slug": "hansen-dam"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.300693, 33.81393399912691], [-118.29920500000017, 33.81341599912684], [-118.29920500000017, 33.81362644926715], [-118.2984909860768, 33.813363002316116], [-118.29849398607683, 33.81313900231579], [-118.29833998607668, 33.81305500231577], [-118.29901599686052, 33.80340000558455], [-118.29961597513513, 33.80341799954608], [-118.29963797694795, 33.8028140008297], [-118.2991449952105, 33.80279900378906], [-118.29914597796859, 33.79779599916477], [-118.2859390546698, 33.79778139548247], [-118.286905, 33.79771699912713], [-118.28330400000017, 33.79291699912709], [-118.282704, 33.79201699912706], [-118.282104, 33.79061699912718], [-118.2804040000001, 33.77901699912724], [-118.28200400000014, 33.77881699912734], [-118.28940400000012, 33.7785169991273], [-118.292904, 33.77931699912736], [-118.297705, 33.78221699912727], [-118.298605, 33.78081699912723], [-118.30800500000011, 33.77941699912729], [-118.30792769968308, 33.779179105043106], [-118.309464, 33.77891499912735], [-118.309924, 33.78194699912738], [-118.30903900000017, 33.7819409991273], [-118.309038, 33.78217899912722], [-118.308709, 33.78221499912734], [-118.308713, 33.78820699912719], [-118.308472, 33.78877299912723], [-118.30868500000012, 33.789470999127204], [-118.3088290000001, 33.806794999127035], [-118.30929600000012, 33.808804999126906], [-118.30812700000011, 33.809044999126996], [-118.308558, 33.81049099912699], [-118.308786, 33.81200399912691], [-118.3087923495178, 33.81687759425836], [-118.300693, 33.81393399912691]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Harbor City", "population": 0.2906976744186046, "cases": 46.0, "resource_uri": "/1.0/boundary/harbor-city-la-county-neighborhood-current/", "external_id": "harbor-city", "slug": "harbor-city-la-county-neighborhood-current", "metadata": {"sqmi": 2.58132095337, "type": "segment-of-a-city", "name": "Harbor City", "slug": "harbor-city"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.28900600000014, 33.92361499912562], [-118.281206, 33.92361499912545], [-118.28126527806717, 33.923199001298045], [-118.28144899559884, 33.923104004742264], [-118.28208597494334, 33.92320100010348], [-118.28226799471715, 33.89731499885771], [-118.2832039860523, 33.89694800236782], [-118.28228, 33.87412699912612], [-118.282107, 33.872852999126216], [-118.282247, 33.87263899912628], [-118.281845, 33.872696999126134], [-118.281643, 33.872018999126226], [-118.281555, 33.862801999126326], [-118.285363, 33.86115599912625], [-118.28513600000011, 33.86068399912625], [-118.285211, 33.86048099912631], [-118.285488, 33.86063599912628], [-118.285615, 33.861043999126316], [-118.29052300000019, 33.85869899912626], [-118.290518, 33.85422299912644], [-118.28525400000012, 33.85415699912642], [-118.285275, 33.85224999912635], [-118.28603600000018, 33.852247999126476], [-118.28601699480033, 33.846253005751024], [-118.29920697480463, 33.846319000868164], [-118.29918098607551, 33.82302200232228], [-118.29904298259454, 33.82221000312056], [-118.29920500000017, 33.81341599912684], [-118.3087923495178, 33.81687759425836], [-118.30941200000015, 33.85743899912633], [-118.309279, 33.85834799912633], [-118.30915000000013, 33.85834799912633], [-118.309148, 33.865607999126325], [-118.299319, 33.865697999126205], [-118.2991430000001, 33.870530999126245], [-118.299028, 33.8705829991262], [-118.294349, 33.87062799912624], [-118.294499, 33.86646999912618], [-118.298063, 33.866421999126395], [-118.298068, 33.86555299912629], [-118.29197, 33.865544999126335], [-118.29154, 33.86566399912626], [-118.290624, 33.86633299912635], [-118.291788, 33.89412099912589], [-118.29158298605368, 33.92333400238584], [-118.29154756296448, 33.92350208560499], [-118.28900600000014, 33.92361499912562]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Harbor Gateway", "population": 0.43599140654618984, "cases": 69.0, "resource_uri": "/1.0/boundary/harbor-gateway-la-county-neighborhood-current/", "external_id": "harbor-gateway", "slug": "harbor-gateway-la-county-neighborhood-current", "metadata": {"sqmi": 5.14092312531, "type": "segment-of-a-city", "name": "Harbor Gateway", "slug": "harbor-gateway"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.30001200000015, 34.052907999124], [-118.300008, 34.047410999123926], [-118.30040800000012, 34.04561099912404], [-118.30030800000013, 34.04391099912411], [-118.300808, 34.043810999124034], [-118.3009080000001, 34.040110999124195], [-118.300408, 34.04001099912401], [-118.30040800000012, 34.03731199912409], [-118.3090080000001, 34.03741099912408], [-118.315308, 34.037210999124255], [-118.31500800000013, 34.03741099912408], [-118.313408, 34.03751099912417], [-118.313408, 34.04001099912401], [-118.313008, 34.04001099912405], [-118.31310900000011, 34.04961099912397], [-118.313409, 34.05271099912387], [-118.3112090000001, 34.05291099912394], [-118.30001200000015, 34.052907999124]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Harvard Heights", "population": 0.18034825870646765, "cases": 58.0, "resource_uri": "/1.0/boundary/harvard-heights-la-county-neighborhood-current/", "external_id": "harvard-heights", "slug": "harvard-heights-la-county-neighborhood-current", "metadata": {"sqmi": 0.791828822117, "type": "segment-of-a-city", "name": "Harvard Heights", "slug": "harvard-heights"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.30020700000011, 33.97451399912481], [-118.308907, 33.97441299912499], [-118.308808, 33.98661299912474], [-118.3090080000001, 33.98891299912483], [-118.308908, 33.9930129991246], [-118.300208, 33.99311299912467], [-118.30030800000013, 33.99091299912464], [-118.30010700000012, 33.9840129991247], [-118.30020700000011, 33.97451399912481]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Harvard Park", "population": 0.3793486306439674, "cases": 123.0, "resource_uri": "/1.0/boundary/harvard-park-la-county-neighborhood-current/", "external_id": "harvard-park", "slug": "harvard-park-la-county-neighborhood-current", "metadata": {"sqmi": 0.640666412177, "type": "segment-of-a-city", "name": "Harvard Park", "slug": "harvard-park"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.63447645033298, 34.4963530183693], [-118.63439132267126, 34.49270440954759], [-118.643096315977, 34.49271235614901], [-118.64284203003172, 34.481796149037805], [-118.65154886795871, 34.48182075767659], [-118.65111217490944, 34.47818128657047], [-118.6513140597724, 34.47818218061476], [-118.65139075903231, 34.477767254873704], [-118.65169570014407, 34.47454484928101], [-118.65067468760626, 34.47454181573773], [-118.64980648670902, 34.46726697219288], [-118.64538578275082, 34.46725432211406], [-118.64535411778773, 34.45999021612978], [-118.65708843407708, 34.46007956569368], [-118.65701820792802, 34.45927742077772], [-118.65763712029666, 34.458445850004786], [-118.65773543574215, 34.457658729320926], [-118.65820351348903, 34.45742228994727], [-118.65796504908788, 34.457093807340925], [-118.658035865673, 34.45667277390117], [-118.6582321916466, 34.45635839360643], [-118.65888752891233, 34.45604676936505], [-118.65947649225009, 34.46010076817125], [-118.67253142135397, 34.460052807001134], [-118.67340568136001, 34.46716388138528], [-118.66908699583473, 34.46720689309557], [-118.66906852215399, 34.469019979728294], [-118.67122898334952, 34.46899758054109], [-118.67121214067002, 34.47080969653542], [-118.67769709755888, 34.47073683706555], [-118.67768361164319, 34.474358238911066], [-118.68604084918779, 34.47446657193603], [-118.68599132673813, 34.48171217180006], [-118.67808453954109, 34.48160081997346], [-118.66025740951665, 34.48184608404435], [-118.66026991596034, 34.48366531741147], [-118.65594071038667, 34.483653010938916], [-118.65597900470797, 34.485471830546246], [-118.65157995140645, 34.48545966254139], [-118.65158486209121, 34.48603603530846], [-118.65266957842957, 34.48645220323546], [-118.65332907272915, 34.487453203842776], [-118.65426014223749, 34.487913105859796], [-118.65374751812891, 34.489075782526484], [-118.65250526914066, 34.48907578838563], [-118.65248770584566, 34.48838904613696], [-118.65132620877448, 34.48838901882277], [-118.65134389576865, 34.48907999234852], [-118.6482262125282, 34.48909118453746], [-118.64833543957346, 34.49633886967816], [-118.63447645033298, 34.4963530183693]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Hasley Canyon", "population": null, "cases": null, "resource_uri": "/1.0/boundary/hasley-canyon-la-county-neighborhood-current/", "external_id": "hasley-canyon", "slug": "hasley-canyon-la-county-neighborhood-current", "metadata": {"sqmi": 3.10198451154, "type": "unincorporated-area", "name": "Hasley Canyon", "slug": "hasley-canyon"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.07204700000013, 33.83872999912662], [-118.07204600000013, 33.837991999126665], [-118.06764100000018, 33.837991999126714], [-118.06768200000029, 33.83490799912679], [-118.06819500000013, 33.83490599912663], [-118.06819700000017, 33.83473599912675], [-118.06912200000023, 33.83482199912675], [-118.06912600000013, 33.833217999126674], [-118.068362, 33.83248899912671], [-118.06770700000031, 33.83249099912672], [-118.0677110000002, 33.83344899912674], [-118.06182200000015, 33.833409999126665], [-118.06138900000012, 33.83373099912669], [-118.06271300000029, 33.831541999126706], [-118.06333700000016, 33.82863299912678], [-118.06326800000029, 33.8240739991268], [-118.06544000000015, 33.82401199912681], [-118.065961, 33.82259999912682], [-118.06871300000014, 33.822477999126804], [-118.068721, 33.82401999912673], [-118.071826, 33.82397399912676], [-118.07179200000016, 33.8225439991269], [-118.072377, 33.82305899912693], [-118.07460900000018, 33.82320899912684], [-118.074622, 33.822776999126816], [-118.0794140000002, 33.824143999126846], [-118.08133700000016, 33.82497699912678], [-118.08089600000015, 33.82430399912682], [-118.08170400000012, 33.824318999126824], [-118.08190200000028, 33.8253619991268], [-118.08212100000028, 33.82568399912678], [-118.082995, 33.82868599912677], [-118.08277700000016, 33.82999699912668], [-118.08242600000027, 33.83060099912683], [-118.08179300000025, 33.830873999126766], [-118.08185400000022, 33.83418399912667], [-118.08154700000028, 33.83397599912664], [-118.079836, 33.8340099991267], [-118.0796790000003, 33.83694699912668], [-118.07952700000016, 33.83726799912671], [-118.07883900000013, 33.83725999912665], [-118.0791410000001, 33.83871799912658], [-118.07204700000013, 33.83872999912662]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Hawaiian Gardens", "population": 0.14677103718199608, "cases": 9.0, "resource_uri": "/1.0/boundary/hawaiian-gardens-la-county-neighborhood-current/", "external_id": "hawaiian-gardens", "slug": "hawaiian-gardens-la-county-neighborhood-current", "metadata": {"sqmi": 0.985072535583, "type": "standalone-city", "name": "Hawaiian Gardens", "slug": "hawaiian-gardens"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.35248099318027, 33.93454200230976], [-118.35247897936615, 33.93420000085889], [-118.35035698662492, 33.93396400208783], [-118.34945098477137, 33.933679005304334], [-118.34875099317476, 33.9337350023726], [-118.34875097902562, 33.933619002234735], [-118.34834799315752, 33.933644002563454], [-118.34836097906746, 33.93340000192775], [-118.34823998613778, 33.933404003804135], [-118.34824098608665, 33.9338139999534], [-118.34714199304759, 33.9338150032079], [-118.34719897910543, 33.932605001717974], [-118.34610699077291, 33.932694001543624], [-118.346348, 33.93252699912533], [-118.34607400000019, 33.93204799912545], [-118.34422500000022, 33.9309869991255], [-118.34387500000018, 33.93100399912554], [-118.34386300000018, 33.930809999125536], [-118.34099300000011, 33.930580999125524], [-118.3363070000002, 33.93058399912546], [-118.3363460000001, 33.92932899912546], [-118.33736400000016, 33.92921699912555], [-118.33727700000013, 33.92709299912547], [-118.33666500000012, 33.9259269991256], [-118.33521900000011, 33.925387999125576], [-118.33408900000028, 33.92524299912565], [-118.33002200000021, 33.92521399912564], [-118.326866, 33.925834999125584], [-118.32674800000025, 33.926118999125535], [-118.32643000000016, 33.92613899912552], [-118.32642700000015, 33.92676899912554], [-118.325542, 33.9267149991256], [-118.32551000000014, 33.92879099912568], [-118.3264220000002, 33.92878799912551], [-118.32642, 33.92909499912545], [-118.32207200000018, 33.92903999912556], [-118.32209900000032, 33.93057099912544], [-118.3133920000002, 33.93068299912547], [-118.31339099241835, 33.92340999923184], [-118.31776897986248, 33.921606005763216], [-118.31778797898049, 33.917520003156454], [-118.31648398731505, 33.917656005465425], [-118.31520998502516, 33.918433998438104], [-118.31398199285347, 33.91836100381046], [-118.31391298047893, 33.916452000075], [-118.32650100000022, 33.916445999125635], [-118.32650200000016, 33.9128199991257], [-118.3266890000002, 33.91282999912564], [-118.32649100000015, 33.90862399912576], [-118.32649200000013, 33.90193198887903], [-118.32869198101459, 33.90012400698109], [-118.32920998730364, 33.89943400239938], [-118.33081299116608, 33.898001997779296], [-118.33158098739192, 33.89751800549196], [-118.33306798601278, 33.89742400118909], [-118.33299998608805, 33.89829000399259], [-118.33517797915292, 33.89828700037306], [-118.33517399305268, 33.89466300314774], [-118.34230797916472, 33.894658000462904], [-118.34232299300008, 33.893598003649295], [-118.34450700000014, 33.89351399912596], [-118.3445200000003, 33.895460999125945], [-118.34383000000031, 33.89541799912598], [-118.34383000000031, 33.9024529991258], [-118.35106900000024, 33.902566999125746], [-118.351032, 33.90192599912576], [-118.35215000000018, 33.901915999125926], [-118.35214700000017, 33.90111399912588], [-118.35237600000023, 33.90108199912591], [-118.35237200000014, 33.9016149991259], [-118.35317400000011, 33.901690999125876], [-118.35320600000027, 33.90230099912586], [-118.35360700000012, 33.902313999125845], [-118.35810800000023, 33.90231399912582], [-118.35814200000016, 33.900587999125904], [-118.35866400000016, 33.90064799912587], [-118.35868800000016, 33.901103999125844], [-118.35900100000022, 33.90108099912585], [-118.35912600000013, 33.90153499912584], [-118.36125600000018, 33.90134199912586], [-118.36128600000015, 33.896858999125975], [-118.36917800000016, 33.896924999125915], [-118.3682800000002, 33.89606699912593], [-118.36625100000019, 33.89463699912597], [-118.37872100000016, 33.894645999125906], [-118.37868000000014, 33.91488999912567], [-118.378388, 33.916374999125665], [-118.36958499306262, 33.916320003171364], [-118.36983998610988, 33.91188000238757], [-118.36988898611125, 33.904334002382704], [-118.36981198611117, 33.9038450023824], [-118.36937199206692, 33.903304998686885], [-118.36968197917741, 33.90232700152388], [-118.36592398620257, 33.902454003152855], [-118.36590698610965, 33.903698000018096], [-118.36510799307186, 33.903704003117305], [-118.36514997962907, 33.90245400031073], [-118.36415198579631, 33.90232800484585], [-118.36414698612303, 33.90280099995988], [-118.3631199930583, 33.902803003174405], [-118.36308697956386, 33.90211100043487], [-118.36209598583696, 33.901999004762196], [-118.36190698611895, 33.90371899988824], [-118.36150298576129, 33.90371700487293], [-118.36145197221062, 33.903966005637095], [-118.36150698611571, 33.90444500396401], [-118.36181098609514, 33.90444300079962], [-118.3618129860997, 33.905205999958675], [-118.36125598610788, 33.905207003998036], [-118.36126898611325, 33.907770003975294], [-118.3620079860965, 33.90776600079253], [-118.36190998611274, 33.909492003979906], [-118.36230998609703, 33.909490000790235], [-118.36230698611216, 33.910356999921], [-118.36125298610267, 33.91035500485025], [-118.36125798611272, 33.91379500397942], [-118.36161098609483, 33.91379300079606], [-118.36160898612914, 33.91418200390268], [-118.36190798607862, 33.91417700087358], [-118.36186598625308, 33.914843001086744], [-118.36157898619793, 33.914875003234634], [-118.36168098582957, 33.91596499877468], [-118.36124098594607, 33.91591700595658], [-118.36123498610306, 33.91642100402128], [-118.36263697977215, 33.91642200012635], [-118.36272899305497, 33.91602200319355], [-118.3636139861031, 33.91602100076552], [-118.36360498611398, 33.916417003981785], [-118.36810398609005, 33.91638300083834], [-118.36811798662761, 33.916700003575784], [-118.3656169856215, 33.91777800125845], [-118.36562397221014, 33.92291600566264], [-118.36562898577411, 33.92331900490205], [-118.36853198604844, 33.92346800107018], [-118.36820197221299, 33.925291005666416], [-118.3682489907397, 33.93094500129885], [-118.36414498662697, 33.93094400522693], [-118.36178898557667, 33.93198100120839], [-118.36178498607565, 33.93240599996554], [-118.36129798610392, 33.932407004022636], [-118.36130398607983, 33.93278200213827], [-118.36017099310345, 33.933020001017525], [-118.35894898661749, 33.93293200550321], [-118.35692698643841, 33.933555003117156], [-118.35589798565495, 33.93398200133595], [-118.35587298617206, 33.93452299994432], [-118.35479899304805, 33.93452300321919], [-118.354797979068, 33.934110001964065], [-118.35378198614542, 33.934147003782165], [-118.35376998663412, 33.93451899980443], [-118.35248099318027, 33.93454200230976]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Hawthorne", "population": 0.9130261909091436, "cases": 189.0, "resource_uri": "/1.0/boundary/hawthorne-la-county-neighborhood-current/", "external_id": "hawthorne", "slug": "hawthorne-la-county-neighborhood-current", "metadata": {"sqmi": 6.22963426694, "type": "standalone-city", "name": "Hawthorne", "slug": "hawthorne"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.404855, 33.87782099912622], [-118.40453900000018, 33.87714599912616], [-118.40312000000017, 33.87764599912596], [-118.40276000000023, 33.87704599912621], [-118.40203100000019, 33.877320999126255], [-118.40155000000016, 33.8770829991261], [-118.395963, 33.877100999126256], [-118.39596800000014, 33.873985999126205], [-118.39552200000016, 33.872830999126236], [-118.3913710000002, 33.87281199912621], [-118.38604400000027, 33.864677999126336], [-118.386061, 33.86400699912635], [-118.38565000000015, 33.863389999126284], [-118.38551100000011, 33.86273899912637], [-118.38562400000015, 33.861389999126494], [-118.38495700000018, 33.858056999126376], [-118.38529200000022, 33.858055999126385], [-118.38507600000017, 33.85772399912653], [-118.38482100000023, 33.85652499912644], [-118.38759400000016, 33.85578399912639], [-118.39027300000024, 33.8547449991265], [-118.39786000000016, 33.85236599912651], [-118.3994917215088, 33.85172157672294], [-118.39958100272787, 33.85259001511661], [-118.3999660179524, 33.8536979729757], [-118.40197101182937, 33.85860799563604], [-118.40339001232414, 33.86309301788883], [-118.40477097428266, 33.86666700930951], [-118.40946266447587, 33.87673109163654], [-118.40719200000017, 33.87774699912618], [-118.40693200000014, 33.877217999126195], [-118.404855, 33.87782099912622]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Hermosa Beach", "population": 0.19669887967159838, "cases": 23.0, "resource_uri": "/1.0/boundary/hermosa-beach-la-county-neighborhood-current/", "external_id": "hermosa-beach", "slug": "hermosa-beach-la-county-neighborhood-current", "metadata": {"sqmi": 1.47762686009, "type": "standalone-city", "name": "Hermosa Beach", "slug": "hermosa-beach"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.667411, 34.17674699912249], [-118.65858900000016, 34.1767489991226], [-118.658593, 34.17605899912249], [-118.659199, 34.17573799912247], [-118.65861900000012, 34.1756749991225], [-118.659486, 34.175233999122504], [-118.65859800000017, 34.17520899912252], [-118.65872100000014, 34.16927599912257], [-118.65801700000016, 34.1694379991226], [-118.654264, 34.16942699912255], [-118.65428100000014, 34.16572199912261], [-118.65203700000015, 34.165340999122634], [-118.65043600000023, 34.165710999122595], [-118.64553400000018, 34.16569599912263], [-118.64555300000026, 34.161984999122616], [-118.64197500000024, 34.161974999122656], [-118.63973500000013, 34.159090999122725], [-118.639867, 34.15881699912272], [-118.63997500000019, 34.15908599912268], [-118.63994300000022, 34.15888199912274], [-118.64027400000018, 34.1586799991227], [-118.64126900000016, 34.15831399912273], [-118.64127, 34.157923999122694], [-118.64575300000017, 34.15600399912271], [-118.64473900000017, 34.15745899912269], [-118.64472200000023, 34.15797199912276], [-118.64672200000012, 34.15724799912277], [-118.64677600000014, 34.1576689991228], [-118.64828700000015, 34.1587059991227], [-118.64936800000021, 34.15896499912266], [-118.64994868451143, 34.158922308094034], [-118.64998600000018, 34.157735999122615], [-118.65129500000018, 34.157747999122606], [-118.65130900000015, 34.15808899912272], [-118.65435300000017, 34.1581129991227], [-118.65431200000016, 34.16083699912271], [-118.65522400000016, 34.161092999122694], [-118.65517700000015, 34.158082999122655], [-118.65867792463554, 34.15795845714115], [-118.65868724738726, 34.15465040694591], [-118.66437201417665, 34.15465504916218], [-118.66531031872236, 34.15411004888559], [-118.66568111540369, 34.15136367309613], [-118.66638000000023, 34.15217899912277], [-118.66692500000016, 34.15230299912284], [-118.6675212123453, 34.15222263722826], [-118.66751211260497, 34.15465834410004], [-118.6685029780249, 34.15465880269921], [-118.6685032790368, 34.15481653174864], [-118.66866584456169, 34.154816921119846], [-118.66866798532526, 34.15465890900171], [-118.6742138066609, 34.15466427129864], [-118.67423362477263, 34.16590926695656], [-118.67437700000019, 34.16816499912262], [-118.66795000000018, 34.16810399912262], [-118.66815300000012, 34.176749999122485], [-118.667411, 34.17674699912249]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Hidden Hills", "population": 0, "cases": 0.0, "resource_uri": "/1.0/boundary/hidden-hills-la-county-neighborhood-current/", "external_id": "hidden-hills", "slug": "hidden-hills-la-county-neighborhood-current", "metadata": {"sqmi": 1.70397314929, "type": "standalone-city", "name": "Hidden Hills", "slug": "hidden-hills"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.190805, 34.13110799912307], [-118.190705, 34.13070799912289], [-118.188905, 34.13100799912296], [-118.187605, 34.128107999122946], [-118.185705, 34.128507999122995], [-118.185605, 34.128907999122994], [-118.18282421238357, 34.129715995032996], [-118.18258, 34.1291859991231], [-118.18134, 34.12949799912301], [-118.18149500000013, 34.12802999912309], [-118.18089600000012, 34.12833099912313], [-118.180193, 34.12642499912305], [-118.178583, 34.12671999912302], [-118.177833, 34.12665799912308], [-118.1777960000001, 34.12687699912303], [-118.1765410000001, 34.12662399912317], [-118.176955, 34.12314099912306], [-118.172804, 34.12477099912305], [-118.172936, 34.12581299912308], [-118.172539, 34.12578699912305], [-118.172299, 34.126081999123066], [-118.171303, 34.12635899912297], [-118.17043400000013, 34.12693099912309], [-118.169768, 34.126856999123106], [-118.1691, 34.12649199912309], [-118.167221, 34.12588499912304], [-118.165867, 34.12623799912307], [-118.165587, 34.125466999123105], [-118.167213, 34.1246559991232], [-118.167792, 34.12476699912298], [-118.168262, 34.124301999123205], [-118.168454, 34.12391399912313], [-118.168053, 34.12392299912315], [-118.168039, 34.12311199912304], [-118.16757, 34.121455999123114], [-118.168289, 34.12018299912315], [-118.16889, 34.11992399912314], [-118.16899900000013, 34.11934099912315], [-118.168833, 34.11866799912312], [-118.168866, 34.11784299912324], [-118.1727580000001, 34.11362699912319], [-118.175422, 34.113250999123274], [-118.175631, 34.11262699912322], [-118.17595, 34.11252599912324], [-118.1758233898305, 34.112433863529986], [-118.175915, 34.11227199912317], [-118.177005, 34.11290799912313], [-118.180505, 34.1111079991232], [-118.183205, 34.11160799912319], [-118.184305, 34.1109079991232], [-118.18610500000015, 34.10760899912323], [-118.192505, 34.1031089991234], [-118.19750500000015, 34.10260899912341], [-118.199606, 34.1018089991233], [-118.20060600000012, 34.10120899912325], [-118.20490600000012, 34.09610899912336], [-118.20620600000015, 34.09420899912352], [-118.20640600000013, 34.093208999123355], [-118.20620600000015, 34.0925089991234], [-118.20690600000015, 34.09070899912351], [-118.210106, 34.0873099991235], [-118.212906, 34.0864099991235], [-118.21200600000013, 34.0881099991235], [-118.21140600000015, 34.08890999912355], [-118.211106, 34.08980999912349], [-118.2113060000001, 34.091108999123584], [-118.211606, 34.09080899912352], [-118.211606, 34.0931089991233], [-118.21140600000015, 34.093708999123386], [-118.209906, 34.09530899912338], [-118.209206, 34.09640899912336], [-118.2061060000001, 34.09920899912333], [-118.205206, 34.101108999123376], [-118.20580600000017, 34.106008999123205], [-118.203806, 34.107008999123195], [-118.204806, 34.1085089991233], [-118.20770600000016, 34.1122089991231], [-118.20830600000014, 34.11250899912319], [-118.2081060000001, 34.11280799912305], [-118.2103060000001, 34.11480799912307], [-118.211706, 34.1158079991232], [-118.213706, 34.116207999123134], [-118.212906, 34.11770799912302], [-118.213506, 34.11940799912322], [-118.21440600000012, 34.120207999123096], [-118.2155060000001, 34.12060799912311], [-118.216806, 34.12080799912305], [-118.216206, 34.12320799912308], [-118.213706, 34.12260799912307], [-118.20890600000011, 34.121807999123064], [-118.20830600000014, 34.124407999122965], [-118.20390600000016, 34.12370799912302], [-118.203506, 34.12540799912299], [-118.2022060000001, 34.125207999122956], [-118.200306, 34.128107999122946], [-118.200006, 34.12790799912306], [-118.20000600000016, 34.12730799912308], [-118.198606, 34.12620799912295], [-118.19823500000014, 34.12661399912298], [-118.19810600000015, 34.12640799912301], [-118.19730600000013, 34.12650799912305], [-118.194506, 34.12640799912301], [-118.193906, 34.129507999123], [-118.192505, 34.129807999122946], [-118.191305, 34.130507999123], [-118.191205, 34.13110799912302], [-118.190805, 34.13110799912307]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Highland Park", "population": 0.48389788086100455, "cases": 87.0, "resource_uri": "/1.0/boundary/highland-park-la-county-neighborhood-current/", "external_id": "highland-park", "slug": "highland-park-la-county-neighborhood-current", "metadata": {"sqmi": 3.41941790034, "type": "segment-of-a-city", "name": "Highland Park", "slug": "highland-park"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.256407, 34.00481399912452], [-118.256407, 34.00381399912452], [-118.260707, 34.00391399912448], [-118.263907, 34.00371399912455], [-118.265207, 34.00381399912453], [-118.281107, 34.003712999124524], [-118.28120700000012, 34.005512999124456], [-118.281107, 34.01591299912426], [-118.28080700000015, 34.01691299912441], [-118.274607, 34.02651199912422], [-118.274307, 34.02811199912418], [-118.27410700000011, 34.03541199912403], [-118.25050700000011, 34.02451299912422], [-118.25410700000012, 34.020512999124335], [-118.25650700000011, 34.01471299912435], [-118.256407, 34.00481399912452]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Historic South-Central", "population": 0.38991507781779733, "cases": 118.0, "resource_uri": "/1.0/boundary/historic-south-central-la-county-neighborhood-current/", "external_id": "historic-south-central", "slug": "historic-south-central-la-county-neighborhood-current", "metadata": {"sqmi": 2.55351898402, "type": "segment-of-a-city", "name": "Historic South-Central", "slug": "historic-south-central"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.31781000000015, 34.152106999122736], [-118.31661, 34.15140699912278], [-118.31091, 34.15220699912263], [-118.30941000000011, 34.14700699912273], [-118.3095100000001, 34.141106999122805], [-118.309409, 34.11300799912316], [-118.30750900000015, 34.11340799912308], [-118.30760900000014, 34.10920799912327], [-118.308009, 34.108007999123195], [-118.309409, 34.10770799912324], [-118.309409, 34.10530899912325], [-118.32641, 34.10510799912329], [-118.32811, 34.10550799912318], [-118.32921000000016, 34.105207999123174], [-118.33051000000016, 34.10510799912329], [-118.33061, 34.10530799912326], [-118.33751, 34.10510799912329], [-118.33771, 34.10450799912321], [-118.33831, 34.10390799912326], [-118.34391, 34.10400799912322], [-118.34591, 34.10370799912325], [-118.34611000000012, 34.10450799912321], [-118.34481, 34.105807999123236], [-118.34551000000013, 34.107107999123244], [-118.34611000000012, 34.11150799912309], [-118.34461, 34.11270799912317], [-118.34401000000011, 34.11340799912308], [-118.34441000000014, 34.11510799912313], [-118.34601, 34.11540799912305], [-118.34751000000011, 34.115907999123145], [-118.348711, 34.11790799912305], [-118.348611, 34.11880799912308], [-118.34811100000012, 34.11900799912314], [-118.34751000000011, 34.11800799912305], [-118.34721, 34.11820799912308], [-118.3476110000001, 34.120107999123135], [-118.34911100000011, 34.120107999123135], [-118.351711, 34.119807999123076], [-118.353111, 34.11940799912322], [-118.35501100000012, 34.121106999123015], [-118.355911, 34.121206999123], [-118.356811, 34.12180699912304], [-118.358911, 34.12240699912304], [-118.35961100000011, 34.1230069991231], [-118.358111, 34.12360699912297], [-118.35951100000011, 34.12570699912303], [-118.36041100000013, 34.12590699912312], [-118.36081100000013, 34.12630699912293], [-118.360511, 34.127306999122986], [-118.35991100000011, 34.12830699912296], [-118.361211, 34.129206999122935], [-118.36271100000013, 34.129206999122935], [-118.363111, 34.12990699912297], [-118.362411, 34.12950699912294], [-118.361211, 34.129906999122866], [-118.360511, 34.130406999123096], [-118.361911, 34.13000699912289], [-118.363311, 34.13180699912287], [-118.361911, 34.13100699912297], [-118.360711, 34.13240699912296], [-118.359611, 34.133006999123054], [-118.358811, 34.13270699912302], [-118.35821100000011, 34.133206999122976], [-118.35721100000012, 34.13270699912295], [-118.35651100000013, 34.13200699912296], [-118.35601100000017, 34.13280699912298], [-118.354411, 34.13250699912291], [-118.353613, 34.13219699912287], [-118.352584, 34.13419199912297], [-118.35234439933073, 34.13433066911443], [-118.352136, 34.134158999122974], [-118.351592, 34.13410999912286], [-118.35068900000016, 34.13318799912311], [-118.34978700000015, 34.132535999123036], [-118.348775, 34.13138599912292], [-118.348405, 34.13198799912291], [-118.348657, 34.132463999122955], [-118.34845300000012, 34.13288499912289], [-118.347462, 34.13314399912302], [-118.3477740000001, 34.13346499912303], [-118.346714, 34.133890999122826], [-118.346717, 34.13419299912305], [-118.346489, 34.13435099912307], [-118.3465640000001, 34.13464599912288], [-118.345861, 34.134676999122924], [-118.34557600000015, 34.135108999122835], [-118.344213, 34.13606099912294], [-118.344424, 34.13680099912296], [-118.34402800000015, 34.13784899912293], [-118.3432300000001, 34.13821399912294], [-118.34517238806579, 34.14254730532219], [-118.34088, 34.144934999122775], [-118.340343, 34.145491999122875], [-118.339891, 34.145558999122834], [-118.338804, 34.14522799912282], [-118.33663700000011, 34.14649399912294], [-118.331028, 34.148317999122796], [-118.330067, 34.14974699912277], [-118.32890469865548, 34.15029374576136], [-118.32871000000014, 34.14980699912272], [-118.323038, 34.15246999912263], [-118.31781000000015, 34.152106999122736]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Hollywood Hills", "population": 0.2943415376807917, "cases": 58.0, "resource_uri": "/1.0/boundary/hollywood-hills-la-county-neighborhood-current/", "external_id": "hollywood-hills", "slug": "hollywood-hills-la-county-neighborhood-current", "metadata": {"sqmi": 7.04764074288, "type": "segment-of-a-city", "name": "Hollywood Hills", "slug": "hollywood-hills"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.370111, 34.12990699912297], [-118.36981100000014, 34.12930699912292], [-118.36791100000013, 34.12930699912297], [-118.36711100000011, 34.12890699912307], [-118.363111, 34.12810699912294], [-118.361811, 34.128206999122945], [-118.361011, 34.12800699912292], [-118.360511, 34.127306999122986], [-118.36081100000013, 34.12630699912293], [-118.36041100000013, 34.12590699912312], [-118.35951100000011, 34.12570699912303], [-118.358111, 34.12360699912297], [-118.35961100000011, 34.1230069991231], [-118.358911, 34.12240699912304], [-118.356811, 34.12180699912304], [-118.355911, 34.121206999123], [-118.35501100000012, 34.121106999123015], [-118.353111, 34.11940799912322], [-118.351711, 34.119807999123076], [-118.34911100000011, 34.120107999123135], [-118.3476110000001, 34.120107999123135], [-118.34721, 34.11820799912308], [-118.34751000000011, 34.11800799912305], [-118.34811100000012, 34.11900799912314], [-118.348611, 34.11880799912308], [-118.348711, 34.11790799912305], [-118.34751000000011, 34.115907999123145], [-118.34601, 34.11540799912305], [-118.34441000000014, 34.11510799912313], [-118.34401000000011, 34.11340799912308], [-118.34461, 34.11270799912317], [-118.34611000000012, 34.11150799912309], [-118.34551000000013, 34.107107999123244], [-118.34481, 34.105807999123236], [-118.34611000000012, 34.10450799912321], [-118.34581000000018, 34.103307999123224], [-118.35291, 34.10340799912323], [-118.35401000000013, 34.103307999123224], [-118.35401000000013, 34.1016079991233], [-118.359411, 34.1016079991233], [-118.36171100000013, 34.10120799912329], [-118.36179419954154, 34.097176003708874], [-118.366721, 34.097107999123466], [-118.36672, 34.09688799912356], [-118.367341, 34.09687899912335], [-118.36734200000012, 34.09709799912337], [-118.368168, 34.097086999123384], [-118.368209, 34.09803499912333], [-118.36864400000012, 34.09807099912342], [-118.3697990000001, 34.097212999123286], [-118.371574, 34.09642799912352], [-118.3726, 34.09567599912349], [-118.376577, 34.09474999912346], [-118.379297, 34.09295499912355], [-118.38118100000014, 34.09210399912355], [-118.38118300000012, 34.09332299912344], [-118.383369, 34.093326999123406], [-118.38337, 34.09372399912346], [-118.384378, 34.09372199912346], [-118.38445900000012, 34.09355699912347], [-118.385038, 34.09355799912332], [-118.385036, 34.09320199912349], [-118.38553, 34.09320299912347], [-118.385528, 34.09276299912345], [-118.385706, 34.092941999123475], [-118.385941, 34.0927679991235], [-118.38604, 34.09103599912342], [-118.395844, 34.0910549991235], [-118.395914, 34.0950129991235], [-118.396154, 34.09516299912349], [-118.396504, 34.095065999123364], [-118.396506, 34.096181999123495], [-118.395412, 34.09617299912344], [-118.394894, 34.096975999123345], [-118.392081, 34.09979399912345], [-118.392079, 34.106357999123325], [-118.392227, 34.106516999123286], [-118.391757, 34.106681999123275], [-118.3911970000001, 34.10748599912332], [-118.39057400000019, 34.10920299912327], [-118.3911400000001, 34.112422999123325], [-118.39157958912189, 34.1124259760246], [-118.39192000000011, 34.11421499912314], [-118.392096, 34.11448699912313], [-118.391651, 34.11419499912319], [-118.391012, 34.115206999123146], [-118.391712, 34.11700699912314], [-118.3906120000001, 34.11710699912318], [-118.3906120000001, 34.11760699912322], [-118.39031200000016, 34.118306999123234], [-118.388812, 34.11870699912312], [-118.390912, 34.11920699912309], [-118.39091200000014, 34.11990699912309], [-118.392112, 34.120406999123105], [-118.390012, 34.121106999123114], [-118.388712, 34.12090699912319], [-118.386912, 34.12180699912304], [-118.385812, 34.121406999123025], [-118.385012, 34.122006999123116], [-118.38321200000011, 34.122006999123116], [-118.38261200000012, 34.122606999123036], [-118.38161200000012, 34.122306999123055], [-118.38101200000011, 34.12300699912299], [-118.37571100000014, 34.12180699912313], [-118.37571100000014, 34.12330699912309], [-118.37541100000013, 34.12340699912316], [-118.374911, 34.12400699912312], [-118.374911, 34.12460699912307], [-118.373611, 34.12670699912286], [-118.37301100000015, 34.126406999123034], [-118.37171100000015, 34.126406999123034], [-118.371511, 34.126906999122994], [-118.372011, 34.12840699912318], [-118.372811, 34.129406999123084], [-118.373612, 34.13090699912306], [-118.372611, 34.131106999123], [-118.371311, 34.13010699912303], [-118.370111, 34.12990699912297]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Hollywood Hills West", "population": null, "cases": null, "resource_uri": "/1.0/boundary/hollywood-hills-west-la-county-neighborhood-current/", "external_id": "hollywood-hills-west", "slug": "hollywood-hills-west-la-county-neighborhood-current", "metadata": {"sqmi": 4.87457437609, "type": "segment-of-a-city", "name": "Hollywood Hills West", "slug": "hollywood-hills-west"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.32691, 34.105207999999514], [-118.32411, 34.105107999999724], [-118.309409, 34.10530899999958], [-118.309309, 34.083608999999576], [-118.319809, 34.08350899999959], [-118.324009, 34.08360899999972], [-118.34411, 34.0833089999996], [-118.34411082129503, 34.0888933953935], [-118.34338799999986, 34.08892799999961], [-118.343382, 34.09432799999974], [-118.361641, 34.09453599999972], [-118.361652, 34.097177999999616], [-118.36179419954144, 34.0971760045851], [-118.361711, 34.10120799999961], [-118.359411, 34.10160799999958], [-118.35401, 34.10160799999958], [-118.35401, 34.103307999999544], [-118.34581, 34.103307999999544], [-118.34591, 34.10370799999959], [-118.34391, 34.10400799999953], [-118.33831, 34.10390799999959], [-118.33771, 34.10450799999954], [-118.33751, 34.105107999999625], [-118.33061, 34.105307999999596], [-118.33051, 34.105107999999625], [-118.32921, 34.10520799999951], [-118.32811, 34.10550799999956], [-118.32691, 34.105207999999514]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Hollywood", "population": 0.6825448144555807, "cases": 190.0, "resource_uri": "/1.0/boundary/hollywood-la-county-neighborhood-current/", "external_id": "hollywood", "slug": "hollywood-la-county-neighborhood-current", "metadata": {"sqmi": 3.50639022096, "type": "segment-of-a-city", "name": "Hollywood", "slug": "hollywood"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.22353600000012, 33.9957139991247], [-118.22375800000022, 33.99386299912476], [-118.22354800000018, 33.99305299912482], [-118.22360700000016, 33.99147499912481], [-118.21522100000026, 33.99161599912476], [-118.21519800000011, 33.989815999124744], [-118.21277200000011, 33.989815999124744], [-118.2126120000002, 33.98419399912497], [-118.20414400000011, 33.983330999124995], [-118.204285, 33.98907899912477], [-118.20282800000012, 33.98891699912479], [-118.20264600000017, 33.98864899912478], [-118.194433, 33.98781899912485], [-118.19338100000026, 33.98749299912479], [-118.1922680000002, 33.98762099912487], [-118.1900150000002, 33.98741899912478], [-118.19011100000017, 33.98680499912484], [-118.18967400000018, 33.986784999124815], [-118.18967000000013, 33.98659199912489], [-118.18900900000021, 33.986561999124824], [-118.18958600000013, 33.981848999124836], [-118.1974110000002, 33.98265399912484], [-118.19753600000014, 33.98206399912484], [-118.20258100000014, 33.98256899912484], [-118.20254400000017, 33.980037999124825], [-118.20233700000023, 33.9796609991248], [-118.20429, 33.97987699912491], [-118.20428500000018, 33.979504999124906], [-118.20624300000014, 33.97963799912487], [-118.2061660000002, 33.976240999124876], [-118.20391100000023, 33.9759189991249], [-118.20350800000011, 33.97394699912489], [-118.20276300000017, 33.97187099912492], [-118.19979300000016, 33.97156599912492], [-118.19984200000017, 33.97120599912505], [-118.1994880000002, 33.971212999124944], [-118.1996120000001, 33.97039299912498], [-118.20189800000021, 33.97061099912498], [-118.20061400000017, 33.96873099912508], [-118.19955200000018, 33.967554999125085], [-118.1972150000002, 33.96544899912508], [-118.19234500000017, 33.961576999125086], [-118.212021, 33.963629999125246], [-118.21074698574172, 33.971822004760845], [-118.21762098624794, 33.97253900004339], [-118.21754298577561, 33.97341400469896], [-118.23009098617017, 33.974739001990315], [-118.23763198600773, 33.97473800076875], [-118.2376499859943, 33.97716600411239], [-118.2389539860212, 33.97717600071606], [-118.23902099059019, 33.98940300074951], [-118.23304400000016, 33.989340999125005], [-118.231092, 33.98960899912478], [-118.23108600000019, 33.98921299912479], [-118.23028400000017, 33.98921399912482], [-118.230273, 33.990342999124714], [-118.229663, 33.9903339991248], [-118.22968700000014, 33.99569199912468], [-118.22520500000013, 33.99569699912477], [-118.2252100000002, 33.9961079991247], [-118.22380900000016, 33.99614599912465], [-118.22381200000018, 33.996354999124684], [-118.2234970000002, 33.99635799912478], [-118.22353600000012, 33.9957139991247]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Huntington Park", "population": 0.5948391420911529, "cases": 142.0, "resource_uri": "/1.0/boundary/huntington-park-la-county-neighborhood-current/", "external_id": "huntington-park", "slug": "huntington-park-la-county-neighborhood-current", "metadata": {"sqmi": 3.03466655287, "type": "standalone-city", "name": "Huntington Park", "slug": "huntington-park"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.31700800000013, 34.003612999124634], [-118.31710800000018, 33.988912999124764], [-118.31760800000012, 33.98891299912483], [-118.317508, 33.98171299912489], [-118.317608, 33.970712999124984], [-118.31774723199024, 33.970712999124984], [-118.317747, 33.970922999125044], [-118.32184, 33.970916999124974], [-118.321887, 33.97079599912498], [-118.322315, 33.97079599912498], [-118.32236200000014, 33.9709159991251], [-118.326471, 33.970908999125044], [-118.32648, 33.967266999124945], [-118.33303, 33.967248999125], [-118.33302400000015, 33.97269599912504], [-118.335212, 33.97269099912483], [-118.335186, 33.9817579991249], [-118.35838644814693, 33.98166750817757], [-118.358509, 33.981911999124726], [-118.3582801803275, 33.98304551675896], [-118.35268298261069, 33.983059004695086], [-118.35268098897573, 33.98933499967645], [-118.34248699539597, 33.989415003420234], [-118.342473976764, 33.98845300143489], [-118.33726598260901, 33.988491004656865], [-118.33726498259321, 33.98898600470793], [-118.33775098954693, 33.98898400018702], [-118.33775298891564, 33.989466000277886], [-118.33725398261016, 33.98947400465335], [-118.33728198884775, 33.9963079996651], [-118.33162898259403, 33.99633300469205], [-118.33148498606828, 34.00149200244068], [-118.33185698606846, 34.002543002441314], [-118.33246922524283, 34.00338903404319], [-118.32920800000015, 34.00361299912457], [-118.322308, 34.003512999124546], [-118.31700800000013, 34.003612999124634]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Hyde Park", "population": 0.32234613567508735, "cases": 68.0, "resource_uri": "/1.0/boundary/hyde-park-la-county-neighborhood-current/", "external_id": "hyde-park", "slug": "hyde-park-la-county-neighborhood-current", "metadata": {"sqmi": 2.88464641644, "type": "segment-of-a-city", "name": "Hyde Park", "slug": "hyde-park"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.88393296024306, 33.99596513837542], [-117.8839679602466, 33.9956251383757], [-117.88831019396265, 33.99633580367612], [-117.88817559647809, 33.9974854705876], [-117.88377196022626, 33.99784013837963], [-117.88393296024306, 33.99596513837542]]], [[[-118.04406321380178, 34.02714873799544], [-118.04243334530351, 34.026661985154895], [-118.044279, 34.0269599991243], [-118.04712100000019, 34.02876399912426], [-118.04868214587087, 34.02883201755326], [-118.04762712660002, 34.02945187587972], [-118.04570021356696, 34.02887647506102], [-118.04406321380178, 34.02714873799544]]], [[[-118.00742800000022, 34.057790999123995], [-118.00363500000024, 34.055154999123985], [-118.00161200000014, 34.058913999123874], [-118.000696, 34.06124899912386], [-118.00032200000022, 34.06148499912391], [-117.9907980000002, 34.062530999123965], [-117.99037500000016, 34.06224099912392], [-117.99005400000016, 34.062806999123886], [-117.98977200000012, 34.062596999123755], [-117.989507, 34.06292799912383], [-117.988098, 34.06288099912392], [-117.98816700000019, 34.06260899912386], [-117.98653700000015, 34.062657999123964], [-117.98596200000019, 34.06326699912387], [-117.98524500000028, 34.06272399912387], [-117.985106, 34.06239999912394], [-117.98242999121163, 34.062633000114204], [-117.98547100000013, 34.05945399912391], [-117.98300000000013, 34.057768999124065], [-117.9852979893516, 34.05533900618562], [-117.98630698155675, 34.05603599949068], [-117.98671599006742, 34.05563000539558], [-117.98821098132987, 34.056671999305756], [-117.98923800000011, 34.055566999123904], [-117.986726, 34.05388499912394], [-117.99050400000019, 34.04996099912416], [-117.98143500000015, 34.043832999124156], [-117.95279100000022, 34.022805999124415], [-117.95414800000015, 34.019911999124375], [-117.9514800000001, 34.01766399912447], [-117.94826100000026, 34.015378999124415], [-117.94609200000015, 34.01409599912454], [-117.942359, 34.01239399912436], [-117.94179800000019, 34.0123369991245], [-117.941246, 34.01259299912452], [-117.94029900000014, 34.01187299912447], [-117.93921800000011, 34.01138699912448], [-117.92527000000015, 34.0090439991245], [-117.92405100000019, 34.01044199912443], [-117.9232160000002, 34.0126259991245], [-117.92156300000015, 34.01529599912445], [-117.92068300000017, 34.01709499912444], [-117.93166100000023, 34.017918999124404], [-117.93167400000013, 34.01608299912447], [-117.93784100000012, 34.01771299912441], [-117.93672000000016, 34.02236499912443], [-117.94309700000017, 34.022811999124244], [-117.94309700000017, 34.02444399912438], [-117.94473600000018, 34.02509199912429], [-117.94414700000019, 34.02586499912435], [-117.94381300000019, 34.02682099912422], [-117.94346800000012, 34.02689299912431], [-117.943497, 34.02809199912426], [-117.93779200000023, 34.02804599912432], [-117.93749800000022, 34.03378299912416], [-117.93734700000017, 34.03424999912422], [-117.94100800000022, 34.034531999124226], [-117.94080599065157, 34.03652999944679], [-117.93460199295998, 34.036164002907164], [-117.9346950000002, 34.03359399912423], [-117.935515985856, 34.02800600051953], [-117.93240598570969, 34.02782800314705], [-117.92277598567358, 34.02522200204278], [-117.91758899040165, 34.02468000466656], [-117.91997000000025, 34.01857599912439], [-117.919371, 34.01840899912442], [-117.91997600000019, 34.01691899912456], [-117.92355998570945, 34.01125100121223], [-117.91891798639193, 34.01154200071798], [-117.91664499257632, 34.01123400416885], [-117.91683998599596, 34.00932000010877], [-117.91462499954521, 34.009110003751125], [-117.91483398568604, 34.00736900163537], [-117.91070498525467, 34.00674300647126], [-117.91054898603926, 34.00813699946225], [-117.90918899980062, 34.00806900309967], [-117.90939298614242, 34.006924999803054], [-117.90840599233559, 34.00678500464746], [-117.90839498617926, 34.00635599973708], [-117.90248098528176, 34.00540200661032], [-117.90239998593788, 34.00632799976571], [-117.90174399284071, 34.00631700338911], [-117.90177400000015, 34.00595100239336], [-117.90201298586676, 34.00594700022023], [-117.90206198611598, 34.00533499984087], [-117.88127500000019, 34.00199699912459], [-117.876939, 34.001912999124634], [-117.87505900000019, 34.00213099912463], [-117.8728880000002, 34.00261499912455], [-117.871036, 34.00322599912461], [-117.86919200000017, 34.00404899912461], [-117.859372, 34.00940799912452], [-117.85661200000017, 34.01119599912451], [-117.85377300000019, 34.01278499912452], [-117.84933600000015, 34.016020999124386], [-117.84712200000021, 34.01734999912438], [-117.845778, 34.017982999124555], [-117.84172400000014, 34.019272999124425], [-117.840468, 34.02001599912443], [-117.839196, 34.020921999124404], [-117.8385970000002, 34.02161599912434], [-117.836913, 34.02561099912449], [-117.83597200000018, 34.026960999124285], [-117.83468500000016, 34.02784499912427], [-117.82749300000022, 34.031136999124335], [-117.82660700000018, 34.031847999124224], [-117.82552500000018, 34.033225999124284], [-117.82515400000021, 34.03321799912427], [-117.82509100000011, 34.03303699912438], [-117.82520900000014, 34.03299099912429], [-117.8247890000002, 34.03247199912426], [-117.82526400000026, 34.0317369991243], [-117.82513800000012, 34.03159199912425], [-117.82426800000019, 34.03256899912431], [-117.82194800000016, 34.0304789991243], [-117.82153800000026, 34.03089199912423], [-117.81979500000014, 34.029245999124264], [-117.82074100000021, 34.01253899912451], [-117.82137700000017, 34.01300099912446], [-117.822511, 34.012441999124526], [-117.82234900000019, 34.01188299912446], [-117.823263, 34.01039599912461], [-117.82371500000018, 34.01222899912445], [-117.8246330000001, 34.01191599912452], [-117.82490000000017, 34.01129299912457], [-117.8245850000002, 34.00972099912449], [-117.82508900000013, 34.00894899912462], [-117.82872600000019, 34.005689999124634], [-117.83418600000013, 34.00198899912462], [-117.83490300000018, 34.00183799912462], [-117.83571600000018, 34.00196999912457], [-117.84033300000016, 34.00175999912464], [-117.840965, 34.0034919991246], [-117.841022, 34.00611199912451], [-117.841141, 34.00641199912464], [-117.84215900000012, 34.006292999124554], [-117.84226800000012, 34.00677299912466], [-117.84185900000018, 34.00663699912464], [-117.84179900000025, 34.00689799912452], [-117.841189, 34.006604999124505], [-117.840357, 34.006598999124634], [-117.83908900000017, 34.00731899912458], [-117.8382340000002, 34.007542999124524], [-117.842022, 34.01002899912451], [-117.84292200000021, 34.00927499912442], [-117.84427300000031, 34.008483999124486], [-117.85517700000017, 34.00348299912453], [-117.85679000000016, 34.0019139991246], [-117.85646000000015, 34.00135599912464], [-117.85755600000019, 34.00083799912474], [-117.85854500000013, 34.000102999124636], [-117.85950300000029, 34.0015209991246], [-117.8613980000002, 34.00059999912465], [-117.8596840000001, 33.999229999124644], [-117.86011000000023, 33.998686999124644], [-117.8604210000001, 33.99715399912462], [-117.86190800000014, 33.99663399912476], [-117.86460938339444, 33.99642482824496], [-117.86682900000014, 33.99834699912466], [-117.86685200000018, 33.99862499912466], [-117.86797100000013, 33.999780999124646], [-117.871099, 33.99924299912461], [-117.87167500000011, 34.00163799912459], [-117.87465000000014, 34.001046999124675], [-117.87594400000017, 34.00039699912458], [-117.87649600000017, 34.000455999124746], [-117.87661900000012, 34.00011399912467], [-117.877879, 33.99966799912469], [-117.87777100000015, 33.99941699912464], [-117.87726200000017, 33.9994839991247], [-117.8771550000002, 33.9992329991248], [-117.87613700000017, 33.99926799912463], [-117.87638200000028, 33.99816699912463], [-117.86714200000021, 33.99859299912473], [-117.86542900000012, 33.996939999124834], [-117.86508399800834, 33.996372574645285], [-117.86837284417794, 33.99377009212252], [-117.868919, 33.994632999124725], [-117.869735, 33.994424999124746], [-117.86972712960579, 33.99303587452435], [-117.87001000000012, 33.99291099912477], [-117.87285205645891, 33.99332548764629], [-117.87265900000011, 33.99530399912468], [-117.87313600000014, 33.99535099912472], [-117.8732345081477, 33.994126687920186], [-117.87322860890643, 33.99543179743304], [-117.87382789380217, 33.99540096225707], [-117.87383472115604, 33.993569547501046], [-117.8790863899089, 33.994781434150234], [-117.88188671828361, 33.995265102617616], [-117.8817949600314, 33.997930138379246], [-117.88222396007363, 33.9979111383795], [-117.88221196007228, 33.99818213837967], [-117.882738474562, 33.99852148199926], [-117.88372830463295, 33.99860745802733], [-117.88362163939902, 33.99944042215995], [-117.88559115390386, 34.000101653790026], [-117.88717647131709, 34.00041793990203], [-117.88719380611464, 34.00026069675497], [-117.88803332515174, 34.00033054348028], [-117.88814482977457, 33.99935140934565], [-117.88740011977552, 33.999294853819976], [-117.88746781777144, 33.998658211243125], [-117.8882173882983, 33.99871421731989], [-117.88834552026414, 33.99758906471057], [-117.89416200000018, 33.99732499912466], [-117.89371687037834, 33.99633969423153], [-117.89395750716764, 33.99440945270526], [-117.8979789616277, 33.994468138378224], [-117.90045596187156, 33.99490613837964], [-117.90206896203046, 33.99494013838052], [-117.90185102173234, 33.99397690983686], [-117.90516900000021, 33.99382499912481], [-117.90538800000022, 33.99316699912488], [-117.90591100000012, 33.99306899912483], [-117.90631600000015, 33.993390999124884], [-117.90548500000014, 33.9939889991248], [-117.90673700000028, 33.993895999124796], [-117.9071383422669, 33.993717445104764], [-117.91010396282257, 33.993881138380765], [-117.910322962844, 33.99405713838059], [-117.91095396290628, 33.99406313838339], [-117.91121496293226, 33.993781138381024], [-117.91163496297413, 33.9922471383782], [-117.9118099629926, 33.98929413837471], [-117.91294096310396, 33.989743138374095], [-117.9139589632041, 33.989929138374755], [-117.92249796404514, 33.99032813837808], [-117.93015300000017, 33.990967999124734], [-117.93161292600024, 33.99087427370675], [-117.93099900000011, 33.997211999124644], [-117.9489506680739, 34.00239690323481], [-117.94870100000016, 34.006519999124556], [-117.95981265967663, 34.00986531188663], [-117.95867500000011, 34.01349199912457], [-117.9636850000002, 34.01553899912443], [-117.9646790000001, 34.01543699912442], [-117.96625100000011, 34.011828999124496], [-117.9735330000002, 34.014077999124474], [-117.97576687612423, 34.01497928253563], [-117.97524800000019, 34.015806999124486], [-117.97595835423184, 34.01609768877514], [-117.97557897398757, 34.01648495228202], [-117.97490897405117, 34.016383952282006], [-117.97371997416329, 34.01823695228362], [-117.97106897441397, 34.0207139522848], [-117.97313097421821, 34.02121095228544], [-117.97524097401755, 34.023414952287915], [-117.977129973839, 34.02102695228661], [-117.97512187933528, 34.02020854391074], [-117.97574300000011, 34.019174999124374], [-117.97988918846646, 34.02086884109508], [-117.97945897361788, 34.021932952287635], [-117.98191597338463, 34.02292195228889], [-117.98253497332618, 34.021933952288705], [-117.98991497262541, 34.02498495229241], [-117.989406972673, 34.0260239522932], [-117.99210597241678, 34.02713995229483], [-117.99245497238394, 34.026718952294374], [-118.00012297165561, 34.02968695229979], [-118.00265397141517, 34.03085795230037], [-118.00503497118915, 34.031634952301694], [-118.00647062157856, 34.0290235103976], [-118.00815025208144, 34.029022600123], [-118.00979900000014, 34.02860999912435], [-118.0107646413793, 34.02867617719223], [-118.01159948926349, 34.02818067932194], [-118.01238168734984, 34.028146250512606], [-118.012813, 34.027876999124324], [-118.0139299696134, 34.0278583005002], [-118.01512108911143, 34.02750557663537], [-118.01682856441136, 34.0276281809242], [-118.01955858934485, 34.02835999353858], [-118.02049071476952, 34.027978376171795], [-118.02156295706118, 34.0280876112537], [-118.02170719369998, 34.02790386699971], [-118.02413251201342, 34.027129637503734], [-118.02608886868515, 34.02735029560401], [-118.02642200711655, 34.027870661986334], [-118.02693500000017, 34.027680999124236], [-118.02697386053623, 34.02798069157815], [-118.02774612841245, 34.0276766436697], [-118.02808704592901, 34.02822328189697], [-118.03056500000027, 34.02709699912437], [-118.0312154131025, 34.027932693573305], [-118.05570129232106, 34.011250000522395], [-118.05582310119448, 34.01176051607085], [-118.05743200000032, 34.01428399912446], [-118.05626200000015, 34.015137999124434], [-118.05944700000015, 34.017298999124456], [-118.059254, 34.01781799912444], [-118.05875300000015, 34.01809799912443], [-118.05675900000016, 34.01849299912448], [-118.05568100000019, 34.018258999124434], [-118.0557840000002, 34.01814699912439], [-118.05461400000017, 34.017430999124464], [-118.05415300000018, 34.01789199912438], [-118.05412500000017, 34.016723999124395], [-118.05268800000029, 34.01788699912442], [-118.05093100000019, 34.01670799912437], [-118.04893900000026, 34.01867199912441], [-118.04876500000015, 34.018556999124435], [-118.04710000000023, 34.02011099912433], [-118.04731900000023, 34.02052699912444], [-118.04687300000028, 34.02077199912442], [-118.04472000000018, 34.02114699912435], [-118.04426100000026, 34.02159299912439], [-118.04468200000017, 34.02187999912435], [-118.04421700000016, 34.023130999124355], [-118.03759919699154, 34.02717485614442], [-118.03725255498719, 34.03062696160986], [-118.03790249396451, 34.0337023364932], [-118.03778297171854, 34.0332260057295], [-118.03599998397976, 34.03206800869788], [-118.03510797171494, 34.03289000572835], [-118.03531797171561, 34.0315200057267], [-118.03502097171533, 34.03142600572647], [-118.032971980413, 34.029621006855336], [-118.03095898603904, 34.03089200226412], [-118.02736398419003, 34.03373600014078], [-118.02679997170323, 34.03344000572716], [-118.02590897170234, 34.03245100572566], [-118.02587097863874, 34.02994400263655], [-118.00816898584483, 34.03171400230399], [-118.00530298599622, 34.03185800192837], [-118.00310298611424, 34.03153200259066], [-118.00202797166956, 34.031194005718376], [-117.99562498135147, 34.02858000756636], [-117.99535898433439, 34.028777997737045], [-117.99010697165394, 34.02871600571245], [-117.99069797165453, 34.02931000571343], [-117.99156597165552, 34.0298400057142], [-117.99045398142609, 34.03098199943277], [-117.98697598570882, 34.028623004124434], [-117.98403897164458, 34.031476005714616], [-117.98675397164773, 34.03334100571769], [-117.98396198127965, 34.03634099935114], [-117.98114898420057, 34.034397009156784], [-117.97843798138676, 34.03710199967632], [-117.97651797163257, 34.035912005718615], [-117.97741497163422, 34.035041005717716], [-117.97593297163266, 34.03366700571559], [-117.97761097163543, 34.03199400571371], [-117.97060398415707, 34.027171009083055], [-117.96903698209796, 34.02872199893774], [-117.96743197844698, 34.027219012095586], [-117.96590697162047, 34.02857800570654], [-117.97124498143931, 34.03249699940834], [-117.97178399036005, 34.031945005252076], [-117.97229897162822, 34.032266005712955], [-117.97185897162714, 34.032920005713585], [-117.97327498093969, 34.03389799924541], [-117.97375699050838, 34.033333005806135], [-117.9743459716303, 34.03375800571525], [-117.97383897162946, 34.034277005715786], [-117.97900698140181, 34.03780999940015], [-117.97958499036365, 34.03721100531132], [-117.9803669716374, 34.037708005721804], [-117.98069497163775, 34.037983005722296], [-117.98020397163693, 34.03863500572305], [-117.98176398155334, 34.03971299948927], [-117.98215999018589, 34.03932100526011], [-117.98309298262981, 34.03992699974626], [-117.98370398492452, 34.03950400222719], [-117.98529398380963, 34.03790000628783], [-117.9857619814744, 34.03802999759708], [-117.98590798544792, 34.03768501287091], [-117.98729797164681, 34.03864100572463], [-117.98656298190707, 34.039344999322815], [-117.9860869844032, 34.03896701003538], [-117.98405197164132, 34.041299005727275], [-117.98526597164282, 34.042136005728665], [-117.9851399716424, 34.042362005729075], [-117.98830498309536, 34.04450400001292], [-117.99003498611356, 34.04355900322916], [-117.99019198480208, 34.04480200063124], [-117.99051198684694, 34.044620004226154], [-117.9908429716495, 34.04476700573338], [-117.99002498833535, 34.045669997169135], [-117.99093698272362, 34.04629299973173], [-117.9927349716523, 34.04428700573328], [-117.99180297165121, 34.04374600573224], [-117.99271397682153, 34.04268201695101], [-117.99287797165294, 34.04303800573183], [-117.99300798858282, 34.042552012802695], [-117.99384398669618, 34.04310800406906], [-117.99328698495762, 34.043403000787244], [-117.99360497165375, 34.0436050057326], [-117.99316298537269, 34.0441790051763], [-117.99442498628564, 34.044387999674015], [-117.99311197165221, 34.04604500573566], [-117.99350897165266, 34.046369005736025], [-117.99342598141277, 34.04645199959848], [-117.99292098586493, 34.04612800989462], [-117.9921879716506, 34.04714800573688], [-117.99910798287371, 34.05199999983566], [-117.99941298722796, 34.05179800454569], [-118.0004529716602, 34.052574005745726], [-118.00036797166004, 34.05286200574615], [-118.00170298218934, 34.053785998534465], [-118.00224799071862, 34.053172005389776], [-118.00389997166467, 34.05406900574861], [-118.00666497557272, 34.05588599479469], [-118.00832597167154, 34.05130000574602], [-118.00991497167463, 34.04851300574292], [-118.0087249716739, 34.04606900573926], [-118.00941097167531, 34.044854005737996], [-118.0085409786131, 34.04412700280812], [-118.00779898593187, 34.044210003280725], [-118.00809898497991, 34.04231000080214], [-118.0151479865851, 34.03867500392269], [-118.01549899169375, 34.03700999839947], [-118.01641998635571, 34.03653400649724], [-118.01727898615147, 34.03663999994001], [-118.01778098590925, 34.037100003722315], [-118.01858298483717, 34.037059999414005], [-118.02082398679067, 34.03582900414442], [-118.02549698629484, 34.03855800350862], [-118.0203169853363, 34.04076200124857], [-118.02068500000016, 34.04188299912413], [-118.01631500000016, 34.044007999124034], [-118.01498700000018, 34.044930999123984], [-118.01282700000013, 34.046826999124], [-118.01153100000023, 34.04835999912403], [-118.01002400000021, 34.050722999124], [-118.00927700000024, 34.05236099912404], [-118.00742800000022, 34.057790999123995]], [[-117.9649879872772, 34.02785699632568], [-117.96656997162198, 34.02642800570392], [-117.96596297947949, 34.025876012849125], [-117.96446997161888, 34.027449005704675], [-117.9649879872772, 34.02785699632568]]], [[[-118.00742800000022, 34.057790999123995], [-118.0124810000002, 34.06105399912391], [-118.01184400000017, 34.062507999123895], [-118.0115940000002, 34.062398999123886], [-118.011115, 34.06333299912391], [-118.01142400000013, 34.06307199912392], [-118.01164800000018, 34.063131999123904], [-118.01141200000022, 34.06359899912392], [-118.01052, 34.06368999912387], [-118.01030800000018, 34.06276099912386], [-118.00966700000018, 34.06250999912378], [-118.01036700000023, 34.06106899912393], [-118.00979700000016, 34.06087799912392], [-118.00896800000012, 34.0626019991239], [-118.00820400000015, 34.062522999123836], [-118.007712, 34.063227999123924], [-118.007064, 34.06358099912393], [-118.0064020000002, 34.06358399912391], [-118.0059630000002, 34.06419699912382], [-118.00464200000013, 34.064376999123844], [-118.00576000000015, 34.06158499912389], [-118.00615900000015, 34.06150599912391], [-118.00742800000022, 34.057790999123995]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Industry", "population": 0.004370056373727221, "cases": 1.0, "resource_uri": "/1.0/boundary/industry-la-county-neighborhood-current/", "external_id": "industry", "slug": "industry-la-county-neighborhood-current", "metadata": {"sqmi": 12.3503569476, "type": "standalone-city", "name": "Industry", "slug": "industry"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.3666762430939, 33.98186875603094], [-118.3662520000002, 33.981644999124875], [-118.33518600000018, 33.981757999124966], [-118.33521200000015, 33.97269099912491], [-118.33302400000025, 33.972695999125065], [-118.33303000000018, 33.96724899912502], [-118.32648000000013, 33.96726699912499], [-118.3264710000002, 33.97090899912509], [-118.32236200000021, 33.97091599912512], [-118.32231500000015, 33.97079599912502], [-118.32188700000016, 33.97079599912502], [-118.32184000000018, 33.97091699912502], [-118.31774700000011, 33.97092299912509], [-118.31775297908966, 33.93090100164793], [-118.31339198605862, 33.93091200460982], [-118.3133920000002, 33.93068299912547], [-118.32209900000032, 33.93057099912544], [-118.32207200000018, 33.92903999912556], [-118.32642, 33.92909499912545], [-118.3264220000002, 33.92878799912551], [-118.32551000000014, 33.92879099912568], [-118.325542, 33.9267149991256], [-118.32642700000015, 33.92676899912554], [-118.32643000000016, 33.92613899912552], [-118.32674800000025, 33.926118999125535], [-118.326866, 33.925834999125584], [-118.33002200000021, 33.92521399912564], [-118.33277000000012, 33.925176999125526], [-118.33521900000011, 33.925387999125576], [-118.33666500000012, 33.9259269991256], [-118.33727700000013, 33.92709299912547], [-118.33736400000016, 33.92921699912555], [-118.3363460000001, 33.92932899912546], [-118.3363070000002, 33.93058399912546], [-118.34099300000011, 33.930580999125524], [-118.34386300000018, 33.930809999125536], [-118.34387500000018, 33.93100399912554], [-118.34422500000022, 33.9309869991255], [-118.34607400000019, 33.93204799912545], [-118.346297, 33.93237899912552], [-118.346348, 33.93252699912533], [-118.34610699077291, 33.932694001543624], [-118.34609298597675, 33.933255000189575], [-118.34574998612402, 33.9332630038719], [-118.34574398613628, 33.93344000003378], [-118.3450509861027, 33.93344600397483], [-118.34500798614592, 33.93665800373706], [-118.34605598603187, 33.936613001064124], [-118.34605298605146, 33.93735800075263], [-118.34546998617319, 33.937403003495554], [-118.34547598602991, 33.937833000837045], [-118.34489998617669, 33.93788200344013], [-118.3449109860922, 33.93820700402259], [-118.34531798608452, 33.93820600078068], [-118.34534098596235, 33.93851400065219], [-118.34456498616618, 33.938566003568525], [-118.34453898608776, 33.94000100021785], [-118.34425798613168, 33.94000000493039], [-118.34428498609708, 33.940913003999654], [-118.34444898607768, 33.94091200080675], [-118.34445098631961, 33.941455003078616], [-118.34429698585492, 33.941508001728614], [-118.3443079860918, 33.94272400402343], [-118.34668397913322, 33.94271700040126], [-118.34668499307557, 33.94206700308384], [-118.34690897924057, 33.94206400056318], [-118.34691999306307, 33.94185600314267], [-118.34730598607689, 33.94185300081888], [-118.34730498574102, 33.94209300494829], [-118.34797698643803, 33.942184999860395], [-118.34797598608313, 33.94272400407137], [-118.35207797914128, 33.942730000355326], [-118.35207899303474, 33.94181300327269], [-118.354814986098, 33.94182300075026], [-118.35481898611425, 33.944025003956384], [-118.35589598607477, 33.94401100085668], [-118.35589998609481, 33.944475004047675], [-118.35645197917599, 33.944475000356], [-118.35645499317349, 33.944253002428255], [-118.3569569790863, 33.944215001544286], [-118.3569579930507, 33.943932003215004], [-118.35783398609432, 33.943931000774036], [-118.35782698609997, 33.94426100403152], [-118.359114979124, 33.94425800039262], [-118.35911399304874, 33.94361500322717], [-118.35966298609756, 33.943615000766066], [-118.35968798609107, 33.94396200407465], [-118.36020398610435, 33.94396400073923], [-118.36020698609627, 33.94436200405458], [-118.36183798609903, 33.94436300076632], [-118.36184698598541, 33.944883004432285], [-118.36241798628832, 33.944915000828104], [-118.36301097908124, 33.94481400303142], [-118.36300599305477, 33.94451500320713], [-118.36662298080607, 33.94455100052952], [-118.36771198610315, 33.9433110024074], [-118.36780399290957, 33.9413920048591], [-118.36820598613386, 33.94172000390755], [-118.36877798607694, 33.94170900089165], [-118.36933997220858, 33.94300800568968], [-118.36888897220778, 33.94355500569013], [-118.36877098613978, 33.945405003878584], [-118.37003698623577, 33.9454199988107], [-118.370057, 33.95267199912537], [-118.37884300000026, 33.95264699912525], [-118.37879000000018, 33.95889499912517], [-118.378382, 33.958895999125225], [-118.37752200000013, 33.96018699912514], [-118.37607800000016, 33.96134999912518], [-118.37123900000014, 33.96336699912507], [-118.37161600000016, 33.96685199912505], [-118.371918, 33.967386999125054], [-118.37254000000017, 33.9671309991251], [-118.37289700000011, 33.96760699912506], [-118.37236600000017, 33.96798899912504], [-118.37014800000013, 33.96799299912506], [-118.37010800000017, 33.97660799912495], [-118.37034100000024, 33.981635999124784], [-118.36692700000016, 33.9816329991249], [-118.3666762430939, 33.98186875603094]]], [[[-118.37437398612072, 33.97972200193409], [-118.3744639860066, 33.979710001717514], [-118.37621198615261, 33.98286300262151], [-118.37538798690017, 33.98295800135227], [-118.37180499401644, 33.98205800273462], [-118.37180199543336, 33.979847001519005], [-118.37437398612072, 33.97972200193409]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Inglewood", "population": 1.1358309595067249, "cases": 315.0, "resource_uri": "/1.0/boundary/inglewood-la-county-neighborhood-current/", "external_id": "inglewood", "slug": "inglewood-la-county-neighborhood-current", "metadata": {"sqmi": 9.12268299949, "type": "standalone-city", "name": "Inglewood", "slug": "inglewood"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.92939800000015, 34.140126999122955], [-117.92953500000017, 34.12937599912309], [-117.9293820000002, 34.12635599912304], [-117.92890200000016, 34.12583499912313], [-117.92672600000019, 34.122002999123126], [-117.92670700000022, 34.12084899912317], [-117.92776800000016, 34.119755999123186], [-117.92957200000022, 34.11958599912318], [-117.93135800000032, 34.120555999123155], [-117.931395, 34.12166499912316], [-117.93829500000014, 34.12164699912319], [-117.93839700000015, 34.11430799912317], [-117.928569, 34.11432299912321], [-117.92881200000014, 34.10850599912329], [-117.92811000000015, 34.10849299912331], [-117.92802700000021, 34.110446999123305], [-117.92530200000013, 34.1105729991233], [-117.92539300016206, 34.09952800145877], [-117.92656098553145, 34.09937400158537], [-117.93020798590888, 34.09826600290265], [-117.93030399990592, 34.095939003161014], [-117.93680398586163, 34.096096999778226], [-117.93684598586488, 34.094139000482485], [-117.93650199276051, 34.09412400374622], [-117.93650298576581, 34.09305700084649], [-117.93416700002628, 34.093076002337206], [-117.93415899999111, 34.09151600249066], [-117.93592998492731, 34.09153300378875], [-117.93696100000018, 34.091842999123536], [-117.93842300000013, 34.09186499912352], [-117.93853400000022, 34.091707999123486], [-117.939792, 34.091683999123546], [-117.93976400000011, 34.0924319991235], [-117.94949100000015, 34.09233999912357], [-117.950993, 34.091923999123516], [-117.95229500000018, 34.09123199912354], [-117.95473500000013, 34.08904999912356], [-117.95477800000012, 34.09234299912355], [-117.95354600000019, 34.092353999123546], [-117.95350900000014, 34.09589099912354], [-117.95459700000016, 34.096007999123515], [-117.95459800000019, 34.09961899912344], [-117.94298000000019, 34.0997489991235], [-117.94295300000017, 34.1070639991234], [-117.9471420000003, 34.107023999123285], [-117.94720400000017, 34.10677099912333], [-117.947921, 34.10668999912334], [-117.94826300000015, 34.10674199912334], [-117.94828700000015, 34.107011999123394], [-117.95210700000014, 34.10697299912337], [-117.95210100000014, 34.10677499912329], [-117.95287600000016, 34.10671199912331], [-117.95373900000028, 34.10677099912333], [-117.95372000000023, 34.106956999123334], [-117.96103800000013, 34.10696299912327], [-117.97264, 34.10660599912335], [-117.97630300000012, 34.1065569991234], [-117.97756200000013, 34.10671899912338], [-117.97792500000017, 34.105384999123295], [-117.97799200000023, 34.099377999123405], [-117.98407300000021, 34.09912299912341], [-117.98441900000014, 34.092205999123514], [-117.984404, 34.092007999123545], [-117.982902, 34.09201499912345], [-117.98279600000014, 34.08108299912359], [-117.9983540000001, 34.07745599912367], [-118.00117500000017, 34.07693599912375], [-118.00105500000015, 34.079112999123794], [-118.00023900000028, 34.08292099912375], [-117.9985970000001, 34.08714899912355], [-117.995296, 34.091548999123596], [-117.993758, 34.09310499912349], [-117.99145, 34.09505999912351], [-117.992226, 34.09505299912344], [-117.99663900000012, 34.09654999912349], [-117.99509300000011, 34.099718999123525], [-118.00805400000012, 34.10410899912333], [-118.007067, 34.10612899912331], [-118.0029350000002, 34.104718999123406], [-118.0010990000002, 34.108506999123406], [-118.0043690000002, 34.1095049991233], [-118.00356200000016, 34.111243999123275], [-118.00380800000012, 34.11120799912328], [-118.00469, 34.109557999123325], [-118.00531600000014, 34.10970999912326], [-118.004642, 34.111088999123346], [-118.00384800000018, 34.11740399912328], [-118.0007200000002, 34.11612899912317], [-117.99651812109745, 34.11768324332478], [-117.9922, 34.117809999123125], [-117.99148300000022, 34.11968099912318], [-117.99129790174716, 34.11979136634926], [-117.99000266244042, 34.119588925549714], [-117.98965706828751, 34.12047999353587], [-117.99099800000018, 34.120906999123086], [-117.99054300000022, 34.122120999123155], [-117.98786500000013, 34.12138599912313], [-117.98695700000019, 34.12378599912305], [-117.98623900000017, 34.12359099912307], [-117.9863710000002, 34.12462299912317], [-117.98581900000013, 34.12491999912314], [-117.98523800000022, 34.12621599912314], [-117.98444900000011, 34.12604499912303], [-117.98236800000018, 34.126798999123125], [-117.982314, 34.12666199912308], [-117.98193000000015, 34.12664899912305], [-117.98194200000017, 34.12626899912317], [-117.97928100000028, 34.12627499912316], [-117.979198, 34.1251069991231], [-117.97754500000022, 34.125288999123114], [-117.97753600000013, 34.12500999912313], [-117.97358500000016, 34.12515499912309], [-117.97269600000013, 34.126467999123115], [-117.97058300000012, 34.12816999912305], [-117.96966200000021, 34.12844999912307], [-117.96922700000017, 34.130318999123006], [-117.9692660000002, 34.13221699912297], [-117.96769500000015, 34.13206499912304], [-117.960115, 34.13222299912308], [-117.9602320000001, 34.13489599912304], [-117.96066600000017, 34.13535499912296], [-117.96002700000015, 34.136075999122994], [-117.95205200000015, 34.136125999123045], [-117.95200000000013, 34.135910999123006], [-117.94891200000015, 34.13575099912295], [-117.946958, 34.13738499912295], [-117.94686000000013, 34.13718399912295], [-117.94629500000022, 34.137757999122975], [-117.94442800000016, 34.13695499912298], [-117.94380700000012, 34.137491999122986], [-117.93949700000033, 34.13459799912303], [-117.9390140000002, 34.134896999123036], [-117.93926600000017, 34.135308999123005], [-117.93936300000023, 34.13593899912301], [-117.93399100000016, 34.140812999122886], [-117.92939800000015, 34.140126999122955]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Irwindale", "population": 0.014590020426028595, "cases": 2.0, "resource_uri": "/1.0/boundary/irwindale-la-county-neighborhood-current/", "external_id": "irwindale", "slug": "irwindale-la-county-neighborhood-current", "metadata": {"sqmi": 9.58225973628, "type": "standalone-city", "name": "Irwindale", "slug": "irwindale"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.3090080000001, 34.0364109991242], [-118.3090080000001, 34.025611999124216], [-118.317708, 34.02561199912427], [-118.317708, 34.01901199912423], [-118.32830900000012, 34.02151199912432], [-118.335109, 34.02271199912422], [-118.335109, 34.03261099912418], [-118.333809, 34.03501099912416], [-118.331409, 34.03521099912408], [-118.32840900000011, 34.03571099912418], [-118.323609, 34.036110999124155], [-118.320009, 34.03671099912401], [-118.315308, 34.037210999124255], [-118.3090080000001, 34.03741099912408], [-118.3090080000001, 34.0364109991242]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Jefferson Park", "population": 0.08072886633606274, "cases": 21.0, "resource_uri": "/1.0/boundary/jefferson-park-la-county-neighborhood-current/", "external_id": "jefferson-park", "slug": "jefferson-park-la-county-neighborhood-current", "metadata": {"sqmi": 1.4190200982, "type": "segment-of-a-city", "name": "Jefferson Park", "slug": "jefferson-park"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.286908, 34.07650999912369], [-118.286908, 34.0690099991236], [-118.28710800000015, 34.06780999912369], [-118.28720800000013, 34.06201099912385], [-118.287913, 34.06200699912378], [-118.28790800000016, 34.05991099912378], [-118.289208, 34.059910999123936], [-118.289208, 34.05251099912384], [-118.29160800000012, 34.05251099912384], [-118.292708, 34.05291099912394], [-118.306408, 34.05281099912386], [-118.3112090000001, 34.05291099912394], [-118.315909, 34.05261099912384], [-118.319609, 34.05351099912386], [-118.323009, 34.05480999912394], [-118.3193090000001, 34.06190999912386], [-118.31443600000011, 34.061906999123785], [-118.314093, 34.06236199912393], [-118.31440900000011, 34.0712099991237], [-118.313609, 34.07180999912379], [-118.313809, 34.07310999912358], [-118.313709, 34.07630999912366], [-118.286908, 34.07650999912369]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Koreatown", "population": 1.3020662155762213, "cases": 311.0, "resource_uri": "/1.0/boundary/koreatown-la-county-neighborhood-current/", "external_id": "koreatown", "slug": "koreatown-la-county-neighborhood-current", "metadata": {"sqmi": 2.70048311541, "type": "segment-of-a-city", "name": "Koreatown", "slug": "koreatown"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.22209442715742, 34.24273456772886], [-118.222453, 34.24091899912175], [-118.22247, 34.24005099912174], [-118.22186700000017, 34.233730999121725], [-118.21752200000019, 34.233798999121746], [-118.21740300000023, 34.23728299912188], [-118.21331100000017, 34.2371189991218], [-118.19781900000012, 34.23728899912168], [-118.198139, 34.23630199912173], [-118.19764100000013, 34.23484999912176], [-118.19630600000026, 34.23456499912185], [-118.19571100000016, 34.23359499912183], [-118.1946060000002, 34.23350299912184], [-118.189906, 34.231102999121866], [-118.19050600000025, 34.228602999121904], [-118.19020600000022, 34.228102999121845], [-118.191206, 34.226702999121926], [-118.19083200000017, 34.22604399912197], [-118.19103500000016, 34.22550499912196], [-118.19048800000019, 34.22462199912187], [-118.18996600000018, 34.22456599912184], [-118.18999100000023, 34.22391199912191], [-118.18817900000016, 34.223227999121896], [-118.18804800000015, 34.22288699912193], [-118.18813400000019, 34.22260099912199], [-118.18450600000017, 34.22260399912192], [-118.18450600000017, 34.221103999121894], [-118.18219100000016, 34.220580999122], [-118.18116400000017, 34.219822999121945], [-118.180406, 34.21800399912196], [-118.18151500000027, 34.218496999121946], [-118.18290200000014, 34.21844799912198], [-118.18347800000015, 34.21807799912189], [-118.18358500000019, 34.216401999121985], [-118.18410400000016, 34.21604399912199], [-118.18248300000013, 34.215696999121974], [-118.1812050000002, 34.21521999912205], [-118.18033700000015, 34.215896999122], [-118.17985100000017, 34.21562799912208], [-118.17980900000025, 34.2147809991221], [-118.17848700000019, 34.214345999121996], [-118.17812700000027, 34.21381399912208], [-118.17834000000032, 34.21380299912201], [-118.177699, 34.21321199912213], [-118.17794700000029, 34.213053999122025], [-118.1773190000002, 34.21230599912197], [-118.17639900000027, 34.21248999912207], [-118.17653200000026, 34.21183799912203], [-118.17607800000029, 34.21183999912206], [-118.17596200000013, 34.21240899912212], [-118.175578, 34.21240899912215], [-118.17451000000018, 34.211431999122105], [-118.1754210000001, 34.21068399912205], [-118.17560600000023, 34.21080199912208], [-118.17550500000023, 34.21100399912204], [-118.1759310000001, 34.21112699912216], [-118.17639400000022, 34.21104599912203], [-118.17662800000019, 34.2108309991221], [-118.17654600000017, 34.20922399912215], [-118.17595900000029, 34.208203999122084], [-118.17593000000015, 34.20771099912203], [-118.17554400000013, 34.20683399912206], [-118.175762, 34.20608599912214], [-118.17564400000012, 34.20578099912218], [-118.17504300000013, 34.20564499912213], [-118.1742790000002, 34.20603899912215], [-118.17399100000017, 34.206818999122085], [-118.17386400000012, 34.20683299912209], [-118.17391700000016, 34.20641299912214], [-118.17357500000021, 34.206211999122054], [-118.17361200000015, 34.205574999122156], [-118.17302500000027, 34.20596399912214], [-118.17263200000019, 34.20574299912205], [-118.17243800000024, 34.20593499912215], [-118.17225800000031, 34.205768999122135], [-118.17265400000024, 34.20545999912215], [-118.1727060000001, 34.2046019991221], [-118.17100500000022, 34.2046019991221], [-118.17100500000022, 34.20390399912218], [-118.1689050000002, 34.2038039991222], [-118.16930500000012, 34.20150399912216], [-118.17131200000024, 34.19832099912237], [-118.17172900000016, 34.19855099912214], [-118.172205, 34.19690499912237], [-118.17407900000016, 34.19663899912224], [-118.17316000000017, 34.19768699912226], [-118.17545700000016, 34.1976789991223], [-118.176021, 34.19661099912222], [-118.1774020000002, 34.194923999122196], [-118.17781000000011, 34.194149999122246], [-118.17797200000031, 34.19421599912235], [-118.17791400000021, 34.19391199912222], [-118.178293, 34.19276099912227], [-118.17833700000021, 34.189454999122326], [-118.17889900000016, 34.18794799912235], [-118.17874000000012, 34.18712899912245], [-118.17831400000014, 34.18652199912237], [-118.17875700000013, 34.1869519991224], [-118.17975500000031, 34.1873609991224], [-118.18030500000017, 34.18740499912237], [-118.18071500000016, 34.186428999122434], [-118.17892500000019, 34.18567099912231], [-118.17743700000018, 34.18561699912237], [-118.17660500000015, 34.185804999122304], [-118.1759880000002, 34.18550499912242], [-118.17572800000019, 34.18530499912236], [-118.1754460000002, 34.18404099912229], [-118.17462600000019, 34.183662999122326], [-118.17417, 34.18288699912232], [-118.176282, 34.18215299912241], [-118.17618500000012, 34.18184799912239], [-118.18013500000016, 34.18075499912252], [-118.18117200000027, 34.18001599912244], [-118.18155000000016, 34.179505999122405], [-118.18221500000017, 34.17988499912248], [-118.18336700000022, 34.180235999122445], [-118.18400700000011, 34.179773999122396], [-118.18442500000019, 34.17969299912246], [-118.18731700000016, 34.17947599912243], [-118.1885320000002, 34.17813599912243], [-118.18888600000011, 34.17831699912246], [-118.1887730000002, 34.178512999122425], [-118.18954000000015, 34.17904399912242], [-118.189633, 34.17896599912246], [-118.189791, 34.179311999122454], [-118.19023000000013, 34.17910199912241], [-118.19120000000018, 34.180011999122364], [-118.19125300000013, 34.18035099912247], [-118.19533800000018, 34.18010599912233], [-118.1964380000001, 34.179893999122456], [-118.19786100000023, 34.1812319991224], [-118.198867, 34.181690999122466], [-118.20179100000014, 34.183713999122396], [-118.20520200000017, 34.18570799912234], [-118.20589800000015, 34.18704499912237], [-118.20790600000015, 34.18730499912238], [-118.2074180000001, 34.189044999122366], [-118.21022900000021, 34.189842999122234], [-118.21181300000013, 34.19090299912231], [-118.21230900000013, 34.19262599912233], [-118.21270700000015, 34.19240499912229], [-118.21073100000015, 34.194599999122296], [-118.21397000000019, 34.19665099912226], [-118.21420700000016, 34.1977049991222], [-118.215807, 34.1984049991222], [-118.215901, 34.200756999122135], [-118.21670700000027, 34.20090499912219], [-118.21680700000022, 34.20330399912215], [-118.21577600000015, 34.203397999122195], [-118.21563000000016, 34.20382399912212], [-118.21500700000021, 34.20380399912225], [-118.21500700000021, 34.20663199912214], [-118.21635600000019, 34.206200999122075], [-118.21731500000018, 34.205521999122055], [-118.2203250000002, 34.204860999122175], [-118.22047400000018, 34.206257999122116], [-118.22213298112396, 34.206109000238065], [-118.22224297191494, 34.2107050060026], [-118.22198197191422, 34.211966006004054], [-118.22218197191407, 34.2129530060055], [-118.22586997191877, 34.21412000600779], [-118.22589798530609, 34.21450300564003], [-118.22618498661313, 34.21456399949049], [-118.22616997191868, 34.21597800601031], [-118.22718698617281, 34.216371000225614], [-118.22721498581215, 34.216887004753865], [-118.22828598053974, 34.21697099906202], [-118.2284019929456, 34.216691003562644], [-118.22868398600596, 34.21669600067841], [-118.22864298582095, 34.217264004734346], [-118.22995897917869, 34.21734899940939], [-118.22996499288192, 34.21720000378081], [-118.23076498602842, 34.217227000610166], [-118.23194197192609, 34.217858006014154], [-118.23203497192594, 34.218314006014666], [-118.23086898402453, 34.21939700044552], [-118.23024498586051, 34.21958100222982], [-118.22940398655815, 34.22081700072735], [-118.22887598605121, 34.22085700374369], [-118.22871697191972, 34.22305300602014], [-118.22716498659193, 34.228383999260835], [-118.22654098559381, 34.228499001658015], [-118.22647597191478, 34.22875600602689], [-118.22683197191489, 34.22971700602824], [-118.22661797191428, 34.23075200602962], [-118.22721998533267, 34.23151000561766], [-118.22802798658284, 34.23167599953515], [-118.22777097191522, 34.23257700603236], [-118.22811498783454, 34.23371900493893], [-118.22706198711842, 34.234564002654295], [-118.22518898614328, 34.23759700314187], [-118.2248339857664, 34.237716002018125], [-118.2248499719092, 34.23844400603914], [-118.22379598730774, 34.23996000461891], [-118.22316698459903, 34.24037800054387], [-118.22296698634683, 34.24109199911489], [-118.22274598647445, 34.24107300612773], [-118.22307597190559, 34.24198400604327], [-118.22281098553016, 34.24233300156703], [-118.22269798153603, 34.243231000412884], [-118.221995, 34.24323799912172], [-118.22209442715742, 34.24273456772886]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "La Canada Flintridge", "population": 0.20693512304250558, "cases": 37.0, "resource_uri": "/1.0/boundary/la-canada-flintridge-la-county-neighborhood-current/", "external_id": "la-canada-flintridge", "slug": "la-canada-flintridge-la-county-neighborhood-current", "metadata": {"sqmi": 8.60460338961, "type": "standalone-city", "name": "La Canada Flintridge", "slug": "la-canada-flintridge"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.2369219719215, 34.25211800605981], [-118.22161097190047, 34.25156000605537], [-118.22190597190335, 34.24403300604584], [-118.22266297190454, 34.24350700604524], [-118.22281098553026, 34.242333001567054], [-118.22307597190569, 34.24198400604332], [-118.22274598647455, 34.241073006127756], [-118.22296698634693, 34.24109199911491], [-118.22316698459913, 34.24037800054391], [-118.22379598730784, 34.23996000461897], [-118.2248499719093, 34.238444006039195], [-118.22483398576652, 34.23771600201816], [-118.22518898614341, 34.237597003141886], [-118.22706198711852, 34.23456400265434], [-118.22811498783464, 34.233719004939], [-118.22777097191532, 34.232577006032386], [-118.22802798658294, 34.23167599953517], [-118.22721998533277, 34.23151000561769], [-118.22661797191435, 34.23075200602964], [-118.22683197191499, 34.22971700602827], [-118.22647597191488, 34.22875600602694], [-118.22654098559391, 34.22849900165805], [-118.227164986592, 34.22838399926086], [-118.22871697191982, 34.223053006020166], [-118.22887598605128, 34.220857003743745], [-118.22940398655825, 34.22081700072741], [-118.23024498586061, 34.219581002229894], [-118.2308689840246, 34.21939700044553], [-118.23203497192603, 34.21831400601469], [-118.23194197192619, 34.21785800601418], [-118.23076498602852, 34.217227000610194], [-118.22996499288202, 34.21720000378087], [-118.22995897917879, 34.21734899940941], [-118.22864298582103, 34.21726400473437], [-118.22868398600606, 34.21669600067847], [-118.2284019929457, 34.2166910035627], [-118.22828598053984, 34.21697099906205], [-118.22721498581222, 34.216887004753914], [-118.22718698617291, 34.21637100022567], [-118.2261699719188, 34.21597800601036], [-118.22618498661323, 34.21456399949051], [-118.22589798530619, 34.21450300564008], [-118.22586997191887, 34.214120006007825], [-118.22218197191414, 34.21295300600555], [-118.22198197191429, 34.21196600600411], [-118.22224297191504, 34.21070500600266], [-118.22211298603128, 34.20577000563873], [-118.22341598640438, 34.20584699927297], [-118.22333798606103, 34.20530100353639], [-118.22415497878723, 34.20521600281126], [-118.22416998587674, 34.205363004565356], [-118.22501597905449, 34.20539600130134], [-118.22496698548133, 34.20551300538638], [-118.22581197982342, 34.20565799979998], [-118.22566298597526, 34.20656700421777], [-118.22696598578248, 34.20658699953252], [-118.2272029845569, 34.20592100649243], [-118.22866597884112, 34.20612400223732], [-118.22851297192506, 34.20696600599925], [-118.22891098757401, 34.2071049974795], [-118.22915498501386, 34.206502007726144], [-118.2293489719263, 34.20657500599885], [-118.22915097192576, 34.20719200599963], [-118.22946598736435, 34.20729699761621], [-118.22976898492462, 34.206590007547334], [-118.23076197192819, 34.20688700599974], [-118.2303809719274, 34.20763600600051], [-118.23070198708821, 34.20775699716504], [-118.23117098593954, 34.20701500692244], [-118.2320289719298, 34.207267006000365], [-118.23258798581446, 34.20843700219906], [-118.23300398603645, 34.208319002812466], [-118.23301298567182, 34.20791600682257], [-118.23374197967938, 34.2080400000224], [-118.23524197193372, 34.20880800600313], [-118.23519997193227, 34.213031006008656], [-118.237541971935, 34.21448400601101], [-118.2370319719341, 34.21508600601176], [-118.23929197193675, 34.21656600601413], [-118.2394269857331, 34.21745500495935], [-118.2399589726425, 34.21767997527344], [-118.23995597193775, 34.21658600601439], [-118.24063397193842, 34.21696400601491], [-118.24054997193832, 34.21715600601524], [-118.24253098306635, 34.21849300018096], [-118.24274998091735, 34.218350007297516], [-118.24304198227047, 34.21845199988579], [-118.24339798539292, 34.21810200831069], [-118.24435197194312, 34.2187060060181], [-118.24431897194228, 34.22070900602069], [-118.24875297194788, 34.22249500602407], [-118.24851198146645, 34.24400900768971], [-118.24777498462981, 34.243829007297364], [-118.24735198481473, 34.24443699428911], [-118.24705798682716, 34.2442010041767], [-118.24691898511122, 34.24427600099692], [-118.2471059808799, 34.24491200729241], [-118.24668898603662, 34.245099002934076], [-118.24641898445759, 34.24549999436942], [-118.24626699009642, 34.245385005476955], [-118.24525998313608, 34.24639199939445], [-118.24441098541082, 34.24607000862193], [-118.24435197911629, 34.24671000486778], [-118.24386798549618, 34.24685700213409], [-118.24346799838874, 34.246595022726126], [-118.24337198070427, 34.2520500007964], [-118.23880799072303, 34.25220200343299], [-118.2369219719215, 34.25211800605981]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "La Crescenta-Montrose", "population": 0.19801980198019803, "cases": 16.0, "resource_uri": "/1.0/boundary/la-crescenta-montrose-la-county-neighborhood-current/", "external_id": "la-crescenta-montrose", "slug": "la-crescenta-montrose-la-county-neighborhood-current", "metadata": {"sqmi": 3.42644417184, "type": "unincorporated-area", "name": "La Crescenta-Montrose", "slug": "la-crescenta-montrose"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.36673575413067, 34.015310144504994], [-118.36717298965321, 34.00708799994498], [-118.36684299051318, 34.00707600371889], [-118.3662299860918, 34.00635200244775], [-118.3650269822155, 34.005555005190935], [-118.36265599492454, 34.00631599923107], [-118.36206098608892, 34.00695200244773], [-118.36198197493425, 34.00748300491877], [-118.36144798608825, 34.007690002447994], [-118.3614359768946, 34.00833200489534], [-118.35861498591107, 34.00905700130363], [-118.35754298269588, 34.00914500436619], [-118.35749198608566, 34.00724300244741], [-118.35912298608771, 34.001631002443915], [-118.35903298608768, 34.0010200024436], [-118.35819098608746, 33.99927000244232], [-118.35780498568305, 33.99714500176503], [-118.35936697217711, 33.996806005757094], [-118.35993597217794, 33.99683400575712], [-118.363143972182, 33.99798400575951], [-118.36537497218494, 33.9983390057604], [-118.36563397218558, 33.997301005759134], [-118.36548397218557, 33.99661200575816], [-118.36435197218468, 33.99488800575572], [-118.36415297218466, 33.99400800575455], [-118.3635609721842, 33.99294100575306], [-118.3634729721853, 33.9894990057485], [-118.361506972184, 33.98504200574225], [-118.36125998590585, 33.983034004046374], [-118.3717029889801, 33.98300199963576], [-118.37169598230702, 33.98203700675267], [-118.37582998602403, 33.982965000720995], [-118.37621198615271, 33.982863002621556], [-118.37446398600667, 33.979710001717535], [-118.37180199543346, 33.97984700151903], [-118.3718089827094, 33.977318004363276], [-118.37718398611672, 33.97702000201574], [-118.38034098594174, 33.97635500310189], [-118.38541898563784, 33.97665800292167], [-118.38655198611075, 33.97716000243135], [-118.3856509818367, 33.97856299750151], [-118.38450499150407, 33.978469005005806], [-118.37931598610405, 33.987579002437315], [-118.37864698610346, 33.98899000243802], [-118.37890999196173, 33.99271199860295], [-118.38210998683184, 33.99111200389278], [-118.38220898612434, 33.988956004013225], [-118.38800697461714, 33.98891100724408], [-118.38340999056088, 33.99231199741051], [-118.38589398610755, 33.99350400244189], [-118.38500898116199, 33.996433997474426], [-118.38380899101934, 33.99610000740383], [-118.38240999263074, 34.00031200443179], [-118.388622985858, 34.00120200234829], [-118.39036798610933, 34.00165400244757], [-118.39072298610948, 34.00194000244791], [-118.39012998610889, 34.00293500244852], [-118.38770898610645, 34.00818200245145], [-118.38782098610643, 34.0085690024518], [-118.38750998222538, 34.009668008884255], [-118.38432898405671, 34.012485997927776], [-118.37951698644277, 34.011416007129846], [-118.37859698514855, 34.0119329990585], [-118.37285799549137, 34.011921003115766], [-118.37264897701621, 34.015839000842945], [-118.3667189832137, 34.0156220050355], [-118.36673575413067, 34.015310144504994]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Ladera Heights", "population": 0.07071135624381276, "cases": 15.0, "resource_uri": "/1.0/boundary/ladera-heights-la-county-neighborhood-current/", "external_id": "ladera-heights", "slug": "ladera-heights-la-county-neighborhood-current", "metadata": {"sqmi": 2.93973763627, "type": "unincorporated-area", "name": "Ladera Heights", "slug": "ladera-heights"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.9353160301623, 33.973158168274715], [-117.91825867124435, 33.96920031218677], [-117.92151900000023, 33.95994799912517], [-117.92152000000019, 33.95955799912522], [-117.92575900000023, 33.94602899912529], [-117.93176400000024, 33.945913999125345], [-117.96079500000022, 33.94601299912536], [-117.9610400000003, 33.945878999125355], [-117.96117300000019, 33.94601299912536], [-117.96478000000023, 33.94590399912532], [-117.96660600000017, 33.945999999125284], [-117.96679700000018, 33.94603599912539], [-117.96676300000013, 33.94672599912536], [-117.96634300000022, 33.94671899912531], [-117.96568100000025, 33.947842999125236], [-117.96604800000016, 33.94783299912533], [-117.965576, 33.94869999912529], [-117.96561800000028, 33.94971399912523], [-117.9866530000002, 33.949436999125254], [-117.98616700000014, 33.950343999125224], [-117.98697600000015, 33.95044799912533], [-117.98728100000014, 33.95024999912527], [-117.98819200000013, 33.95055499912527], [-117.98864600000022, 33.9498229991253], [-117.988888, 33.949704999125245], [-117.99209300000021, 33.94969299912527], [-117.99269000000012, 33.94956299912526], [-117.99299700000012, 33.9499289991253], [-117.98171600000032, 33.95700999912512], [-117.98098800000022, 33.95789899912515], [-117.98162100000027, 33.95837399912519], [-117.98363700000016, 33.95902299912512], [-117.98386100000015, 33.95958899912517], [-117.9834340000002, 33.96016299912514], [-117.98327300000024, 33.96091399912513], [-117.98193500000012, 33.960998999125046], [-117.98244300000012, 33.9619279991251], [-117.98385000000023, 33.96342699912512], [-117.98370100000012, 33.96452199912501], [-117.98362700000017, 33.9646569991251], [-117.976921, 33.96474799912509], [-117.976757, 33.96566899912504], [-117.97696300000013, 33.96633299912501], [-117.97666100000028, 33.966500999125074], [-117.97607600000026, 33.96632199912498], [-117.97628600000017, 33.974485999125015], [-117.97431555579237, 33.97415796932355], [-117.96877735630378, 33.97257183085358], [-117.95797430647731, 33.97253606053579], [-117.9496119925358, 33.97463932246795], [-117.9496107702344, 33.97507396840948], [-117.94774400000014, 33.97545199912502], [-117.94772614752529, 33.97602327832117], [-117.9353160301623, 33.973158168274715]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "La Habra Heights", "population": 0.05455537370430988, "cases": 2.0, "resource_uri": "/1.0/boundary/la-habra-heights-la-county-neighborhood-current/", "external_id": "la-habra-heights", "slug": "la-habra-heights-la-county-neighborhood-current", "metadata": {"sqmi": 6.22726592484, "type": "standalone-city", "name": "La Habra Heights", "slug": "la-habra-heights"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.50091800000011, 34.22090299912183], [-118.5010180000001, 34.21540399912202], [-118.50091700000011, 34.21270399912196], [-118.501117, 34.211903999121915], [-118.50101700000015, 34.20830399912206], [-118.49461700000013, 34.20830399912203], [-118.494717, 34.201103999122054], [-118.49251700000012, 34.201103999122054], [-118.49251700000012, 34.19380399912225], [-118.4903170000001, 34.193803999122224], [-118.49034800000013, 34.18643299912223], [-118.518417, 34.186403999122305], [-118.518617, 34.19260399912219], [-118.518518, 34.22080299912185], [-118.502518, 34.221002999121836], [-118.50091800000011, 34.22090299912183]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Lake Balboa", "population": 0.4220637461795954, "cases": 87.0, "resource_uri": "/1.0/boundary/lake-balboa-la-county-neighborhood-current/", "external_id": "lake-balboa", "slug": "lake-balboa-la-county-neighborhood-current", "metadata": {"sqmi": 3.12585429603, "type": "segment-of-a-city", "name": "Lake Balboa", "slug": "lake-balboa"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.46165981439844, 34.702876849101784], [-118.46162517011187, 34.69923174955157], [-118.45280034272774, 34.6991897225409], [-118.4527735388628, 34.69550746758646], [-118.44393565093958, 34.69540508332281], [-118.44387569497232, 34.68830443388804], [-118.43061395544542, 34.688275668673654], [-118.43061123039065, 34.68795804844798], [-118.41304533655584, 34.687970809932764], [-118.41290668887686, 34.6738710727373], [-118.41730070685684, 34.673871772097286], [-118.41726197545313, 34.666587304256275], [-118.43048784601469, 34.66660947903074], [-118.43041073366388, 34.65943725166697], [-118.45674103668516, 34.65923129946811], [-118.4567122221968, 34.65197115408582], [-118.46557275829456, 34.651922201222824], [-118.46555331779746, 34.65010887976348], [-118.4699421311451, 34.6501093140024], [-118.46992262950332, 34.648295991771526], [-118.47870308978528, 34.64829640172775], [-118.47868554587683, 34.64644627938949], [-118.48305744148657, 34.64643492909422], [-118.48306498401051, 34.64462158339332], [-118.49203777852055, 34.64473553560444], [-118.49443463689428, 34.642773430371186], [-118.49465755581326, 34.6419791158663], [-118.49679622998639, 34.6403924043029], [-118.49769630235866, 34.64038298161678], [-118.49863479771042, 34.64005615739776], [-118.50035323389628, 34.639941192599274], [-118.50069681476567, 34.64054377844867], [-118.50059696455224, 34.64467475053702], [-118.49401125852637, 34.64476946798624], [-118.49403039434151, 34.64566702222385], [-118.48992538598962, 34.645659912657784], [-118.48964374891939, 34.64582610522837], [-118.48965274770255, 34.64655180064317], [-118.48855461551909, 34.64654000465064], [-118.48857219557706, 34.64833626885912], [-118.48415445056611, 34.648285375763415], [-118.48415357488499, 34.649196172481425], [-118.48304670132727, 34.64918513041515], [-118.48311766926828, 34.65560738646941], [-118.46560342089224, 34.65556530705647], [-118.4657171150526, 34.681138409598596], [-118.47468479270215, 34.68111568107172], [-118.47472792424404, 34.68464518297056], [-118.47914908980258, 34.684597491374426], [-118.47916126713548, 34.68647122839292], [-118.48354921249134, 34.68642067737859], [-118.48358207512067, 34.690058204865046], [-118.48800896152179, 34.690069274583756], [-118.48801644318834, 34.69098003266682], [-118.49244633218828, 34.69098955522151], [-118.4924566577594, 34.69190029798465], [-118.49687130024982, 34.69191104388089], [-118.49689143454508, 34.693729818165004], [-118.50130565933127, 34.69373762684356], [-118.50132527245597, 34.69555223985396], [-118.50573100650888, 34.695538035963864], [-118.50576080856399, 34.699157707853985], [-118.50136015975532, 34.69915959391432], [-118.50139505560557, 34.702766932874916], [-118.48370880321868, 34.70271405981773], [-118.46165981439844, 34.702876849101784]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Lake Hughes", "population": 0, "cases": 0.0, "resource_uri": "/1.0/boundary/lake-hughes-la-county-neighborhood-current/", "external_id": "lake-hughes", "slug": "lake-hughes-la-county-neighborhood-current", "metadata": {"sqmi": 9.38403052074, "type": "unincorporated-area", "name": "Lake Hughes", "slug": "lake-hughes"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.84505468931268, 34.631391951883174], [-117.8450500712808, 34.63120060779416], [-117.809364218105, 34.63125062945128], [-117.80921721732155, 34.60194262941813], [-117.81810121740334, 34.60205262925615], [-117.81803403605433, 34.59823962156431], [-117.82661527689818, 34.59821210328054], [-117.82675844708066, 34.59180585683946], [-117.83562430249059, 34.5918005233647], [-117.83562404290686, 34.587241700750376], [-117.84451552935025, 34.58717963885903], [-117.84443121704636, 34.57989662874884], [-117.86217821720511, 34.57993962842573], [-117.86245221740622, 34.58738562842977], [-117.85711789910289, 34.58726638844695], [-117.85344181841387, 34.58661006944215], [-117.85234886097109, 34.586664309814644], [-117.84987999945906, 34.58719839666711], [-117.84449899470457, 34.58720935278703], [-117.84457902449492, 34.616327875896], [-117.84459706090125, 34.616484709167516], [-117.86248221818414, 34.6165316284641], [-117.86263921837926, 34.623791628470435], [-117.85363472075343, 34.6238080039118], [-117.85380779649992, 34.63120521818633], [-117.86279621857769, 34.6311636284761], [-117.86286121877176, 34.638422628484975], [-117.85395757117696, 34.63845249874371], [-117.85400785550287, 34.6421812680843], [-117.84526971056141, 34.64215254945017], [-117.84505468931268, 34.631391951883174]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Lake Los Angeles", "population": 0.12993961629595657, "cases": 17.0, "resource_uri": "/1.0/boundary/lake-los-angeles-la-county-neighborhood-current/", "external_id": "lake-los-angeles", "slug": "lake-los-angeles-la-county-neighborhood-current", "metadata": {"sqmi": 6.95819809473, "type": "unincorporated-area", "name": "Lake Los Angeles", "slug": "lake-los-angeles"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.3873940000001, 34.29823299912109], [-118.38739, 34.296962999120964], [-118.382878, 34.29695599912106], [-118.382951, 34.293329999121184], [-118.382371, 34.2933289991211], [-118.382372, 34.29152599912105], [-118.386911, 34.29149399912118], [-118.386916, 34.289733999121104], [-118.3846190000001, 34.289730999121126], [-118.38461799999989, 34.28817499912114], [-118.385762, 34.28481699912118], [-118.381859, 34.28389699912116], [-118.377103, 34.28336399912122], [-118.3748010000001, 34.28365999912115], [-118.374675, 34.28282699912129], [-118.372637, 34.28283199912116], [-118.37351899906301, 34.283166001591596], [-118.37365700000014, 34.28598499912115], [-118.373517, 34.28614599912117], [-118.369838, 34.286126999121116], [-118.370474, 34.28450999912112], [-118.37053100000011, 34.28360799912121], [-118.37135, 34.28234299912118], [-118.370176, 34.281897999121014], [-118.369515, 34.283461999121144], [-118.3689, 34.283257999121254], [-118.368105, 34.28205199912128], [-118.3674070000001, 34.28036899912108], [-118.367281, 34.28058899912134], [-118.364279, 34.280764999121274], [-118.361314, 34.279727999121185], [-118.360516, 34.27995999912114], [-118.3547080000001, 34.27884799912124], [-118.351735, 34.27883299912125], [-118.351729, 34.282474999121156], [-118.326831, 34.28243499912116], [-118.326914, 34.28605999912125], [-118.31714360651196, 34.28608209854985], [-118.317455, 34.28372899912106], [-118.315919, 34.28110499912111], [-118.316111, 34.280600999121205], [-118.31701100000012, 34.28030099912117], [-118.317311, 34.27950099912119], [-118.31901100000012, 34.27930099912126], [-118.319411, 34.278900999121205], [-118.319329, 34.27828099912124], [-118.318729, 34.275660999121214], [-118.31778200000012, 34.27529599912127], [-118.31658100000013, 34.27556199912125], [-118.316411, 34.27530099912117], [-118.316998, 34.27446299912122], [-118.31708100000014, 34.27406799912126], [-118.315411, 34.274300999121266], [-118.318474, 34.27309799912121], [-118.3234110000001, 34.27290099912125], [-118.32661200000014, 34.27390099912123], [-118.32771200000012, 34.27380099912115], [-118.329012, 34.272801999121334], [-118.330812, 34.2723019991213], [-118.331248, 34.2719699991212], [-118.33455800000011, 34.2716349991212], [-118.33650200000014, 34.271100999121245], [-118.34065600000012, 34.27235399912129], [-118.3425280000001, 34.27204999912126], [-118.344, 34.272033999121305], [-118.345456, 34.27161799912123], [-118.34577600000011, 34.27132999912121], [-118.34667200000015, 34.27102599912139], [-118.34736000000015, 34.27116999912124], [-118.348928, 34.2707859991213], [-118.35145700000011, 34.27060999912127], [-118.35224100000013, 34.27024199912127], [-118.35483300000011, 34.269809999121335], [-118.355857, 34.268945999121335], [-118.35716700000017, 34.26873499912136], [-118.359137, 34.27277699912113], [-118.359313, 34.2720019991213], [-118.36061300000016, 34.27220199912128], [-118.36111300000013, 34.2726019991211], [-118.361095, 34.27289699912131], [-118.381394, 34.27411299912126], [-118.3823820000001, 34.27374299912122], [-118.391781, 34.27333299912138], [-118.39391400000011, 34.27350199912125], [-118.39459700000012, 34.273864999121294], [-118.408326, 34.28688999912116], [-118.40767933041626, 34.28736472062902], [-118.406168, 34.28592699912125], [-118.401588, 34.28642299912101], [-118.401143, 34.288449999121], [-118.400822, 34.288444999121005], [-118.400906, 34.29014299912115], [-118.400232, 34.29257199912101], [-118.399814, 34.29341999912119], [-118.396984, 34.2933479991211], [-118.396743, 34.29698299912105], [-118.393711, 34.29697899912102], [-118.393635, 34.29878799912113], [-118.38739600000011, 34.29877999912105], [-118.3873940000001, 34.29823299912109]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Lake View Terrace", "population": 0.1313315994128705, "cases": 51.0, "resource_uri": "/1.0/boundary/lake-view-terrace-la-county-neighborhood-current/", "external_id": "lake-view-terrace", "slug": "lake-view-terrace-la-county-neighborhood-current", "metadata": {"sqmi": 4.23104663578, "type": "segment-of-a-city", "name": "Lake View Terrace", "slug": "lake-view-terrace"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.16418000000016, 33.82768499912678], [-118.16418500000017, 33.82311899912691], [-118.16436700000013, 33.8216219991268], [-118.16473800000027, 33.82021399912685], [-118.16756200000015, 33.82014899912687], [-118.16755400000011, 33.82769199912679], [-118.16418000000016, 33.82768499912678]]], [[[-118.16418000000016, 33.82768499912678], [-118.164182, 33.84705699912655], [-118.16755900000015, 33.846939999126576], [-118.16774500000018, 33.854443999126474], [-118.16634200000021, 33.854431999126426], [-118.16418300000026, 33.85408999912645], [-118.16420000000011, 33.854779999126436], [-118.15582700000013, 33.854830999126456], [-118.15584700000029, 33.85732399912639], [-118.15761300000014, 33.85734899912629], [-118.15697200000018, 33.85783599912638], [-118.15709900000024, 33.86018299912635], [-118.14676900000022, 33.860252999126416], [-118.14653100000014, 33.86430199912632], [-118.14650900000021, 33.86793699912635], [-118.146901, 33.86900799912626], [-118.12902000000011, 33.86903699912624], [-118.12515200000014, 33.86817799912623], [-118.11720400000023, 33.86814199912629], [-118.11431000000015, 33.86923699912637], [-118.114279, 33.865573999126326], [-118.1084290000002, 33.8655869991264], [-118.108316, 33.8582829991263], [-118.10636200000013, 33.85829699912642], [-118.10574700000032, 33.85851299912631], [-118.10394400000017, 33.85851999912636], [-118.10391000000021, 33.85831299912632], [-118.10278800000027, 33.85831999912643], [-118.1000850000001, 33.84827599912654], [-118.09893900000017, 33.845874999126565], [-118.08680400000013, 33.84596899912648], [-118.08653300000017, 33.850125999126355], [-118.0835120000002, 33.85018799912647], [-118.082027, 33.85013299912645], [-118.081981, 33.84600599912656], [-118.062393, 33.846160999126504], [-118.0599190000003, 33.846383999126594], [-118.05835700000019, 33.84634799912648], [-118.05918800000022, 33.84413699912656], [-118.059197, 33.835214999126705], [-118.05944900000023, 33.83499699912675], [-118.06061000000017, 33.834877999126675], [-118.06101000000017, 33.834684999126644], [-118.06138800000016, 33.83373099912669], [-118.06182200000015, 33.833409999126665], [-118.0677110000002, 33.83344899912674], [-118.06770700000031, 33.83249099912672], [-118.068362, 33.83248899912671], [-118.06912600000013, 33.833217999126674], [-118.06912200000023, 33.83482199912675], [-118.06819700000017, 33.83473599912675], [-118.06819500000013, 33.83490599912663], [-118.06768200000029, 33.83490799912679], [-118.06764100000018, 33.837991999126714], [-118.07204600000013, 33.837991999126665], [-118.07204700000013, 33.83872999912662], [-118.0791410000001, 33.83871799912658], [-118.07883900000013, 33.83725999912665], [-118.07952700000016, 33.83726799912671], [-118.0796790000003, 33.83694699912668], [-118.079836, 33.8340099991267], [-118.08154700000028, 33.83397599912664], [-118.08185400000022, 33.83418399912667], [-118.08182700000022, 33.83145499912669], [-118.09031000000014, 33.831435999126754], [-118.09330900000015, 33.83171199912673], [-118.09333800000016, 33.831878999126694], [-118.09444100000017, 33.83184899912661], [-118.09740800000017, 33.832183999126734], [-118.12514500000016, 33.83227599912672], [-118.12507500000018, 33.84705499912655], [-118.13229900000026, 33.84707799912656], [-118.1321180000002, 33.84651699912661], [-118.13378800000014, 33.84666699912647], [-118.14248500000012, 33.84669399912652], [-118.142544, 33.832353999126724], [-118.14950100000013, 33.8323759991267], [-118.15070300000022, 33.829481999126706], [-118.15204800000022, 33.82875499912684], [-118.15420100000017, 33.828815999126775], [-118.15410300000013, 33.82755199912671], [-118.15599600000026, 33.82756399912675], [-118.15579400000013, 33.825031999126814], [-118.157788, 33.825039999126744], [-118.1610660000002, 33.827576999126784], [-118.16418000000016, 33.82768499912678]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Lakewood", "population": 0.8035805106296409, "cases": 79.0, "resource_uri": "/1.0/boundary/lakewood-la-county-neighborhood-current/", "external_id": "lakewood", "slug": "lakewood-la-county-neighborhood-current", "metadata": {"sqmi": 9.51248700913, "type": "standalone-city", "name": "Lakewood", "slug": "lakewood"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.00462700000018, 33.92646599912558], [-118.00351298585566, 33.92307700235819], [-117.99743298587906, 33.92447500124663], [-117.9943990000183, 33.9245050022698], [-117.99433798603215, 33.91821300015903], [-117.99233399264855, 33.91804500401986], [-117.99243898584612, 33.917451002341686], [-117.9916849929254, 33.91762200074484], [-117.99197198583799, 33.91721300077764], [-117.97649499293007, 33.91731200309699], [-117.97649600000024, 33.913512999125665], [-117.97669600000019, 33.91151299912559], [-117.97669600000019, 33.91061299912581], [-117.97649600000024, 33.90981299912578], [-117.97659600000013, 33.90261299912588], [-117.9842960000002, 33.902812999125814], [-117.98529600000018, 33.90261299912588], [-117.98529500000012, 33.89531299912596], [-117.99412900000014, 33.89550299912595], [-117.994113, 33.89002499912608], [-117.99397400000016, 33.889689999126], [-117.99415200000018, 33.88828799912605], [-117.99484600000015, 33.88829499912611], [-117.99507900000022, 33.88811199912602], [-118.00282800000016, 33.88811199912602], [-118.00281000000014, 33.884178999126014], [-118.00292200000023, 33.883759999126006], [-118.00260800000018, 33.8837669991261], [-118.002596, 33.8809099991261], [-118.01146000000017, 33.880912999126075], [-118.0113890000002, 33.87341899912627], [-118.02877600000019, 33.873318999126354], [-118.02911500000016, 33.9025259991258], [-118.034308, 33.902489999125905], [-118.03441300000021, 33.904140999125815], [-118.0356630000002, 33.90356399912592], [-118.03679800000022, 33.904212999125846], [-118.037849, 33.90416599912587], [-118.03794700000017, 33.91541499912565], [-118.03643100000014, 33.91541299912571], [-118.03644799058202, 33.91700000129196], [-118.01484198586837, 33.91711500393792], [-118.01485397172561, 33.918144005574966], [-118.01445897172495, 33.918615005575454], [-118.02322698585657, 33.92413100234444], [-118.00525199056693, 33.92826800126905], [-118.00462700000018, 33.92646599912558]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "La Mirada", "population": 0.4959907415061586, "cases": 60.0, "resource_uri": "/1.0/boundary/la-mirada-la-county-neighborhood-current/", "external_id": "la-mirada", "slug": "la-mirada-la-county-neighborhood-current", "metadata": {"sqmi": 7.84124979432, "type": "standalone-city", "name": "La Mirada", "slug": "la-mirada"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.30764647983841, 34.769182235691964], [-118.30763670902067, 34.76881320869032], [-118.30738400000017, 34.76879599911548], [-118.30744950773321, 34.76187620236692], [-118.31078189792116, 34.76180872787317], [-118.31073000000019, 34.76073799911566], [-118.31173700000011, 34.760790999115585], [-118.31166855818051, 34.75199077620536], [-118.3157687012126, 34.751868388807104], [-118.31572700000021, 34.74713399911574], [-118.30727900000011, 34.747368999115785], [-118.29856600000022, 34.747364999115646], [-118.29848902409432, 34.740127179922744], [-118.2921680000001, 34.740123999115816], [-118.29195000000014, 34.7381399991159], [-118.29845, 34.73811199911584], [-118.29841942223005, 34.73649323049909], [-118.29410000000018, 34.73639599911588], [-118.29423600000024, 34.734587999115845], [-118.296298, 34.73457399911592], [-118.29627500000016, 34.73282499911592], [-118.2942370000002, 34.73282799911591], [-118.29387100000012, 34.72708499911603], [-118.29394200000027, 34.725693999115876], [-118.28980721087251, 34.725739808436835], [-118.29008500000016, 34.73284899911587], [-118.28517100000018, 34.7328739991159], [-118.28518700000016, 34.729127999115995], [-118.2872290000002, 34.72908199911591], [-118.28712600000011, 34.72577899911594], [-118.28102500000014, 34.72585399911597], [-118.28121300000012, 34.72926299911594], [-118.27666859240578, 34.72930039627731], [-118.2765500000001, 34.725732999116005], [-118.27226986079903, 34.72578988531018], [-118.27228700000015, 34.72783699911595], [-118.27150500000032, 34.727868999116026], [-118.27150290671023, 34.72761723256449], [-118.26781971448818, 34.727638026399305], [-118.2677596719141, 34.72407740201294], [-118.27220233598335, 34.72402724817409], [-118.27204395737598, 34.714886999696816], [-118.2663694799544, 34.71496430130594], [-118.26640490466711, 34.71846080001644], [-118.26390900000017, 34.71848999911611], [-118.26391600000012, 34.717508999116156], [-118.26330919057582, 34.71751356731746], [-118.26330191044495, 34.71846287591834], [-118.26313500000016, 34.718493999116134], [-118.25453200000017, 34.71855399911606], [-118.25461556892992, 34.722196701041455], [-118.25902895045107, 34.722268694877535], [-118.25907304266407, 34.72399592920207], [-118.25799582781914, 34.724026387685356], [-118.2580375885068, 34.72567303745733], [-118.25775279767963, 34.72567853645991], [-118.25777600000012, 34.726273999115996], [-118.25698800000013, 34.726276999116045], [-118.257264, 34.72768399911598], [-118.25475331173985, 34.72766602997543], [-118.25489074565118, 34.733040522266045], [-118.25462177446393, 34.747893291454524], [-118.25465600000031, 34.7619919991155], [-118.17558584290616, 34.762308976213], [-118.1753450000002, 34.73322099911597], [-118.1307970000003, 34.733402999115924], [-118.13062000000012, 34.71851899911616], [-118.11257500000022, 34.718885999116104], [-118.09427249654243, 34.71877810232397], [-118.059156, 34.71927999911608], [-118.05921956127015, 34.69726601197136], [-118.0412280000002, 34.69718999911627], [-118.04118452558441, 34.68995695553333], [-118.03477986058893, 34.689949610683016], [-118.03481722509008, 34.69351005324335], [-118.03236173657824, 34.693528677112546], [-118.032311, 34.68995199911641], [-118.01919800000013, 34.689974999116465], [-118.0191168101913, 34.686541304918], [-118.01898986566309, 34.68996312555797], [-117.98790500000014, 34.69013199911643], [-117.98733433730138, 34.690115543309545], [-117.9874002524534, 34.68649777257451], [-117.98655700000018, 34.68649767747503], [-117.98656300000017, 34.6901499991164], [-117.97854300000014, 34.69019899911639], [-117.9785350000002, 34.67921699911655], [-117.97445100000012, 34.67920899911655], [-117.96966600000019, 34.67924999911662], [-117.969666, 34.68294099911649], [-117.96515546758582, 34.68293342330937], [-117.96509220220153, 34.68652570698392], [-117.963313, 34.686517999116454], [-117.96304477568073, 34.69018444833452], [-117.960862, 34.69017399911641], [-117.96091700000017, 34.68287499911648], [-117.95195500000018, 34.68277399911658], [-117.95195034245478, 34.6811051123787], [-117.9474433837668, 34.681024328887005], [-117.94744707155832, 34.68082884488879], [-117.94723400000018, 34.68082599911645], [-117.94721100000015, 34.675472999116565], [-117.93852794730641, 34.67539940156775], [-117.93840300000018, 34.660992999116836], [-117.94734800000018, 34.6609469991168], [-117.95203600000016, 34.66075999911669], [-117.98610400000022, 34.66065799911663], [-117.99101300000021, 34.66078999911666], [-117.99342886617289, 34.66063478935531], [-117.995362, 34.660777999116924], [-118.01404700000018, 34.66068299911676], [-118.01791400000015, 34.66073399911685], [-118.0194860000001, 34.6609469991167], [-118.02307100000013, 34.66067299911671], [-118.07671800000014, 34.660656999116725], [-118.11225600000019, 34.660465999116724], [-118.1123270000002, 34.64593699911689], [-118.18303341160667, 34.64568656461447], [-118.18337280688687, 34.63113455148007], [-118.2100090000002, 34.6309499991171], [-118.20997594977173, 34.64429600985163], [-118.20924895517643, 34.64447501852375], [-118.20735, 34.645563999116995], [-118.20343299726483, 34.64559848604333], [-118.20343322666876, 34.64651889049305], [-118.20264943480424, 34.64651020955969], [-118.20258600000018, 34.64577899911687], [-118.20233463836789, 34.64578636003727], [-118.20233424034119, 34.64559457446451], [-118.20123880518139, 34.64559203127671], [-118.20123964339321, 34.64581841475235], [-118.2010830000002, 34.6458229991169], [-118.20106100000011, 34.646979999116994], [-118.2012701989789, 34.65042877220838], [-118.20133876512259, 34.66017432979546], [-118.20570703204241, 34.66019541979155], [-118.20568236449796, 34.66384770558432], [-118.202316, 34.66379299911673], [-118.2024100000001, 34.664692999116745], [-118.20135316752922, 34.664722747844024], [-118.20138900000016, 34.66673599911661], [-118.20246459704653, 34.66663034433603], [-118.20247969987858, 34.66839319531145], [-118.2013822966926, 34.66838568530817], [-118.2013470000002, 34.671177999116615], [-118.20238200000017, 34.67117699911664], [-118.20240400000013, 34.6731159991166], [-118.20353300000016, 34.67322699911666], [-118.20354600000022, 34.6747709991167], [-118.20582740570484, 34.67480194963114], [-118.20584949173156, 34.6775570943635], [-118.20702669086508, 34.677545577199474], [-118.20702926515207, 34.678041493956], [-118.20804529230925, 34.67804939981136], [-118.20805235241532, 34.678884630819695], [-118.21024844222002, 34.678899741507976], [-118.21021573369353, 34.67483404353248], [-118.21131186356932, 34.67484203604356], [-118.2112680317531, 34.671196374810165], [-118.21019559277167, 34.67118981321121], [-118.21017644209603, 34.66937402852371], [-118.21460600000013, 34.669448999116575], [-118.214532, 34.66756599911667], [-118.21884000000016, 34.66760299911671], [-118.2188757442671, 34.67491941047665], [-118.22326017980645, 34.67487338091217], [-118.22321329748877, 34.66024558742268], [-118.22762400000013, 34.660217999116675], [-118.22741716646222, 34.652912308918566], [-118.2317931437165, 34.652903178237146], [-118.23173412539708, 34.65028754542565], [-118.22952478681232, 34.65029193247998], [-118.22948500000011, 34.65003999911688], [-118.22842357025013, 34.65004559360924], [-118.22840559615634, 34.649239196731955], [-118.22733282838198, 34.64923979816624], [-118.22726900000018, 34.64560899911692], [-118.23156200000012, 34.64562999911682], [-118.231554, 34.64821399911689], [-118.23170864850435, 34.649243340938526], [-118.23501686946433, 34.649243425141854], [-118.23611404495759, 34.64924117853026], [-118.23606000000018, 34.645604999116905], [-118.27121700000014, 34.64553299911698], [-118.27167700000012, 34.645330999116965], [-118.27711012415354, 34.64555846286639], [-118.27772800000011, 34.645436999117], [-118.28033600000015, 34.645551999117], [-118.2842446686666, 34.645371304162104], [-118.30663900000017, 34.64548999911693], [-118.30648023223976, 34.65272954021925], [-118.31115000000013, 34.65409999911683], [-118.31153100000023, 34.65481999911682], [-118.31236900000019, 34.654986999116794], [-118.31244993819385, 34.655169190668126], [-118.3128251253224, 34.655148921117004], [-118.31283958483738, 34.65544376403742], [-118.31359900000014, 34.6550389991168], [-118.31387732790948, 34.655220840304025], [-118.314715, 34.65497699911682], [-118.31461200000012, 34.65462199911675], [-118.31475500000013, 34.654595999116864], [-118.31507700000013, 34.65507699911686], [-118.31597704308122, 34.65509708464957], [-118.3168120000002, 34.655554999116745], [-118.31678931908351, 34.65589226411617], [-118.31790811055166, 34.65650115615847], [-118.3171849221631, 34.65698157073956], [-118.31758269566673, 34.65782251326256], [-118.31822592745772, 34.658010238548805], [-118.319138, 34.65742299911679], [-118.31968500000013, 34.65941699911675], [-118.32012500000022, 34.65945999911678], [-118.32080000000032, 34.65980999911671], [-118.32190129719206, 34.65958970849721], [-118.3223384240282, 34.65934415695962], [-118.32266417159721, 34.65993607504631], [-118.32432634114585, 34.65997501668293], [-118.32432599434834, 34.66068752238774], [-118.32409963044472, 34.6606206250694], [-118.32413700000015, 34.661588999116695], [-118.32297800000018, 34.66116399911672], [-118.32200100000021, 34.661657999116734], [-118.32208900000018, 34.664691999116656], [-118.324314, 34.66464399911674], [-118.32415000000019, 34.67458199911655], [-118.31913500000017, 34.674656999116614], [-118.31917200000024, 34.67860499911662], [-118.32415800000011, 34.6786019991165], [-118.32422300000016, 34.689212999116435], [-118.31558196057307, 34.689228340259625], [-118.31555600000014, 34.70101799911619], [-118.31209700000015, 34.700611999116255], [-118.31247600000015, 34.703769999116176], [-118.30681245650722, 34.703744161901014], [-118.30705005788197, 34.70881186310486], [-118.30685300000013, 34.71088099911618], [-118.31567894710953, 34.710799104147185], [-118.31576703838871, 34.71821101050484], [-118.32008468272406, 34.71813340379268], [-118.32013718405716, 34.72194393737694], [-118.31587351948966, 34.72201340994298], [-118.31584855163369, 34.72533061984446], [-118.31951800000016, 34.725300999116], [-118.31952400973402, 34.725435179412756], [-118.32021537722774, 34.72542485729054], [-118.32027508747075, 34.728971474617325], [-118.31578363392566, 34.729010901899265], [-118.31574929546979, 34.73264346462731], [-118.31509700000011, 34.73267699911585], [-118.31108200000021, 34.732717999115884], [-118.31134130208888, 34.72933446144045], [-118.30743542696281, 34.72930973783912], [-118.30727445636836, 34.737916928351325], [-118.30708960049424, 34.73973759757235], [-118.30719244242125, 34.74337479413109], [-118.31135095012957, 34.743250713252436], [-118.31104493287377, 34.73994702296663], [-118.31147246836457, 34.73994151095638], [-118.3114380000002, 34.73926799911584], [-118.31464400000017, 34.73923499911583], [-118.31471200000017, 34.741438999115836], [-118.3190910000001, 34.74143799911587], [-118.31905240050041, 34.737118250006894], [-118.32156705224439, 34.73707374588559], [-118.32164930102876, 34.73923046554245], [-118.32472200000015, 34.739134999115834], [-118.32487922623731, 34.74264267597923], [-118.32441164699827, 34.742654663899394], [-118.3244412702867, 34.74242415974049], [-118.31919044706692, 34.74243223828062], [-118.31932372304074, 34.747075912802586], [-118.3205840000002, 34.74706699911576], [-118.32077192629583, 34.75056476559103], [-118.32513078486012, 34.75047670822751], [-118.32517900000015, 34.75205099911567], [-118.32075746876772, 34.75204188882466], [-118.32116453841793, 34.7616112637546], [-118.31168500000013, 34.76182099911561], [-118.311893, 34.768854999115554], [-118.31153388240831, 34.76885160320454], [-118.31154714475029, 34.769173228505935], [-118.30764647983841, 34.769182235691964]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Lancaster", "population": 1.688665479282664, "cases": 314.0, "resource_uri": "/1.0/boundary/lancaster-la-county-neighborhood-current/", "external_id": "lancaster", "slug": "lancaster-la-county-neighborhood-current", "metadata": {"sqmi": 102.399673487, "type": "standalone-city", "name": "Lancaster", "slug": "lancaster"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.97139, 34.05141899912405], [-117.96858898981245, 34.04935900531053], [-117.96816398697003, 34.04975499638761], [-117.96736500000027, 34.04926799912411], [-117.96672499022812, 34.04868499723444], [-117.96718298759157, 34.04833900478948], [-117.96311900000019, 34.045319999124025], [-117.9680440000002, 34.040665999124194], [-117.95855898991634, 34.033692005433295], [-117.95364397160004, 34.03835800571647], [-117.95485197160151, 34.03924500571783], [-117.95432599524538, 34.039926988663694], [-117.95375198954987, 34.039227005863204], [-117.95227398759333, 34.04059199590024], [-117.9517219896542, 34.04015500547375], [-117.94959297159313, 34.04216100572037], [-117.95279798072592, 34.04454300719797], [-117.95231700000018, 34.04491299912401], [-117.952092, 34.044749999124114], [-117.9518770000003, 34.04494099912408], [-117.95163800000012, 34.04479199912418], [-117.95048300000013, 34.04581199912407], [-117.95090700000013, 34.04625099912412], [-117.950243, 34.04674599912407], [-117.95187800000012, 34.04797799912405], [-117.94934500000014, 34.05034899912394], [-117.94826300000015, 34.04954999912407], [-117.94569700000014, 34.051893999124], [-117.94538400000012, 34.05155299912402], [-117.9438560000003, 34.05298999912408], [-117.94249000000015, 34.051818999123995], [-117.94840200000017, 34.04645799912405], [-117.94890100000013, 34.04580999912409], [-117.94864498577772, 34.04522100085498], [-117.94802798581279, 34.045228003993195], [-117.94801498595305, 34.04560699914789], [-117.94734699264772, 34.045556004043576], [-117.94769798593036, 34.04197800032456], [-117.9470299851179, 34.04193500553736], [-117.94687398630454, 34.042463999863365], [-117.9459219856463, 34.042456004983585], [-117.9458809860869, 34.042947999014146], [-117.94499399258949, 34.04286800417995], [-117.94499698592425, 34.04180700033577], [-117.94429498552581, 34.04176300554549], [-117.94425898616873, 34.04213399877001], [-117.9433169924781, 34.042026004419526], [-117.94332998590735, 34.04185600037915], [-117.94281499272354, 34.041827003835785], [-117.94283298592633, 34.041670000325894], [-117.94031799273779, 34.04152600379222], [-117.94100800000022, 34.034531999124226], [-117.93734700000017, 34.03424999912422], [-117.93749800000022, 34.03378299912416], [-117.93779200000023, 34.02804599912432], [-117.943497, 34.02809199912426], [-117.94346800000012, 34.02689299912431], [-117.94381300000019, 34.02682099912422], [-117.94414700000019, 34.02586499912435], [-117.94473600000018, 34.02509199912429], [-117.94309700000017, 34.02444399912438], [-117.94309700000017, 34.022811999124244], [-117.93672000000016, 34.02236499912443], [-117.93784100000012, 34.01771299912441], [-117.93167400000013, 34.01608299912447], [-117.93166100000023, 34.017918999124404], [-117.92068300000017, 34.01709499912444], [-117.92156300000015, 34.01529599912445], [-117.9232160000002, 34.0126259991245], [-117.9236980000002, 34.011098999124584], [-117.92456700000018, 34.009717999124504], [-117.92527000000015, 34.0090439991245], [-117.93921800000011, 34.01138699912448], [-117.94029900000014, 34.01187299912447], [-117.941246, 34.01259299912452], [-117.94212100000017, 34.01233499912449], [-117.94427600000019, 34.0131799991245], [-117.94826100000026, 34.015378999124415], [-117.95269200000011, 34.01858299912444], [-117.95414800000015, 34.019911999124375], [-117.95279100000022, 34.022805999124415], [-117.98143500000015, 34.043832999124156], [-117.9855039938095, 34.046636003550454], [-117.98175497163494, 34.05055600573886], [-117.98275897163609, 34.051224005739876], [-117.9821409867974, 34.051918995431194], [-117.98109899011641, 34.051216005402296], [-117.97528898685898, 34.05722899588804], [-117.97116, 34.0546099991241], [-117.970651, 34.05411599912395], [-117.972609, 34.052311999124036], [-117.97139, 34.05141899912405]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "La Puente", "population": 0.40695899888086273, "cases": 40.0, "resource_uri": "/1.0/boundary/la-puente-la-county-neighborhood-current/", "external_id": "la-puente", "slug": "la-puente-la-county-neighborhood-current", "metadata": {"sqmi": 3.48684995452, "type": "standalone-city", "name": "La Puente", "slug": "la-puente"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.312609, 34.083608999123626], [-118.309309, 34.08360899912347], [-118.309309, 34.07640999912364], [-118.3262090000001, 34.076309999123566], [-118.326309, 34.0835089991235], [-118.312609, 34.083608999123626]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Larchmont", "population": null, "cases": null, "resource_uri": "/1.0/boundary/larchmont-la-county-neighborhood-current/", "external_id": "larchmont", "slug": "larchmont-la-county-neighborhood-current", "metadata": {"sqmi": 0.486332164533, "type": "segment-of-a-city", "name": "Larchmont", "slug": "larchmont"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.75552600000026, 34.161155999122755], [-117.755601, 34.15711099912283], [-117.75052500000015, 34.157061999122746], [-117.750419, 34.150915999122795], [-117.75054900000022, 34.15097399912282], [-117.75333400000017, 34.14952999912279], [-117.75443300000012, 34.14962699912298], [-117.755723, 34.1458929991228], [-117.75582900000016, 34.14519999912289], [-117.753597, 34.14533399912298], [-117.753811, 34.143776999122835], [-117.753586, 34.14366199912281], [-117.75213400000015, 34.14379399912282], [-117.75100200000018, 34.142595999122925], [-117.75015200000023, 34.14332999912294], [-117.75018, 34.141133999122935], [-117.749659, 34.14111899912281], [-117.74768700000011, 34.14015799912295], [-117.747667, 34.13756599912299], [-117.74813800000014, 34.13468899912292], [-117.7487840000002, 34.13328699912292], [-117.7488450000001, 34.132407999123], [-117.75036900000012, 34.132380999122965], [-117.75009300000015, 34.13032699912309], [-117.750242, 34.12942399912305], [-117.75969700000019, 34.12952999912306], [-117.759794, 34.11944499912324], [-117.7550710000002, 34.11931399912323], [-117.755192, 34.12068299912316], [-117.7507690000003, 34.12067399912311], [-117.75073100000013, 34.109179999123334], [-117.75103200000021, 34.108648999123325], [-117.75608700000016, 34.110270999123244], [-117.75619900000015, 34.10566199912329], [-117.756104, 34.09939999912342], [-117.756233, 34.09894899912352], [-117.75688200000027, 34.098124999123385], [-117.75611900000021, 34.09792299912348], [-117.7561340000001, 34.08996599912352], [-117.75748400000028, 34.09004999912359], [-117.7585450000002, 34.09040499912345], [-117.762103, 34.092760999123456], [-117.76426600000016, 34.089416999123564], [-117.764786, 34.090711999123414], [-117.76658800000018, 34.0938099991235], [-117.76992500000014, 34.095847999123514], [-117.77024100000018, 34.09512699912344], [-117.77111800000016, 34.09389099912357], [-117.77681000000017, 34.0861659991236], [-117.78022700000012, 34.08804799912357], [-117.78414400000014, 34.0890979991236], [-117.784948, 34.09032899912358], [-117.79242500000014, 34.0913399991235], [-117.793172, 34.09307399912352], [-117.79291100000023, 34.0930619991235], [-117.79259300000011, 34.093635999123535], [-117.79037100000015, 34.094580999123494], [-117.78916500000017, 34.09468499912347], [-117.787726, 34.0944209991236], [-117.78675400000019, 34.0953489991235], [-117.78992200000016, 34.09601099912347], [-117.790866, 34.095923999123514], [-117.7930440000002, 34.09529799912343], [-117.79472700000024, 34.09532999912351], [-117.79507800000022, 34.095772999123454], [-117.79677800000017, 34.09707099912347], [-117.79654900000024, 34.09842499912345], [-117.7971480000001, 34.09934799912342], [-117.79707500000028, 34.0995809991234], [-117.7974420000002, 34.09986499912344], [-117.79797, 34.099884999123425], [-117.79871000000013, 34.099484999123426], [-117.80138300000019, 34.099402999123406], [-117.801299, 34.10122599912341], [-117.796251, 34.10121399912346], [-117.79588700000019, 34.10273199912343], [-117.79400800000013, 34.1022659991234], [-117.79403600000018, 34.1030249991234], [-117.79134700000014, 34.103019999123354], [-117.79173600000018, 34.10404699912344], [-117.79171600000011, 34.10666599912337], [-117.79406300000015, 34.106661999123354], [-117.79404300000023, 34.11570599912316], [-117.79174000000015, 34.11570599912316], [-117.79174000000015, 34.11607599912318], [-117.79179400000018, 34.11911999912317], [-117.79396100000015, 34.119076999123166], [-117.79398300000021, 34.12242899912323], [-117.79298500000013, 34.12227299912315], [-117.79309100000012, 34.12368099912307], [-117.79417400000018, 34.12360099912314], [-117.794151, 34.12542799912313], [-117.7899010000001, 34.127319999123074], [-117.78739800000012, 34.12815799912307], [-117.78729700000017, 34.12854599912308], [-117.78539400000017, 34.12870299912308], [-117.78469300000017, 34.12918099912306], [-117.7836, 34.130496999123096], [-117.78334400000016, 34.13291099912303], [-117.782562, 34.13356099912303], [-117.78079900000021, 34.134609999123], [-117.77701800000011, 34.13931699912293], [-117.775946, 34.13923399912291], [-117.774335, 34.13940599912293], [-117.77342100000018, 34.140745999122935], [-117.77363600000024, 34.141221999122884], [-117.77250500000018, 34.14228299912298], [-117.77247800000016, 34.142803999122926], [-117.77262400000014, 34.1424359991229], [-117.773168, 34.14231599912293], [-117.77300500000014, 34.14271599912299], [-117.77328000000016, 34.14262099912295], [-117.77355700000018, 34.14316199912281], [-117.77274800000019, 34.143499999122824], [-117.77367900000016, 34.14478599912278], [-117.77421200000018, 34.14413699912288], [-117.77446700000014, 34.14407399912286], [-117.7759960000002, 34.14456199912285], [-117.776481, 34.145087999122886], [-117.77611700000016, 34.145840999122846], [-117.77611500000017, 34.14701999912283], [-117.77592600000011, 34.1479029991229], [-117.775695, 34.14833499912278], [-117.77446300000018, 34.14940699912285], [-117.774716, 34.150484999122824], [-117.77453464657631, 34.15071456056943], [-117.76771532903383, 34.15074559438335], [-117.767919, 34.15274299912282], [-117.767759, 34.15723699912277], [-117.75877500000013, 34.157273999122836], [-117.75868100000017, 34.16360199912276], [-117.75548100000016, 34.16356699912275], [-117.75552600000026, 34.161155999122755]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "La Verne", "population": 0.3532477669032403, "cases": 17.0, "resource_uri": "/1.0/boundary/la-verne-la-county-neighborhood-current/", "external_id": "la-verne", "slug": "la-verne-la-county-neighborhood-current", "metadata": {"sqmi": 8.57295018917, "type": "standalone-city", "name": "La Verne", "slug": "la-verne"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.34382300000026, 33.90193299912586], [-118.34383000000031, 33.89541799912598], [-118.3445200000003, 33.895460999125945], [-118.34450700000014, 33.89351399912596], [-118.34382100000018, 33.893484999126024], [-118.34377498067963, 33.87730200415273], [-118.351748, 33.874742999126205], [-118.35471100000017, 33.87285399912624], [-118.36129000000024, 33.87285799912621], [-118.36129000000024, 33.8946529991259], [-118.36625100000019, 33.89463699912597], [-118.3682800000002, 33.89606699912593], [-118.36917800000016, 33.896924999125915], [-118.36128600000015, 33.896858999125975], [-118.36125600000018, 33.90134199912586], [-118.35912600000013, 33.90153499912584], [-118.35900100000022, 33.90108099912585], [-118.35868800000016, 33.901103999125844], [-118.35866400000016, 33.90064799912587], [-118.35814200000016, 33.900587999125904], [-118.35810800000023, 33.90231399912582], [-118.35320600000027, 33.90230099912586], [-118.35317400000011, 33.901690999125876], [-118.35237200000014, 33.9016149991259], [-118.35237600000023, 33.90108199912591], [-118.35214700000017, 33.90111399912588], [-118.35215000000018, 33.901915999125926], [-118.351032, 33.90192599912576], [-118.35106900000024, 33.902566999125746], [-118.34383000000031, 33.9024529991258], [-118.34382300000026, 33.90193299912586]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Lawndale", "population": 0.3361447255836695, "cases": 55.0, "resource_uri": "/1.0/boundary/lawndale-la-county-neighborhood-current/", "external_id": "lawndale", "slug": "lawndale-la-county-neighborhood-current", "metadata": {"sqmi": 1.96846523451, "type": "standalone-city", "name": "Lawndale", "slug": "lawndale"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.318108, 34.01461199912431], [-118.318008, 34.01091199912451], [-118.31700800000013, 34.01091199912446], [-118.31700800000013, 34.003612999124634], [-118.322308, 34.003512999124546], [-118.32920800000015, 34.00361299912457], [-118.33246922524283, 34.00338903404319], [-118.33390998606953, 34.004625002442786], [-118.33534698607014, 34.006773002444426], [-118.33567141630907, 34.00802810642058], [-118.33500900000011, 34.00831199912448], [-118.335109, 34.02271199912422], [-118.32830900000012, 34.02151199912432], [-118.317708, 34.01901199912423], [-118.31800800000012, 34.01831199912425], [-118.318108, 34.01461199912431]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Leimert Park", "population": 0.15234912522115196, "cases": 31.0, "resource_uri": "/1.0/boundary/leimert-park-la-county-neighborhood-current/", "external_id": "leimert-park", "slug": "leimert-park-la-county-neighborhood-current", "metadata": {"sqmi": 1.19252997439, "type": "segment-of-a-city", "name": "Leimert Park", "slug": "leimert-park"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.36989198586366, 33.94540400305961], [-118.36877098613988, 33.94540500387863], [-118.3688889722079, 33.943555005690186], [-118.36933997220868, 33.94300800568972], [-118.36877798607703, 33.941709000891706], [-118.36820598613399, 33.941720003907605], [-118.3679579861511, 33.941396000586636], [-118.36780399290967, 33.94139200485915], [-118.36765598610319, 33.943444002407574], [-118.36662298080617, 33.94455100052957], [-118.36300599305487, 33.94451500320715], [-118.36301097908134, 33.94481400303147], [-118.36241798628842, 33.94491500082813], [-118.36184698598551, 33.94488300443231], [-118.36183798609913, 33.94436300076636], [-118.36020698609637, 33.94436200405462], [-118.36020398610445, 33.94396400073927], [-118.35968798609115, 33.94396200407468], [-118.35966298609769, 33.94361500076612], [-118.35911399304885, 33.943615003227215], [-118.3591149791241, 33.94425800039265], [-118.35782698610006, 33.94426100403156], [-118.35783398609442, 33.94393100077409], [-118.3569579930508, 33.943932003215025], [-118.3569569790864, 33.94421500154435], [-118.3564549931736, 33.94425300242828], [-118.35645197917609, 33.94447500035601], [-118.35589998609493, 33.94447500404771], [-118.35589598607486, 33.94401100085672], [-118.35481898611437, 33.94402500395643], [-118.3548149860981, 33.94182300075028], [-118.35207899303485, 33.94181300327272], [-118.35207797914138, 33.94273000035538], [-118.34797598608323, 33.942724004071394], [-118.34797698643814, 33.942184999860444], [-118.34730498574112, 33.9420930049483], [-118.34730598607699, 33.94185300081894], [-118.34691999306317, 33.9418560031427], [-118.34690897924067, 33.94206400056323], [-118.34668499307568, 33.94206700308387], [-118.34668397913332, 33.9427170004013], [-118.3443079860919, 33.942724004023454], [-118.34429698585502, 33.94150800172868], [-118.34445098631971, 33.941455003078666], [-118.34444898607778, 33.9409120008068], [-118.34428498609718, 33.940913003999675], [-118.34425798613181, 33.94000000493044], [-118.34453898608785, 33.94000100021791], [-118.34456498616628, 33.93856600356858], [-118.34534098596247, 33.93851400065224], [-118.34531798608462, 33.93820600078074], [-118.3449109860923, 33.938207004022644], [-118.34489998617678, 33.93788200344018], [-118.34547598603001, 33.93783300083708], [-118.34546998617331, 33.93740300349563], [-118.34605298605153, 33.93735800075265], [-118.34605598603197, 33.936613001064174], [-118.34500798614603, 33.93665800373709], [-118.3450509861028, 33.93344600397489], [-118.34574398613638, 33.933440000033805], [-118.34574998612412, 33.93326300387194], [-118.34609298597688, 33.93325500018962], [-118.34610699077301, 33.93269400154365], [-118.34719897910553, 33.932605001717995], [-118.34714199304769, 33.93381500320793], [-118.34824098608672, 33.93381399995346], [-118.34823998613791, 33.93340400380416], [-118.34836097906754, 33.9334000019278], [-118.34834799315762, 33.933644002563504], [-118.34875097902574, 33.933619002234785], [-118.34875099317486, 33.93373500237265], [-118.34945098477145, 33.933679005304384], [-118.35035698662502, 33.93396400208788], [-118.35247897936623, 33.934200000858915], [-118.35248099318035, 33.93454200230979], [-118.35376998663419, 33.93451899980447], [-118.35378198614552, 33.93414700378222], [-118.3547979790681, 33.934110001964086], [-118.35479899304812, 33.93452300321924], [-118.35587298617216, 33.934522999944335], [-118.35589798565505, 33.933982001336034], [-118.35692698643851, 33.93355500311717], [-118.35894898661759, 33.93293200550323], [-118.36017099310355, 33.93302000101756], [-118.3613039860799, 33.932782002138325], [-118.36129798610402, 33.93240700402265], [-118.36178498607575, 33.93240599996557], [-118.36178898557678, 33.93198100120847], [-118.36414498662707, 33.93094400522698], [-118.37003297694831, 33.930929001015066], [-118.3700369862359, 33.94541999881073], [-118.36989198586366, 33.94540400305961]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Lennox", "population": 0.22541702148975606, "cases": 45.0, "resource_uri": "/1.0/boundary/lennox-la-county-neighborhood-current/", "external_id": "lennox", "slug": "lennox-la-county-neighborhood-current", "metadata": {"sqmi": 1.06461567706, "type": "unincorporated-area", "name": "Lennox", "slug": "lennox"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.35072036963466, 34.645038563735405], [-118.35071354178883, 34.63906074624547], [-118.34181416794863, 34.636904693643004], [-118.34182629970715, 34.63778471862662], [-118.32394035830188, 34.637807901751145], [-118.3235551241984, 34.630538963157065], [-118.28865740498169, 34.63110432268006], [-118.27989880784625, 34.630996393037165], [-118.27103380034279, 34.6311156983303], [-118.27119907234234, 34.61673139846796], [-118.2283240781996, 34.6164493978044], [-118.22750665838996, 34.61703668107793], [-118.2239340395095, 34.61758990740343], [-118.22261172137505, 34.617281009004394], [-118.22201500068218, 34.61615813582363], [-118.21863516038222, 34.61490491279584], [-118.21862103701471, 34.61360461928555], [-118.21918470338628, 34.61405229432348], [-118.22310509964761, 34.61488014068951], [-118.22386311284856, 34.615924865510436], [-118.22533184581096, 34.61608276183934], [-118.22529719749376, 34.615893172593786], [-118.2257539736243, 34.616040569690284], [-118.2274862800375, 34.61539638667731], [-118.22737954354031, 34.609171833059406], [-118.2185721997493, 34.60911310885989], [-118.21849363645299, 34.6018582284784], [-118.22725421857852, 34.60189220388961], [-118.22683486147197, 34.59463290391926], [-118.23557145369915, 34.59466214190668], [-118.23575237907434, 34.59762547931243], [-118.2345760973985, 34.597675368362985], [-118.23503848719747, 34.59862500569054], [-118.23584847609963, 34.59919587586644], [-118.24005185614561, 34.60061825677565], [-118.24106525635202, 34.60112048629486], [-118.24196854779989, 34.60113195905234], [-118.2436169901628, 34.600822704115515], [-118.24477645489613, 34.60099938555261], [-118.24827646224199, 34.603165522586465], [-118.25084544030904, 34.60444074211689], [-118.25357936379594, 34.605316990335375], [-118.25536368547878, 34.60662807834254], [-118.25821941081885, 34.607991466836474], [-118.26141523138902, 34.60913594577614], [-118.26235352279377, 34.60931997860848], [-118.26252782832944, 34.60951997328539], [-118.26491284344668, 34.609693985227786], [-118.26496429416272, 34.60947328241412], [-118.2652827390861, 34.609474837229634], [-118.2652550683682, 34.60676165468347], [-118.26233746382304, 34.60675312160342], [-118.26231985822537, 34.60403995705299], [-118.2711641812706, 34.60406462727877], [-118.2709175644721, 34.59130032298174], [-118.26652863640936, 34.59131859616102], [-118.26647844117245, 34.58766299223133], [-118.26143022191232, 34.587698588559846], [-118.26146388698453, 34.58374354880071], [-118.27465731369765, 34.58375749762671], [-118.27458994756864, 34.58739517740328], [-118.28331745776084, 34.58747052355055], [-118.28335460120147, 34.583754507482446], [-118.28770325132324, 34.583752115012366], [-118.28773856816042, 34.58001823391204], [-118.30540787407287, 34.58061708965032], [-118.30978963140966, 34.58047380088577], [-118.30981318123483, 34.58223770863373], [-118.3141783936552, 34.582135466362416], [-118.3142014971496, 34.58390011627063], [-118.31746518523266, 34.58389163492596], [-118.31748640343669, 34.585724242529984], [-118.31422612206536, 34.58574436573664], [-118.31425015141154, 34.58754811395973], [-118.30770113975275, 34.587518019510014], [-118.30770228200844, 34.589325892974706], [-118.30551944945326, 34.589326782836636], [-118.30552347099166, 34.60174827383202], [-118.3405235736448, 34.602024823826305], [-118.34074386687143, 34.62715342024595], [-118.35828491022616, 34.627078435432466], [-118.35830330518176, 34.630681289234396], [-118.35947878904905, 34.630692465990485], [-118.35949499766032, 34.63781120648563], [-118.36391953513262, 34.63780936817746], [-118.36395031417817, 34.64500977936099], [-118.35072036963466, 34.645038563735405]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Leona Valley", "population": 0.01751006828926633, "cases": 1.0, "resource_uri": "/1.0/boundary/leona-valley-la-county-neighborhood-current/", "external_id": "leona-valley", "slug": "leona-valley-la-county-neighborhood-current", "metadata": {"sqmi": 15.3283588666, "type": "unincorporated-area", "name": "Leona Valley", "slug": "leona-valley"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.212306, 34.083709999123464], [-118.21210600000015, 34.08310999912351], [-118.211206, 34.08320999912352], [-118.21200600000013, 34.08238899912361], [-118.21200600000013, 34.079209999123485], [-118.210406, 34.07920999912363], [-118.211006, 34.07990999912359], [-118.208406, 34.08160999912358], [-118.206306, 34.083609999123475], [-118.2057060000001, 34.08300999912352], [-118.205306, 34.08370999912341], [-118.205006, 34.08510999912346], [-118.203506, 34.08410999912361], [-118.20390600000016, 34.08260999912355], [-118.20435700000014, 34.082124999123586], [-118.20433200000012, 34.08134099912347], [-118.20498, 34.08135799912342], [-118.20680600000013, 34.079109999123595], [-118.20640600000013, 34.07830999912363], [-118.206006, 34.078009999123545], [-118.20580600000017, 34.07560999912364], [-118.20540600000011, 34.075509999123554], [-118.20540600000017, 34.07440999912369], [-118.204605, 34.07490999912363], [-118.204105, 34.075509999123554], [-118.204105, 34.07720999912362], [-118.2029050000001, 34.07720999912362], [-118.2029050000001, 34.07870999912364], [-118.20180500000015, 34.07870999912354], [-118.20180500000015, 34.08040999912359], [-118.201005, 34.08050999912348], [-118.200892, 34.08107999912353], [-118.20010800000013, 34.08283099912352], [-118.199118, 34.08280899912359], [-118.198905, 34.08260999912364], [-118.197105, 34.08200999912356], [-118.198005, 34.08040999912359], [-118.197405, 34.08000999912364], [-118.197805, 34.079409999123584], [-118.196605, 34.078809999123706], [-118.196505, 34.08040999912359], [-118.19620500000015, 34.08050999912348], [-118.195105, 34.07960999912369], [-118.193805, 34.07920999912363], [-118.19370500000014, 34.07960999912369], [-118.193305, 34.078609999123536], [-118.19400500000012, 34.07580999912377], [-118.19530500000012, 34.0690099991236], [-118.196105, 34.06630999912371], [-118.197305, 34.06481099912375], [-118.202105, 34.06571099912376], [-118.2048050000001, 34.06571099912376], [-118.20750600000012, 34.06521099912367], [-118.213506, 34.06141099912384], [-118.219306, 34.05691099912389], [-118.22580600000012, 34.05441099912397], [-118.226606, 34.05471099912388], [-118.227306, 34.05511099912379], [-118.226634, 34.05575499912381], [-118.226506, 34.05673099912393], [-118.227106, 34.061810999123814], [-118.224706, 34.06771099912369], [-118.22480600000016, 34.07060999912368], [-118.22661800000013, 34.079945999123645], [-118.22590600000011, 34.08020999912356], [-118.22350600000013, 34.08200999912356], [-118.219306, 34.08470999912355], [-118.214506, 34.08630999912341], [-118.212906, 34.0864099991235], [-118.213006, 34.08560999912344], [-118.21150600000014, 34.085209999123435], [-118.212306, 34.0842099991235], [-118.212306, 34.083709999123464]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Lincoln Heights", "population": 0.3259755983980628, "cases": 70.0, "resource_uri": "/1.0/boundary/lincoln-heights-la-county-neighborhood-current/", "external_id": "lincoln-heights", "slug": "lincoln-heights-la-county-neighborhood-current", "metadata": {"sqmi": 2.51055393684, "type": "segment-of-a-city", "name": "Lincoln Heights", "slug": "lincoln-heights"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.95367939063702, 34.52828073487475], [-117.9536868376532, 34.523253089103974], [-117.95823205660378, 34.522451903647166], [-117.95905335693163, 34.522157615211576], [-117.96022567010709, 34.5213012043861], [-117.96848383108241, 34.52121249275931], [-117.96848433835889, 34.521073112172424], [-117.97273415431692, 34.51937798762481], [-117.9730729227806, 34.51933363011167], [-117.97317342413292, 34.519507013298174], [-117.97347271093973, 34.519388372607175], [-117.97337220910681, 34.51921498966608], [-117.97363194710334, 34.519019291692324], [-117.9774642499146, 34.51749023549079], [-117.97855606584187, 34.51716791970263], [-117.97864668747103, 34.51732480969022], [-117.97894595897041, 34.51720478157359], [-117.97884050321446, 34.51702450565392], [-117.97919660057109, 34.51680020643016], [-117.98344767468154, 34.5150937143725], [-117.983859210004, 34.51510726188845], [-117.98463409888498, 34.515561441693215], [-117.9857391659106, 34.51643689811021], [-117.98742801498548, 34.51743627929158], [-117.9873576454647, 34.51759682779726], [-117.98768256833937, 34.51769526095282], [-117.98775459738636, 34.517533365560205], [-117.98920298540844, 34.517674796954125], [-117.99196950161777, 34.517339033762134], [-117.99727228940442, 34.51737556736781], [-117.999002018783, 34.516473563104896], [-118.00112640929459, 34.51481150817285], [-118.00125875863344, 34.514500012558834], [-118.00232150085641, 34.514364116486426], [-118.00232900564802, 34.51921774959853], [-118.00249499706062, 34.51921271763977], [-118.00249798482479, 34.52111840487176], [-118.0028727195031, 34.52193932741443], [-118.00244292551498, 34.523174595905076], [-118.00207548550621, 34.52375060286617], [-118.00193918639178, 34.524647332572286], [-118.0012785818531, 34.52464553658175], [-118.00127925279564, 34.52826134095414], [-117.95367939063702, 34.52828073487475]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Littlerock", "population": 0.04020908725371934, "cases": 6.0, "resource_uri": "/1.0/boundary/littlerock-la-county-neighborhood-current/", "external_id": "littlerock", "slug": "littlerock-la-county-neighborhood-current", "metadata": {"sqmi": 1.8128731011, "type": "unincorporated-area", "name": "Littlerock", "slug": "littlerock"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.31836000000018, 33.807652999127164], [-118.311705, 33.807515999127055], [-118.31177100000016, 33.80213199912711], [-118.30879000000013, 33.80221699912707], [-118.30868500000022, 33.789470999127204], [-118.30847200000018, 33.78877299912729], [-118.308713, 33.78820699912724], [-118.30870900000015, 33.78221499912736], [-118.30903800000014, 33.78217899912727], [-118.30903900000025, 33.78194099912735], [-118.30992400000011, 33.78194699912743], [-118.30946400000018, 33.77891499912739], [-118.30766200000018, 33.7792189991274], [-118.30642700000018, 33.77495799912741], [-118.30885000000019, 33.7749639991275], [-118.3091350000002, 33.77648599912745], [-118.30991100000021, 33.776278999127484], [-118.31093500000021, 33.77729099912738], [-118.31276300000019, 33.77651799912741], [-118.31326800000015, 33.77655699912744], [-118.31410300000017, 33.77615799912742], [-118.31324400000018, 33.77628799912745], [-118.31294800000023, 33.77582999912746], [-118.3165750000003, 33.775644999127394], [-118.316446, 33.775250999127366], [-118.31830700000013, 33.77521799912735], [-118.31677500000015, 33.77718299912742], [-118.3161450000001, 33.77688299912744], [-118.31572300000016, 33.77708199912748], [-118.31633900000014, 33.77813899912743], [-118.31607300000015, 33.7786899991274], [-118.31657700000011, 33.778736999127396], [-118.315946, 33.77911099912741], [-118.31572500000016, 33.779533999127324], [-118.31655400000014, 33.78007199912729], [-118.31663300000022, 33.780566999127316], [-118.31722000000018, 33.780603999127415], [-118.31741200000027, 33.78091699912735], [-118.31760500000019, 33.7809169991273], [-118.31805200000011, 33.781712999127365], [-118.31900400000016, 33.78170899912735], [-118.31633200000016, 33.783795999127314], [-118.316856, 33.783858999127304], [-118.31848900000021, 33.78461599912726], [-118.31903600000014, 33.78442299912729], [-118.319009, 33.784663999127346], [-118.32165700000014, 33.785681999127256], [-118.32448900000014, 33.785914999127264], [-118.32547000000015, 33.785858999127306], [-118.32560500000011, 33.78631599912725], [-118.32781700000021, 33.78612799912734], [-118.32790300000016, 33.787286999127254], [-118.32890400000015, 33.78719499912737], [-118.328726, 33.78766299912727], [-118.328721, 33.78912499912725], [-118.32780900000024, 33.78923899912725], [-118.32785100000015, 33.788933999127316], [-118.32616600000019, 33.7889099991273], [-118.32622900000025, 33.78954599912722], [-118.32676100000023, 33.78954599912722], [-118.32680500000019, 33.79031599912721], [-118.32819000000012, 33.790302999127185], [-118.32775, 33.79100099912724], [-118.32909500000014, 33.79095299912726], [-118.3294980000001, 33.79201399912721], [-118.32950500000015, 33.792341999127224], [-118.32801100000013, 33.79388799912723], [-118.32807600000021, 33.79678799912713], [-118.32832100000013, 33.79823999912714], [-118.328175, 33.80097199912706], [-118.32612100000019, 33.80108599912704], [-118.32598300000012, 33.80350299912711], [-118.32792400000017, 33.80341499912713], [-118.32794100000015, 33.8068489991271], [-118.31991900000014, 33.80692199912707], [-118.31991600000016, 33.807660999127016], [-118.31836000000018, 33.807652999127164]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Lomita", "population": 0.2072917936836971, "cases": 34.0, "resource_uri": "/1.0/boundary/lomita-la-county-neighborhood-current/", "external_id": "lomita", "slug": "lomita-la-county-neighborhood-current", "metadata": {"sqmi": 1.91718201513, "type": "standalone-city", "name": "Lomita", "slug": "lomita"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.16418000000016, 33.82768499912678], [-118.1610660000002, 33.827576999126784], [-118.157788, 33.825039999126744], [-118.15579400000013, 33.825031999126814], [-118.15599600000026, 33.82756399912675], [-118.15410300000013, 33.82755199912671], [-118.15420100000017, 33.828815999126775], [-118.15204800000022, 33.82875499912684], [-118.15070300000022, 33.829481999126706], [-118.14950100000013, 33.8323759991267], [-118.142544, 33.832353999126724], [-118.14248500000012, 33.84669399912652], [-118.13378800000014, 33.84666699912647], [-118.1321180000002, 33.84651699912661], [-118.13229900000026, 33.84707799912656], [-118.12507500000018, 33.84705499912655], [-118.12514500000016, 33.83227599912672], [-118.09740800000017, 33.832183999126734], [-118.09444100000017, 33.83184899912661], [-118.09333800000016, 33.831878999126694], [-118.09330900000015, 33.83171199912673], [-118.091071, 33.83145899912667], [-118.08182700000022, 33.83145499912669], [-118.08179300000025, 33.830873999126766], [-118.08242600000027, 33.83060099912683], [-118.08272800000015, 33.830178999126765], [-118.082995, 33.82868599912677], [-118.08212100000028, 33.82568399912678], [-118.08190200000028, 33.8253619991268], [-118.08170400000012, 33.824318999126824], [-118.08089600000015, 33.82430399912682], [-118.08133700000016, 33.82497699912678], [-118.0794140000002, 33.824143999126846], [-118.074622, 33.822776999126816], [-118.07460900000018, 33.82320899912684], [-118.072377, 33.82305899912693], [-118.07179200000016, 33.8225439991269], [-118.071826, 33.82397399912676], [-118.068721, 33.82401999912673], [-118.06871300000014, 33.822477999126804], [-118.065961, 33.82259999912682], [-118.06544000000015, 33.82401199912681], [-118.06326800000029, 33.8240739991268], [-118.063162, 33.81960999912697], [-118.07259700000026, 33.81511499912682], [-118.08459700000013, 33.80321599912707], [-118.08639700000015, 33.796715999127066], [-118.0867380000003, 33.796089999127034], [-118.09899700000022, 33.776815999127415], [-118.09789400000014, 33.77471299912752], [-118.09675200000018, 33.77301999912757], [-118.09183, 33.75983499912762], [-118.09189700000029, 33.758716999127635], [-118.09689700000014, 33.75591699912762], [-118.0976960000002, 33.75561699912764], [-118.1081930000002, 33.75001699912774], [-118.1137900000002, 33.74672299912773], [-118.11483195462746, 33.745947149846266], [-118.11575601825668, 33.749306024597935], [-118.11477201446537, 33.7507810043492], [-118.11502197447241, 33.75189901111625], [-118.11543897784354, 33.75178699999117], [-118.11733501209625, 33.75267798561939], [-118.11789401547982, 33.75268098450813], [-118.11850699886054, 33.75246801079558], [-118.11990200824552, 33.751080998447335], [-118.12064899460218, 33.750898013622084], [-118.12124298502096, 33.75032301616543], [-118.12118700576438, 33.749392992371426], [-118.11838998958764, 33.746884974367376], [-118.11657597757248, 33.746008983182904], [-118.11657997609086, 33.74539500017243], [-118.11765799767481, 33.74377602114962], [-118.12040198087169, 33.74592001615018], [-118.12388200711216, 33.74784398741921], [-118.13300799383194, 33.75127297993868], [-118.13650101525688, 33.752891011944115], [-118.13908500510885, 33.753843974606234], [-118.14231801761876, 33.755543976237234], [-118.1458900097804, 33.75705399563576], [-118.14815801146105, 33.757832023121516], [-118.15809701270196, 33.760480988896205], [-118.16730802054838, 33.76260299204607], [-118.16758402353666, 33.76251802353184], [-118.16833300915243, 33.762845007628556], [-118.17186901464915, 33.7634669876757], [-118.17431900152546, 33.76371999918347], [-118.17497202270145, 33.763604989169785], [-118.17816099889777, 33.763670017704534], [-118.18005798016803, 33.76333498395897], [-118.18133997879829, 33.76254001538257], [-118.18188598699733, 33.76199900533144], [-118.18088498950323, 33.76083201671497], [-118.18071699912184, 33.760827018567156], [-118.1808589991341, 33.76058800187334], [-118.18315399081342, 33.76326101137002], [-118.18812798976703, 33.76041901186228], [-118.18919401579596, 33.759997010343255], [-118.19096399149734, 33.75973700142833], [-118.19065200184428, 33.758386975374655], [-118.18920001357347, 33.75761699753763], [-118.1875479941623, 33.75700001563848], [-118.18682000076785, 33.75696997413899], [-118.18619502183192, 33.75714701379884], [-118.1837730245838, 33.7581560083296], [-118.18360098307197, 33.758162006107014], [-118.18347397750324, 33.757926987931576], [-118.18607001552232, 33.75670901820653], [-118.18731697450522, 33.756562020046154], [-118.18829797940757, 33.756792987091266], [-118.19073002556351, 33.75787000904558], [-118.1912309978194, 33.75843201131777], [-118.19152299488091, 33.759601998822916], [-118.19229902310738, 33.75961399437783], [-118.19250999756103, 33.759774987352394], [-118.19410798436256, 33.75958400549049], [-118.19588301082403, 33.75978998179601], [-118.19745000910878, 33.76033099184718], [-118.19946799817042, 33.761320993415886], [-118.19891799145294, 33.762326989057904], [-118.1989259884895, 33.76324701655598], [-118.20067402495248, 33.76327700544341], [-118.20081902385367, 33.76317299135488], [-118.20066397604454, 33.76207397754991], [-118.20005599081173, 33.76157200566461], [-118.20051597825459, 33.76173699715738], [-118.20152402576787, 33.76176198789686], [-118.20233198952897, 33.76139102009849], [-118.20241900991451, 33.76118699044002], [-118.20244200139469, 33.76040701630732], [-118.20163398502169, 33.7593769769433], [-118.20181002505198, 33.75918799434066], [-118.20165397761336, 33.75896602396181], [-118.20118799239275, 33.75915400693493], [-118.19789000396024, 33.757174003797374], [-118.19784801951782, 33.75608198739947], [-118.19714701612187, 33.755441014390435], [-118.19582298043726, 33.754891007673066], [-118.19486601925682, 33.75506899435042], [-118.19428602365191, 33.754557973186685], [-118.19420200215527, 33.75412597537198], [-118.18868299463225, 33.752196006325605], [-118.1887299772225, 33.75207899705265], [-118.18787397862953, 33.7519000107458], [-118.18761602158581, 33.75166599219992], [-118.1882000157088, 33.75057097691321], [-118.18880000390527, 33.75044602321572], [-118.19010899253415, 33.749602020177726], [-118.18611199996467, 33.73854201328114], [-118.18795700049675, 33.7366269860664], [-118.18848201647455, 33.73586900378441], [-118.18513299432132, 33.73510902224322], [-118.18511700024803, 33.733036000942796], [-118.19571002229472, 33.73290499685577], [-118.19634299826699, 33.73333299615219], [-118.19659600977492, 33.73381797433467], [-118.19649999272322, 33.73565297857106], [-118.19712802315986, 33.73620098602911], [-118.20238202362003, 33.73629400419216], [-118.20414200302581, 33.73848698104222], [-118.20452301973187, 33.738775979215035], [-118.20492697530638, 33.73855200957698], [-118.20393597410805, 33.739386016319145], [-118.20365702484322, 33.739364024468344], [-118.20258400140729, 33.73990598153702], [-118.2023870217678, 33.74063297530201], [-118.19538898336333, 33.74063797344996], [-118.19243902386079, 33.743040977735824], [-118.19244802052707, 33.74495200643248], [-118.19676899830449, 33.74492701569288], [-118.19731700576249, 33.74471298973853], [-118.19729001576388, 33.7511910103132], [-118.19895397811794, 33.75108999511351], [-118.19893498515589, 33.74398599597354], [-118.19907598553873, 33.74390197447668], [-118.19917000333125, 33.74415498598459], [-118.20309602220044, 33.74415398635506], [-118.20365702484322, 33.744539001579575], [-118.20624901173188, 33.744566991207776], [-118.20628399876719, 33.744981995319684], [-118.20644199285287, 33.744981995319684], [-118.20641000470637, 33.75007300354618], [-118.20700099623645, 33.7506749910016], [-118.21295400083336, 33.74762001778117], [-118.21298798823909, 33.746895023275236], [-118.20682001067041, 33.74256699547865], [-118.20649502583271, 33.74077997346222], [-118.2062740024714, 33.74052901382571], [-118.20650002398065, 33.740654020135246], [-118.20661897990072, 33.74029099676152], [-118.2155349917967, 33.746244001358306], [-118.21495599582158, 33.748956996038295], [-118.21545102291209, 33.74897199048196], [-118.21546301846702, 33.7490969967916], [-118.21530202549246, 33.74918701606592], [-118.21526998473388, 33.75100197509842], [-118.21506000991009, 33.751143975110985], [-118.21503701842983, 33.75202201816659], [-118.21519701177446, 33.7522699789146], [-118.20742799590336, 33.75629301446503], [-118.20743699256957, 33.756875009328915], [-118.20763602408016, 33.75691299525284], [-118.20766301407895, 33.76299800356642], [-118.20896200641202, 33.76299700393684], [-118.20896700455974, 33.75952497473327], [-118.20912000049763, 33.75953802252987], [-118.20987098537266, 33.7572660223309], [-118.21192101519259, 33.75621199185698], [-118.21379200609388, 33.756331000389046], [-118.21391401351471, 33.7626279827857], [-118.21409599871045, 33.76280002429759], [-118.21509699620454, 33.762798025038286], [-118.21510799212986, 33.757360987140935], [-118.21634200854027, 33.75736998380723], [-118.21841697648777, 33.76137597304282], [-118.21875500912216, 33.761538018258875], [-118.22050799112074, 33.764764980379226], [-118.22009398663833, 33.76535602452131], [-118.220399978514, 33.7660950138413], [-118.22026797479744, 33.76684499908664], [-118.21911398136548, 33.76748902359661], [-118.2172259967615, 33.766954011323], [-118.21670697856112, 33.767524010631895], [-118.2181540212962, 33.76819702439961], [-118.21529097695499, 33.76922201300354], [-118.21408100426669, 33.769747975998925], [-118.2139789894373, 33.76991601899247], [-118.21159897663172, 33.76930498225876], [-118.21100598584246, 33.769571988580786], [-118.21097899584385, 33.769810005644935], [-118.21299598527574, 33.77028698679082], [-118.21158898033589, 33.77088597535754], [-118.20944498533528, 33.77026699419912], [-118.20906502087075, 33.770474022746406], [-118.2090159864092, 33.770788011658674], [-118.21048002284712, 33.771134988347065], [-118.21049101877254, 33.771297980580755], [-118.20811900300349, 33.77228998140862], [-118.20855999748461, 33.77309299963372], [-118.20919802421692, 33.773093999263374], [-118.2124039941161, 33.771872978037464], [-118.21247202153965, 33.771484016906705], [-118.21341498790596, 33.77107301131317], [-118.21380200238967, 33.770981992409304], [-118.21441798465922, 33.77128498539629], [-118.21443597799167, 33.770883976098325], [-118.21964999326862, 33.76881400629879], [-118.22060600743167, 33.769084011509534], [-118.22092999263967, 33.77066300534912], [-118.21794999163768, 33.77259597328427], [-118.2179929757096, 33.77274102479744], [-118.21261802007032, 33.77472097532284], [-118.2097790194512, 33.77600597284173], [-118.20983599833725, 33.776621008093905], [-118.21013899132406, 33.777120980720106], [-118.21583798478363, 33.774778006820874], [-118.21655098373458, 33.77434101085832], [-118.21674201820852, 33.77444402531709], [-118.21687702081375, 33.774867973483225], [-118.21992599625682, 33.77326398890409], [-118.22000901812409, 33.77344497447011], [-118.22497801892972, 33.77073897719698], [-118.22546199748271, 33.77078201388123], [-118.22697001762222, 33.77026899345833], [-118.22684801020135, 33.77004902233858], [-118.23818801860466, 33.767439989135006], [-118.2383130249142, 33.767673008051375], [-118.23903901904957, 33.76723701171825], [-118.24053099250374, 33.76700599206118], [-118.24110698959011, 33.766732987961696], [-118.24131901628536, 33.76692002391732], [-118.2419478738632, 33.76652963969067], [-118.22066900000027, 33.78253699912735], [-118.22768100000023, 33.789943999127296], [-118.22734100000021, 33.79080599912721], [-118.22694200000016, 33.7906999991273], [-118.22679700000012, 33.792147999127224], [-118.22243600000017, 33.80415199912706], [-118.2224420000001, 33.812451999127], [-118.22276800000019, 33.81272799912698], [-118.22457000000017, 33.82156799912686], [-118.224604, 33.824287999126824], [-118.22229700000031, 33.82429199912682], [-118.22228300000032, 33.82581399912671], [-118.21888500000016, 33.82568199912674], [-118.21576200000013, 33.8260749991268], [-118.21687500000014, 33.83015199912677], [-118.216847, 33.83171499912677], [-118.21596800000012, 33.834383999126686], [-118.213191, 33.83442099912667], [-118.21265800000016, 33.835459999126684], [-118.21179800000017, 33.83663599912664], [-118.21126200000019, 33.838306999126566], [-118.2073320000002, 33.83941899912664], [-118.2057840000003, 33.84500599912656], [-118.20549600000017, 33.84662299912655], [-118.206791, 33.84656799912648], [-118.20679800000015, 33.84840299912642], [-118.20601600000023, 33.848441999126614], [-118.2056, 33.848777999126604], [-118.20547100000014, 33.84929299912645], [-118.20527300000012, 33.84944999912653], [-118.20483100000013, 33.85253699912645], [-118.20398800000018, 33.85514599912641], [-118.202973, 33.85717499912645], [-118.20098100000013, 33.860093999126434], [-118.20349200000015, 33.86040899912628], [-118.20354200000017, 33.86106899912645], [-118.206321, 33.87034299912627], [-118.20566600000015, 33.87038999912621], [-118.20560300000027, 33.872015999126276], [-118.20589500000014, 33.87289399912625], [-118.20560700000017, 33.87428599912616], [-118.207155, 33.874268999126116], [-118.2071570000002, 33.87471699912619], [-118.20792500000017, 33.874802999126196], [-118.20796300000012, 33.87426499912625], [-118.2082400000002, 33.87426399912617], [-118.20823800000015, 33.87482499912618], [-118.20856600000019, 33.8748569991262], [-118.208513, 33.879775999126174], [-118.20861600000023, 33.880660999126], [-118.2088980000002, 33.8806529991261], [-118.20889600000022, 33.88129199912605], [-118.1923870000002, 33.88143699912611], [-118.19162600000018, 33.88091699912609], [-118.190069, 33.88141199912617], [-118.1883680000002, 33.88132499912618], [-118.18760100000014, 33.8854029991261], [-118.18577800000021, 33.885441999126], [-118.17743500000017, 33.88535899912612], [-118.17742700000022, 33.88185699912621], [-118.15131500000021, 33.881986999126106], [-118.151239, 33.8689699991262], [-118.146901, 33.86900799912626], [-118.14650900000021, 33.86793699912635], [-118.14653100000014, 33.86430199912632], [-118.14676900000022, 33.860252999126416], [-118.15709900000024, 33.86018299912635], [-118.15697200000018, 33.85783599912638], [-118.15761300000014, 33.85734899912629], [-118.15584700000029, 33.85732399912639], [-118.15582700000013, 33.854830999126456], [-118.16420000000011, 33.854779999126436], [-118.16418300000026, 33.85408999912645], [-118.16634200000021, 33.854431999126426], [-118.16774500000018, 33.854443999126474], [-118.16755900000015, 33.846939999126576], [-118.164182, 33.84705699912655], [-118.16418000000016, 33.82768499912678]], [[-118.16418000000016, 33.82768499912678], [-118.16755400000011, 33.82769199912679], [-118.16756200000015, 33.82014899912687], [-118.16473800000027, 33.82021399912685], [-118.16436700000013, 33.8216219991268], [-118.16418500000017, 33.82311899912691], [-118.16418000000016, 33.82768499912678]], [[-118.175273, 33.818788999126944], [-118.18480200000015, 33.818615999126884], [-118.18480700000016, 33.817094999126816], [-118.18392300000018, 33.817055999126836], [-118.18395700000023, 33.81619399912694], [-118.18480500000015, 33.816403999126905], [-118.18467100000011, 33.81457899912699], [-118.18490700000018, 33.81163499912698], [-118.18489100000019, 33.80439599912707], [-118.18173400000026, 33.80423099912705], [-118.18172700000022, 33.80348899912711], [-118.182134, 33.80259999912714], [-118.18200100000014, 33.802116999127165], [-118.18210100000017, 33.80071699912709], [-118.17849300000016, 33.798514999127136], [-118.1717520000002, 33.793881999127215], [-118.16764500000016, 33.7914079991272], [-118.16690300000013, 33.790795999127255], [-118.16697100000015, 33.79055599912728], [-118.1665320000003, 33.7900799991273], [-118.16611100000011, 33.78985299912735], [-118.14942600000016, 33.78983599912719], [-118.151001, 33.79122299912726], [-118.15174900000014, 33.79242599912727], [-118.15171200000019, 33.79284699912714], [-118.15222600000011, 33.79346399912723], [-118.15457000000012, 33.79346999912717], [-118.1545650000003, 33.796809999127184], [-118.15631, 33.79635099912723], [-118.15889700000015, 33.796268999127236], [-118.15888800000022, 33.797118999127164], [-118.15138600000016, 33.797118999127164], [-118.15134600000017, 33.804426999127095], [-118.1568570000002, 33.804421999127], [-118.15685900000014, 33.80412799912704], [-118.15887700000029, 33.80244899912701], [-118.15891300000017, 33.81013199912693], [-118.16154800000015, 33.81011599912697], [-118.16145200000027, 33.80907599912709], [-118.16324900000023, 33.80913399912701], [-118.16326900000011, 33.81167799912699], [-118.17630200000015, 33.81164699912699], [-118.17631100000027, 33.80424399912702], [-118.18064600000022, 33.80422999912706], [-118.18066200000024, 33.81164099912698], [-118.1787920000002, 33.811629999127035], [-118.17878700000013, 33.81352799912702], [-118.17428600000014, 33.81371299912692], [-118.17425500000017, 33.81532299912688], [-118.17196800000016, 33.815293999126894], [-118.171971, 33.81880599912689], [-118.17409900000027, 33.81870799912687], [-118.17414400000011, 33.81891599912689], [-118.17527300000017, 33.818909999126916], [-118.175273, 33.818788999126944]]], [[[-118.23711099665037, 33.72782698381385], [-118.23714131134656, 33.72771940083146], [-118.24311443374121, 33.741955115708514], [-118.24300102458375, 33.74181800986284], [-118.23711099665037, 33.72782698381385]]], [[[-118.22454102296709, 33.76761797581249], [-118.22347099841987, 33.76610201124841], [-118.2229289887392, 33.7659230249414], [-118.22261400019731, 33.76599599790082], [-118.22251398462728, 33.7658150123348], [-118.22269902132373, 33.76570000232102], [-118.22270501910121, 33.76525900784008], [-118.22158001492716, 33.76382201401279], [-118.22036099296038, 33.76143000565216], [-118.2205459770448, 33.76135797971039], [-118.21943402066721, 33.75922897915344], [-118.21965799030538, 33.75914800915745], [-118.22004900330724, 33.758296009082756], [-118.2187690039362, 33.75534199844989], [-118.21855297872274, 33.75532800363579], [-118.2185349853903, 33.75370802498345], [-118.22295297984914, 33.75242597374114], [-118.22481597371358, 33.756830973015305], [-118.22766802212941, 33.75597697368152], [-118.22777098397619, 33.75581498107743], [-118.22906997630929, 33.75556302181124], [-118.22774699286617, 33.75242397448192], [-118.22816199697822, 33.752299020784456], [-118.22947198523666, 33.75543801550172], [-118.23522601093507, 33.75371102387209], [-118.23559797836297, 33.75368098237265], [-118.23574197763453, 33.753816984607575], [-118.23680700403389, 33.75362700237534], [-118.23705801628266, 33.753455013475495], [-118.23690701960389, 33.75319400493102], [-118.2443669920986, 33.751009025117554], [-118.24448600063079, 33.751257985495], [-118.2457899911118, 33.7506749910016], [-118.24315302089202, 33.74433402490356], [-118.24249800045664, 33.74375097779803], [-118.2334810259731, 33.74229499100889], [-118.23282000776034, 33.745157982737894], [-118.23260998032426, 33.745122995702594], [-118.23325100594555, 33.74225400619606], [-118.23139001134011, 33.74197600394858], [-118.22724702024007, 33.74315598774962], [-118.22673799833547, 33.74543898387402], [-118.22654501721445, 33.745403996838704], [-118.22703499354483, 33.7432380099873], [-118.2251260167197, 33.74379601374128], [-118.224359984789, 33.74660097434255], [-118.22486100965682, 33.743902974106334], [-118.21979999031768, 33.74535201610055], [-118.21745401752976, 33.74442299193625], [-118.23110901020415, 33.740481978623315], [-118.23287498738722, 33.74061398233997], [-118.24136100072774, 33.74198000246699], [-118.24310898457834, 33.74292901922295], [-118.2434742378281, 33.742812640608605], [-118.248966, 33.755901999127715], [-118.240767, 33.75829599912762], [-118.24115300000017, 33.758540999127646], [-118.2452903394487, 33.763690624791884], [-118.24202401819946, 33.76436102480465], [-118.2417630096551, 33.76472799408475], [-118.24013398172426, 33.765038984108195], [-118.24003701765498, 33.76492902485446], [-118.23963001057967, 33.765139999307934], [-118.23928298127923, 33.7647880244716], [-118.23823200230612, 33.764872992985765], [-118.23773197706787, 33.76509601560633], [-118.23487798200509, 33.76558199341847], [-118.2343480204914, 33.76602898567689], [-118.23367800561238, 33.766317983849675], [-118.22843200218885, 33.76751301470647], [-118.22777098397609, 33.76733197652827], [-118.22733598727265, 33.76766900953301], [-118.22693797686354, 33.76760098210954], [-118.2264689927543, 33.767762974713584], [-118.22548398933338, 33.76838600700227], [-118.22501200633562, 33.7681399929014], [-118.22454102296709, 33.76761797581249]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Long Beach", "population": 4.006369426751593, "cases": 629.0, "resource_uri": "/1.0/boundary/long-beach-la-county-neighborhood-current/", "external_id": "long-beach", "slug": "long-beach-la-county-neighborhood-current", "metadata": {"sqmi": 52.1003673205, "type": "standalone-city", "name": "Long Beach", "slug": "long-beach"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.375281, 34.31849599912095], [-118.374737, 34.31839999912093], [-118.373979, 34.31874299912094], [-118.37364899999987, 34.31862399912097], [-118.371793, 34.31862399912097], [-118.370801, 34.31774399912088], [-118.37044899999987, 34.31718399912094], [-118.371601, 34.315247999120956], [-118.371825, 34.31156799912106], [-118.371441, 34.31190399912099], [-118.371249, 34.311519999120975], [-118.371809, 34.31036799912107], [-118.371825, 34.30983999912099], [-118.369873, 34.30977599912106], [-118.368961, 34.310031999121094], [-118.367633, 34.31014399912103], [-118.366673, 34.311039999121036], [-118.365297, 34.31023999912102], [-118.36350499999989, 34.30959999912104], [-118.363697, 34.30905599912103], [-118.363793, 34.30783999912111], [-118.363473, 34.306639999121124], [-118.361985, 34.30337599912111], [-118.361713, 34.30228799912113], [-118.362097, 34.30204799912107], [-118.362097, 34.301631999121135], [-118.361617, 34.300927999121136], [-118.361265, 34.29971199912108], [-118.360865, 34.29907199912119], [-118.360769, 34.298351999121145], [-118.360913, 34.29760099912118], [-118.360811, 34.297090999121174], [-118.362369, 34.298079999121185], [-118.362833, 34.29879999912114], [-118.362977, 34.299375999121146], [-118.363777, 34.29982399912111], [-118.364385, 34.29995199912116], [-118.365201, 34.30108799912117], [-118.366113, 34.30159999912119], [-118.36657699999988, 34.30028799912119], [-118.366993, 34.29975999912119], [-118.368897, 34.29868799912112], [-118.369665, 34.29868799912116], [-118.370609, 34.29676899912111], [-118.370913, 34.295776999121166], [-118.371025, 34.295072999121174], [-118.370833, 34.29284899912121], [-118.371005, 34.29180899912122], [-118.37147, 34.29044999912129], [-118.371858, 34.28993699912133], [-118.372593, 34.28942399912121], [-118.373678, 34.28896099912129], [-118.373968, 34.28849699912123], [-118.373775, 34.287457999121315], [-118.37392, 34.28627199912131], [-118.373687, 34.28592799912127], [-118.37351899906321, 34.2831660015917], [-118.3726370000003, 34.28283199912124], [-118.37467500000027, 34.28282699912136], [-118.3748010000003, 34.28365999912122], [-118.37710300000025, 34.28336399912132], [-118.38185900000028, 34.283896999121204], [-118.38576200000031, 34.28481699912123], [-118.38461800000012, 34.288174999121225], [-118.3846190000003, 34.28973099912117], [-118.3869160000003, 34.28973399912122], [-118.38691100000013, 34.29149399912124], [-118.38237200000025, 34.29152599912113], [-118.38237100000019, 34.29332899912118], [-118.38295100000012, 34.29332999912126], [-118.38287800000022, 34.29695599912112], [-118.38739000000024, 34.296962999121064], [-118.38739600000032, 34.29877999912113], [-118.3936350000002, 34.298787999121195], [-118.3937110000002, 34.29697899912114], [-118.39674300000014, 34.29698299912113], [-118.39698400000019, 34.29334799912119], [-118.39981400000023, 34.29341999912126], [-118.40023200000023, 34.29257199912106], [-118.4009060000002, 34.29014299912123], [-118.40082200000015, 34.288444999121076], [-118.40114300000025, 34.28844999912107], [-118.40158800000022, 34.28642299912113], [-118.40616800000024, 34.28592699912134], [-118.40940000000022, 34.28901199912114], [-118.410294, 34.29107099912126], [-118.41034800000035, 34.29196799912116], [-118.41021700000015, 34.29184299912112], [-118.40896000000023, 34.29180799912107], [-118.4090720000003, 34.293658999121185], [-118.40350800000026, 34.29351299912115], [-118.4034600000002, 34.29710599912115], [-118.40120500000022, 34.29706499912096], [-118.40105200000026, 34.30066999912105], [-118.40560000000018, 34.300725999121056], [-118.40546900000022, 34.30791199912098], [-118.4037510000002, 34.30791699912097], [-118.40356600000015, 34.30896999912088], [-118.40411400000023, 34.30903799912103], [-118.40388100000023, 34.310049999121034], [-118.40332400000021, 34.31002399912102], [-118.40301600000022, 34.30938899912102], [-118.40247900000018, 34.30942899912094], [-118.40244600000025, 34.30960799912097], [-118.40183600000019, 34.309876999120945], [-118.4010790000002, 34.30972199912081], [-118.40090400000037, 34.31002699912092], [-118.40076000000023, 34.31757699912094], [-118.39971600000017, 34.31759399912097], [-118.39866000000022, 34.31810999912085], [-118.39753800000034, 34.31828999912097], [-118.39727900000028, 34.317114999120754], [-118.39687872689846, 34.31727729876774], [-118.396867, 34.31497199912095], [-118.397593, 34.31491199912102], [-118.397581, 34.31440699912099], [-118.397154, 34.31444799912103], [-118.3965939999999, 34.31417599912097], [-118.396866, 34.31342399912099], [-118.39675399999989, 34.312735999121045], [-118.39685, 34.31257599912106], [-118.397042, 34.31260799912103], [-118.397042, 34.31227199912102], [-118.396434, 34.311823999120975], [-118.396587, 34.311255999120974], [-118.396306, 34.31110399912101], [-118.39581, 34.311471999121], [-118.395362, 34.31155199912105], [-118.39509, 34.311407999121016], [-118.394706, 34.31076799912101], [-118.39205, 34.31255999912106], [-118.391346, 34.31281599912098], [-118.390658, 34.31262399912098], [-118.388178, 34.311007999120946], [-118.385538, 34.31372799912089], [-118.382898, 34.315183999120926], [-118.38261, 34.31577599912097], [-118.382386, 34.31446399912098], [-118.381506, 34.315519999120966], [-118.381362, 34.31590399912093], [-118.380754, 34.3161759991209], [-118.379826, 34.31718399912094], [-118.379282, 34.316831999120964], [-118.3787059999999, 34.31695999912098], [-118.377906, 34.31814399912093], [-118.376657, 34.318751999120884], [-118.375585, 34.31881599912095], [-118.375281, 34.31849599912095]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Lopez/Kagel Canyons", "population": 0.014120304998587971, "cases": 1.0, "resource_uri": "/1.0/boundary/lopezkagel-canyons-la-county-neighborhood-current/", "external_id": "lopezkagel-canyons", "slug": "lopezkagel-canyons-la-county-neighborhood-current", "metadata": {"sqmi": 3.5744194134, "type": "unincorporated-area", "name": "Lopez/Kagel Canyons", "slug": "lopezkagel-canyons"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.27320800000012, 34.11840799912326], [-118.27190800000012, 34.11690799912317], [-118.27180800000014, 34.117207999123046], [-118.269108, 34.11390899912315], [-118.26800800000012, 34.11270899912319], [-118.267408, 34.11230899912312], [-118.26910800000012, 34.11160899912317], [-118.271508, 34.10910899912317], [-118.273508, 34.104108999123284], [-118.27330800000011, 34.101108999123376], [-118.274008, 34.099008999123264], [-118.275508, 34.097608999123324], [-118.276608, 34.09590899912338], [-118.284208, 34.09590899912338], [-118.289308, 34.099508999123266], [-118.291909, 34.101108999123305], [-118.29340900000012, 34.10180899912332], [-118.309409, 34.10160899912327], [-118.309409, 34.10770799912324], [-118.308009, 34.108007999123195], [-118.30760900000014, 34.10920799912327], [-118.30750900000015, 34.11340799912308], [-118.306609, 34.11380799912332], [-118.299009, 34.11570799912322], [-118.29220900000011, 34.1176079991232], [-118.286109, 34.118507999123096], [-118.274208, 34.11980799912314], [-118.27320800000012, 34.11840799912326]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Los Feliz", "population": 0.21608171817705604, "cases": 33.0, "resource_uri": "/1.0/boundary/los-feliz-la-county-neighborhood-current/", "external_id": "los-feliz", "slug": "los-feliz-la-county-neighborhood-current", "metadata": {"sqmi": 2.60795509818, "type": "segment-of-a-city", "name": "Los Feliz", "slug": "los-feliz"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.21322400000017, 33.94418699912533], [-118.21370200000014, 33.94024499912532], [-118.21053200000023, 33.93982699912538], [-118.21086200000026, 33.9370149991254], [-118.19955600000011, 33.935920999125386], [-118.19850700000016, 33.935704999125484], [-118.18961100000016, 33.93508199912544], [-118.18235600000023, 33.93428599912552], [-118.18174000000013, 33.934362999125376], [-118.18189100000022, 33.933274999125445], [-118.18282400000024, 33.93079099912547], [-118.18007700000032, 33.9309419991256], [-118.17532900000022, 33.930476999125474], [-118.17665300000014, 33.918312999125654], [-118.178709, 33.918591999125674], [-118.180507, 33.91006799912571], [-118.18177300000013, 33.90754699912575], [-118.183158, 33.90598499912583], [-118.18389300000017, 33.90638399912574], [-118.18497700000017, 33.90540499912577], [-118.18586000000013, 33.90498599912577], [-118.18645100000018, 33.905417999125746], [-118.18702700000011, 33.90548499912583], [-118.1867750000003, 33.90689299912581], [-118.18931500000018, 33.907339999125746], [-118.189516, 33.90606099912576], [-118.19019500000014, 33.9060999991258], [-118.19019, 33.90581899912588], [-118.19579200000011, 33.906330999125814], [-118.1938910000002, 33.91093299912574], [-118.195122, 33.9112719991258], [-118.19714900000017, 33.90646799912588], [-118.19997900000013, 33.906676999125764], [-118.198387, 33.91067899912584], [-118.19872600000012, 33.910560999125714], [-118.20186200000025, 33.91166399912581], [-118.20582700000023, 33.91262199912573], [-118.20640800000011, 33.91061899912573], [-118.21383900000018, 33.91306099912571], [-118.21392200000012, 33.91260299912577], [-118.21679700000014, 33.91222699912574], [-118.21818400000014, 33.92123799912561], [-118.21866000000016, 33.921313999125594], [-118.21962500000018, 33.922086999125675], [-118.21995900000023, 33.92275099912556], [-118.22000600000018, 33.92231799912575], [-118.22409300000014, 33.92219999912564], [-118.22428700000019, 33.923417999125526], [-118.22882798103045, 33.922779001859105], [-118.23032396964395, 33.92900099777439], [-118.22953500000015, 33.92900599912548], [-118.22566700000013, 33.92991999912563], [-118.2267720000003, 33.93709599912541], [-118.228311, 33.93695099912545], [-118.22837400000014, 33.93736599912541], [-118.22921300000013, 33.93733099912545], [-118.22864600000015, 33.93900699912546], [-118.22949698601839, 33.943100000711894], [-118.2278079929868, 33.94308900327576], [-118.22740499300309, 33.94270500075814], [-118.22690600000014, 33.94016699912537], [-118.22302200000013, 33.93975699912536], [-118.22324600000017, 33.9378419991254], [-118.21392200000022, 33.9368929991254], [-118.21401000000027, 33.93737499912542], [-118.21424100000017, 33.937414999125416], [-118.214219, 33.93840499912537], [-118.21452800000013, 33.93844399912543], [-118.21441900000016, 33.93885399912539], [-118.21482, 33.939857999125415], [-118.214708, 33.940102999125415], [-118.2150620000002, 33.940204999125314], [-118.21511400000011, 33.94120599912533], [-118.215521, 33.94135099912539], [-118.21540400000019, 33.94231499912535], [-118.21629700000013, 33.94251599912541], [-118.21608, 33.943932999125344], [-118.21623000000024, 33.94389599912535], [-118.21654900000016, 33.94498099912532], [-118.21683400000019, 33.945019999125286], [-118.21676800000016, 33.945440999125296], [-118.21291600000016, 33.945020999125326], [-118.21322400000017, 33.94418699912533]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Lynwood", "population": 0.7204727596535254, "cases": 178.0, "resource_uri": "/1.0/boundary/lynwood-la-county-neighborhood-current/", "external_id": "lynwood", "slug": "lynwood-la-county-neighborhood-current", "metadata": {"sqmi": 4.90022698292, "type": "standalone-city", "name": "Lynwood", "slug": "lynwood"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.917696, 34.067374999123786], [-118.8705877894077, 34.052304080417976], [-118.8705862552877, 34.05206845124172], [-118.869818, 34.05182999912402], [-118.86993378001296, 34.0491302197347], [-118.86971544875101, 34.04913058792273], [-118.869712083048, 34.04873930588034], [-118.86921900000019, 34.048712999123936], [-118.86927576759214, 34.04283307171069], [-118.861565566124, 34.04284410658411], [-118.8615717438675, 34.04567188030824], [-118.86118025464211, 34.045768513712886], [-118.86068245181525, 34.04767148327072], [-118.859312728027, 34.04672228521405], [-118.85887503071217, 34.04854968510577], [-118.84613659253718, 34.04447555463985], [-118.81842878835805, 34.03993786523512], [-118.7981149259729, 34.03840909376653], [-118.7981764031122, 34.038305058169705], [-118.79783400000024, 34.03826399912415], [-118.79838900000024, 34.037629999124185], [-118.79927284508038, 34.03780716626857], [-118.79958032122714, 34.037465693037404], [-118.79322280133424, 34.036269657232715], [-118.79316938215251, 34.036632784294206], [-118.79413799052075, 34.03739184027363], [-118.79424257244462, 34.03812571949045], [-118.79462000000012, 34.03833699912412], [-118.79070524289914, 34.039206119960205], [-118.78022307642799, 34.04223617181105], [-118.7557940000002, 34.04273799912418], [-118.74867934743567, 34.04267237002934], [-118.74159500199332, 34.04276907460497], [-118.74029500000017, 34.04290599912409], [-118.73345100000022, 34.04289399912416], [-118.72422200000011, 34.043438999124184], [-118.72285700000019, 34.043653999124075], [-118.71958888341713, 34.04371365135574], [-118.7193128327078, 34.04218739173224], [-118.71833806742885, 34.040347138173125], [-118.71839062823769, 34.03922168600846], [-118.718023, 34.03708299912415], [-118.71439600000016, 34.035405999124244], [-118.71417619873559, 34.03542728269737], [-118.71510920757939, 34.036045734504455], [-118.71570244844183, 34.03693337564989], [-118.71522353822316, 34.03751505651241], [-118.71601500000018, 34.038618999124175], [-118.7155190000002, 34.03931899912424], [-118.715906, 34.04103399912416], [-118.7155010000003, 34.04135999912413], [-118.71512500000014, 34.04111199912421], [-118.71537800000013, 34.04143899912428], [-118.71451500000012, 34.042022999124256], [-118.71382700000015, 34.04069999912418], [-118.71293200000015, 34.040973999124226], [-118.71191470087093, 34.03926259919573], [-118.71091360971717, 34.03866389628697], [-118.70881817374998, 34.03676640614675], [-118.70869400000014, 34.03601499912429], [-118.70908600000016, 34.035679999124184], [-118.7093794312603, 34.03430149581559], [-118.70335005192806, 34.034737333457045], [-118.70345012820445, 34.03677493896939], [-118.70308354800454, 34.037788802904075], [-118.70257244217666, 34.03845617706032], [-118.7013639678962, 34.039328878996905], [-118.6976655709196, 34.0404511793216], [-118.69903759103478, 34.04237951498046], [-118.69927013404234, 34.043622814091876], [-118.69897129691209, 34.04470970063892], [-118.69847663774361, 34.04478947686173], [-118.69835983548157, 34.04499839307038], [-118.6873456203928, 34.04566464217395], [-118.68224757183263, 34.04752530189196], [-118.6540701976361, 34.047485728508995], [-118.64364881702082, 34.046656355674685], [-118.63951700000011, 34.04663699912395], [-118.63878700000015, 34.045739999124116], [-118.63825947313417, 34.045632530922354], [-118.62633137747699, 34.04562007922922], [-118.62545500000016, 34.04586499912407], [-118.60345316909137, 34.04559720232961], [-118.58773400000014, 34.04557999912412], [-118.58442457361303, 34.037837306389996], [-118.58727697692788, 34.038916023281004], [-118.58983597604048, 34.03909500958789], [-118.59161500102016, 34.039449983312956], [-118.59501900280048, 34.039632021120696], [-118.59556001285146, 34.039604978509836], [-118.5966169896022, 34.03916798254731], [-118.59721497853918, 34.039086012921715], [-118.59889898609681, 34.039207020712944], [-118.60379501394317, 34.039105005883684], [-118.60537100889405, 34.03867900584632], [-118.60813398505309, 34.03694101829145], [-118.60979000298246, 34.03635097377876], [-118.6126679891552, 34.03683400531429], [-118.6148600189878, 34.036890984200284], [-118.62229400111347, 34.03777097390327], [-118.62378797382678, 34.03782100799431], [-118.6248629965218, 34.03768600538895], [-118.62695301152516, 34.036877989015935], [-118.62797999938846, 34.03680601568612], [-118.63139999524186, 34.03701699013967], [-118.63266500016935, 34.03683000679603], [-118.63374901953054, 34.03686699309043], [-118.63438099587336, 34.036717995671], [-118.63526098557624, 34.03619397932271], [-118.63616401937139, 34.03611900710425], [-118.64232799842186, 34.037522013525766], [-118.64670800695671, 34.03810200913042], [-118.64774699037473, 34.03802798392944], [-118.6484919774722, 34.03748497461909], [-118.64903398715293, 34.0373730161062], [-118.65831302242279, 34.038500019539484], [-118.66278099836067, 34.03874098288031], [-118.66839002515783, 34.03878301993481], [-118.67189299026637, 34.03843599063434], [-118.67408801898785, 34.03791902430522], [-118.67646198140379, 34.036997997177544], [-118.67569900097396, 34.03585000152299], [-118.67557299503473, 34.03590398152041], [-118.6753810135433, 34.03563197705044], [-118.6756690120864, 34.03550602372346], [-118.67652800956814, 34.03695501310552], [-118.67738400816117, 34.036387013055794], [-118.67827899230778, 34.035407007782894], [-118.67863002012643, 34.03424201842558], [-118.67962102132486, 34.032256017510704], [-118.68010000172988, 34.03188599672981], [-118.68121500960815, 34.03165897559103], [-118.68214498078997, 34.03082702072017], [-118.6837740087208, 34.0307210073726], [-118.69134599234054, 34.03241501122601], [-118.6944460015042, 34.032600994939955], [-118.69694602247164, 34.032306998619084], [-118.70073998501212, 34.03109097554133], [-118.70686097999055, 34.029550020237856], [-118.7146859751182, 34.03149598335742], [-118.7154939914912, 34.031589001520516], [-118.71983401484275, 34.03140301780652], [-118.72215999503909, 34.03151397668989], [-118.73367699049015, 34.033025995347764], [-118.73973600843473, 34.03299800571931], [-118.74398301362329, 34.03247998714867], [-118.74743099910481, 34.03149498372793], [-118.75193901283782, 34.02973400469269], [-118.75447801935894, 34.02818799862908], [-118.75590601651987, 34.02616101290147], [-118.75653099545565, 34.02578099582482], [-118.75949200349582, 34.02550599246616], [-118.76307699084181, 34.02552498542821], [-118.76844700094543, 34.02488701130783], [-118.77335102582829, 34.02405000567694], [-118.78166599728651, 34.022290973288776], [-118.78360001746319, 34.02172502511026], [-118.78534500242539, 34.02098598317822], [-118.78750599112881, 34.01946202157756], [-118.78792299449984, 34.0189749915239], [-118.78822398822754, 34.01824299961076], [-118.7898189761405, 34.016809004672304], [-118.79042601435593, 34.016004986817556], [-118.7907669932669, 34.014872985236494], [-118.79201900300971, 34.01349002401865], [-118.7924170134189, 34.01199699832295], [-118.79387699872639, 34.01086599637125], [-118.7940910246806, 34.010414005964954], [-118.79408902542147, 34.00994002370774], [-118.79383301502483, 34.008456994307785], [-118.79423502395231, 34.007472990516526], [-118.79530299662828, 34.00682302084133], [-118.79944198921012, 34.006437005987166], [-118.8008699863711, 34.00606298668797], [-118.80225300020093, 34.00546499775088], [-118.80389102479793, 34.00414701245572], [-118.80473697448302, 34.00290699826796], [-118.80488802377361, 34.00236898710557], [-118.80487197708828, 34.00111697736278], [-118.8050690093397, 34.00067898177046], [-118.80546202160092, 34.00049099879739], [-118.80676101393398, 34.00041597396687], [-118.80771197733704, 34.00066598658596], [-118.80860301557733, 34.00126697441186], [-118.81365898415648, 34.006514977094454], [-118.81591099176389, 34.009129008445974], [-118.81750398041768, 34.01063697597339], [-118.8236079816932, 34.01562102383473], [-118.82720601683612, 34.01829098183069], [-118.835263978268, 34.02415202050622], [-118.84254601669737, 34.02904299759246], [-118.84656200222872, 34.03122897703543], [-118.85165800860331, 34.03345299501452], [-118.85495999555421, 34.03458199770701], [-118.85933500594103, 34.03533698110022], [-118.86041197528323, 34.03529999480578], [-118.86148699797845, 34.03453801400545], [-118.86207199173076, 34.034516022154676], [-118.86451698045923, 34.035397011487085], [-118.86874199379706, 34.036612981953006], [-118.87045798950129, 34.036717995671], [-118.87209301520947, 34.037357022032914], [-118.87608201074228, 34.03806702209511], [-118.87907700618797, 34.03804597726185], [-118.88161001493145, 34.038293990621874], [-118.88292000318985, 34.038138995424895], [-118.88535499562256, 34.0385480017593], [-118.88893098630248, 34.03878901771231], [-118.89066197645028, 34.03913999291896], [-118.89185500804803, 34.0389430132798], [-118.89427500603692, 34.03936001665076], [-118.89582900913716, 34.039237009600306], [-118.89745098704867, 34.03971099185744], [-118.89853000826216, 34.0398519922404], [-118.89994900875685, 34.040585983412456], [-118.90146097480267, 34.041122994945155], [-118.90469598657168, 34.04176202130717], [-118.90629802450364, 34.04156398942619], [-118.9101259744499, 34.042194019121936], [-118.91274500394934, 34.04174397536265], [-118.91520198823261, 34.04172098388234], [-118.9210790209816, 34.04473402527249], [-118.92381227977302, 34.04566389486088], [-118.92408300000018, 34.046912999124096], [-118.91973900000018, 34.055980999124], [-118.919776, 34.06310299912386], [-118.91845400000014, 34.06524199912383], [-118.917696, 34.067374999123786]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Malibu", "population": 0.12961202799619803, "cases": 30.0, "resource_uri": "/1.0/boundary/malibu-la-county-neighborhood-current/", "external_id": "malibu", "slug": "malibu-la-county-neighborhood-current", "metadata": {"sqmi": 19.8863310758, "type": "standalone-city", "name": "Malibu", "slug": "malibu"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.30020700000011, 33.97451399912481], [-118.3003070000001, 33.96891399912489], [-118.300207, 33.9599139991251], [-118.3177610000001, 33.9598165504934], [-118.31774723199024, 33.970712999124984], [-118.317608, 33.970712999124984], [-118.31760800000012, 33.97441299912493], [-118.30020700000011, 33.97451399912481]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Manchester Square", "population": 0.08535784635587655, "cases": 13.0, "resource_uri": "/1.0/boundary/manchester-square-la-county-neighborhood-current/", "external_id": "manchester-square", "slug": "manchester-square-la-county-neighborhood-current", "metadata": {"sqmi": 1.01264126487, "type": "segment-of-a-city", "name": "Manchester Square", "slug": "manchester-square"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.4184110000003, 33.90371299912586], [-118.41742600000018, 33.90167099912583], [-118.41560400000017, 33.90189099912577], [-118.41550200000017, 33.90173499912576], [-118.414413, 33.90189599912582], [-118.40170100000024, 33.901959999125765], [-118.3787010000002, 33.90190499912588], [-118.37859900000021, 33.882779999126065], [-118.37891700000014, 33.8816919991261], [-118.37867300000018, 33.8814729991261], [-118.37866700000015, 33.88007299912614], [-118.37993900000014, 33.88007299912612], [-118.38002000000013, 33.879649999126045], [-118.37995500000024, 33.872833999126215], [-118.39552200000016, 33.872830999126236], [-118.39596800000014, 33.873985999126205], [-118.395963, 33.877100999126256], [-118.40155000000016, 33.8770829991261], [-118.40203100000019, 33.877320999126255], [-118.40276000000023, 33.87704599912621], [-118.40312000000017, 33.87764599912596], [-118.40453900000018, 33.87714599912616], [-118.404855, 33.87782099912622], [-118.40693200000014, 33.877217999126195], [-118.40719200000017, 33.87774699912618], [-118.40946266447587, 33.87673109163654], [-118.41137400116718, 33.88076299646456], [-118.41764899171297, 33.892306981914096], [-118.42020099341845, 33.897827988696235], [-118.42090299644414, 33.89977300479833], [-118.42176599244405, 33.90156902348102], [-118.42180197910898, 33.90200501981408], [-118.42247899139493, 33.90316301176432], [-118.4226700258689, 33.90415201370346], [-118.42327939601124, 33.90486737284448], [-118.41950900000019, 33.906184999125884], [-118.4184110000003, 33.90371299912586]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Manhattan Beach", "population": 0.3599869095669248, "cases": 66.0, "resource_uri": "/1.0/boundary/manhattan-beach-la-county-neighborhood-current/", "external_id": "manhattan-beach", "slug": "manhattan-beach-la-county-neighborhood-current", "metadata": {"sqmi": 3.97071434338, "type": "standalone-city", "name": "Manhattan Beach", "slug": "manhattan-beach"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.43654398614527, 33.978509002437974], [-118.43364498614358, 33.9765510024364], [-118.43225898160769, 33.97501600188325], [-118.4513009793637, 33.96423100779194], [-118.45476098071747, 33.96967500853251], [-118.45453199079489, 33.969838998491745], [-118.45747799406915, 33.97378599553228], [-118.45760197898169, 33.9737210075144], [-118.46062198616215, 33.97743900244006], [-118.46142099552706, 33.978356998987465], [-118.4617999768484, 33.978275004348696], [-118.46197498616274, 33.979366002441544], [-118.4634799812208, 33.98104900637736], [-118.45505098225952, 33.986416000744896], [-118.44830198598098, 33.98466100258495], [-118.44160398940076, 33.983380005282484], [-118.43952398614695, 33.98105000244006], [-118.43654398614527, 33.978509002437974]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Marina del Rey", "population": 0.09411362080766598, "cases": 11.0, "resource_uri": "/1.0/boundary/marina-del-rey-la-county-neighborhood-current/", "external_id": "marina-del-rey", "slug": "marina-del-rey-la-county-neighborhood-current", "metadata": {"sqmi": 1.45477168604, "type": "unincorporated-area", "name": "Marina del Rey", "slug": "marina-del-rey"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.421411, 34.01032399912458], [-118.420085, 34.00864499912458], [-118.41923, 34.009102999124394], [-118.417344, 34.006748999124596], [-118.421249, 34.004421999124546], [-118.418239, 34.00061899912464], [-118.419178, 34.00003399912455], [-118.4204, 33.99868799912457], [-118.42598, 33.99806999912463], [-118.428489, 34.00134399912459], [-118.430836, 34.00010199912455], [-118.430327, 33.99944599912462], [-118.435307, 33.996898999124646], [-118.435811, 33.99691699912452], [-118.44249096721673, 33.99366434702838], [-118.44335, 33.995316999124725], [-118.44435733428358, 33.99462071443707], [-118.45601985035636, 34.00987941955189], [-118.443426, 34.01662499912446], [-118.44441200000011, 34.01780999912447], [-118.44481200000011, 34.02010999912427], [-118.44281200000013, 34.020709999124385], [-118.44101200000013, 34.02150999912428], [-118.43029800000014, 34.026819999124214], [-118.418471, 34.012018999124436], [-118.421411, 34.01032399912458]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Mar Vista", "population": 0.42469781117281935, "cases": 52.0, "resource_uri": "/1.0/boundary/mar-vista-la-county-neighborhood-current/", "external_id": "mar-vista", "slug": "mar-vista-la-county-neighborhood-current", "metadata": {"sqmi": 2.89525385641, "type": "segment-of-a-city", "name": "Mar Vista", "slug": "mar-vista"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.00390198936488, 34.12930500164439], [-118.00399900000016, 34.11780699912319], [-118.00447000000011, 34.11762999912324], [-118.00465000000011, 34.11738899912328], [-118.00534300000018, 34.11764399912323], [-118.00525600000022, 34.117915999123376], [-118.006569, 34.11839299912333], [-118.00641200000014, 34.11782899912331], [-118.0059920000003, 34.11783099912333], [-118.00600100000017, 34.11699699912328], [-118.00709900000012, 34.11700299912322], [-118.00709600000019, 34.11446899912331], [-118.0066990000002, 34.11447499912333], [-118.0066990000002, 34.115177999123254], [-118.00539900000015, 34.11528299912342], [-118.00439900000029, 34.1171929991232], [-118.0041990000003, 34.1171929991232], [-118.0048960000002, 34.111462999123276], [-118.00529500000012, 34.11099399912331], [-118.00505300000013, 34.11102899912332], [-118.00516300000031, 34.110646999123325], [-118.00687900000015, 34.11043299912335], [-118.00714300000013, 34.11072599912331], [-118.00763700000017, 34.11045199912335], [-118.00736400000014, 34.11016299912331], [-118.01221100000016, 34.10560799912336], [-118.01576098617113, 34.10420000343584], [-118.0160619865793, 34.105568003965395], [-118.01594599829552, 34.10562899589352], [-118.01681073917553, 34.10933509867734], [-118.01671459353636, 34.109868607300854], [-118.01691998565882, 34.109929000937434], [-118.0160360000002, 34.11372199912331], [-118.015446, 34.11472699912324], [-118.01523598620918, 34.11567000004742], [-118.01487698584302, 34.11567300409474], [-118.01392818149793, 34.117269543293716], [-118.01347456463648, 34.11728275704989], [-118.01341022989122, 34.11702806499557], [-118.0130779858297, 34.11701900414836], [-118.01310497165537, 34.11865500583447], [-118.01234698588756, 34.11868100519347], [-118.01237097165384, 34.119885005837375], [-118.01210597379287, 34.12033500049803], [-118.00859498582462, 34.119129008151], [-118.00848998580392, 34.12192700423937], [-118.008574971647, 34.12490700584152], [-118.00878597164699, 34.125885005844786], [-118.00673398079735, 34.129335998614884], [-118.00637600000012, 34.1292759991231], [-118.005799, 34.13020699912311], [-118.00493998597904, 34.13036500196762], [-118.00395200000018, 34.130295999123135], [-118.00390198936488, 34.12930500164439]]], [[[-117.98861400000014, 34.12711299912314], [-117.9909980000003, 34.120906999123136], [-117.98965706828763, 34.12047999353591], [-117.99000266244052, 34.11958892554981], [-117.99129790174726, 34.11979136634928], [-117.99148300000031, 34.119680999123204], [-117.9922000000002, 34.11780999912318], [-117.99651812109755, 34.11768324332483], [-117.99578400000014, 34.11809399912324], [-117.9954000000002, 34.118656999123196], [-117.99594200000018, 34.11857099912321], [-117.99774400000018, 34.119012999123235], [-117.99790500000016, 34.119005999123175], [-117.99827700000023, 34.118076999123296], [-117.99876300000017, 34.11739799912323], [-117.99964700000012, 34.11741799912325], [-117.99940600000019, 34.11803499912323], [-118.00130000000033, 34.11790899912322], [-118.00130500000014, 34.11742599912325], [-118.003505, 34.11750699912328], [-118.00340200000016, 34.124518999123225], [-118.00382600000016, 34.12451799912307], [-118.00382432287842, 34.124928055371214], [-117.99991923506707, 34.124935687679695], [-117.9992558683744, 34.12771801164163], [-117.9960513964897, 34.12686863901159], [-117.99586300000023, 34.12704899912318], [-117.9950760000003, 34.12917899912308], [-117.99499046421641, 34.130417420041304], [-117.9906828412691, 34.13043620318005], [-117.99073400000017, 34.129878999123015], [-117.98880700000026, 34.12979299912312], [-117.98768000000037, 34.129510999123056], [-117.98861400000014, 34.12711299912314]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Mayflower Village", "population": null, "cases": null, "resource_uri": "/1.0/boundary/mayflower-village-la-county-neighborhood-current/", "external_id": "mayflower-village", "slug": "mayflower-village-la-county-neighborhood-current", "metadata": {"sqmi": 1.21537929985, "type": "unincorporated-area", "name": "Mayflower Village", "slug": "mayflower-village"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.19452500000017, 33.995332999124614], [-118.18498900000013, 33.99435199912476], [-118.18504600000023, 33.99385399912477], [-118.18454600000013, 33.99380999912476], [-118.18430300000011, 33.994453999124765], [-118.18289800000022, 33.9936719991247], [-118.18337100000016, 33.99306599912474], [-118.17799200000019, 33.98993299912474], [-118.17811100000017, 33.9896559991248], [-118.17608300000025, 33.98760099912484], [-118.17513700000022, 33.9868449991248], [-118.17394100000026, 33.98674899912477], [-118.1739590000002, 33.98625199912477], [-118.17313700000018, 33.986228999124805], [-118.17257900000021, 33.986436999124805], [-118.17219800000014, 33.98627299912471], [-118.17085000000014, 33.98385199912482], [-118.16994500000013, 33.98023799912481], [-118.17003500000013, 33.98000799912491], [-118.18956600000021, 33.9819329991249], [-118.18900900000021, 33.986561999124824], [-118.18967000000013, 33.98659199912489], [-118.18967400000018, 33.986784999124815], [-118.19011100000017, 33.98680499912484], [-118.1900150000002, 33.98741899912478], [-118.1922680000002, 33.98762099912487], [-118.19338100000026, 33.98749299912479], [-118.194433, 33.98781899912485], [-118.20264600000017, 33.98864899912478], [-118.20282800000012, 33.98891699912479], [-118.204285, 33.98907899912477], [-118.20428100000025, 33.98893399912483], [-118.20450200000029, 33.98894699912477], [-118.20466100000014, 33.99664599912468], [-118.2034310000002, 33.99666999912465], [-118.19450000000033, 33.9957389991247], [-118.19452500000017, 33.995332999124614]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Maywood", "population": 0.2804867523949253, "cases": 65.0, "resource_uri": "/1.0/boundary/maywood-la-county-neighborhood-current/", "external_id": "maywood", "slug": "maywood-la-county-neighborhood-current", "metadata": {"sqmi": 1.18806818977, "type": "standalone-city", "name": "Maywood", "slug": "maywood"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.35381, 34.04820999912394], [-118.34700900000016, 34.04770999912397], [-118.344709, 34.04770999912402], [-118.338309, 34.048610999124044], [-118.33480900000013, 34.04871099912388], [-118.332609, 34.04841099912401], [-118.3301090000001, 34.04821099912388], [-118.329509, 34.04831099912403], [-118.32670900000012, 34.04801099912404], [-118.332709, 34.03671099912401], [-118.333809, 34.03501099912416], [-118.3453090000001, 34.0347109991241], [-118.36211000000013, 34.03401099912428], [-118.36861000000013, 34.034810999124076], [-118.369577, 34.03507999912423], [-118.375919, 34.03241699912417], [-118.384206, 34.03021399912429], [-118.38639600000013, 34.02890499912422], [-118.386662, 34.029206999124256], [-118.38679900000012, 34.029128999124204], [-118.387171, 34.02939999912424], [-118.38776190953162, 34.02906290865564], [-118.38951000000014, 34.030410999124236], [-118.39091, 34.03120999912416], [-118.38981, 34.03330999912412], [-118.38611100000011, 34.04660999912396], [-118.38511100000014, 34.04640999912406], [-118.38311000000013, 34.04560999912394], [-118.37681000000013, 34.04450999912405], [-118.37611000000011, 34.04690999912396], [-118.3762100000001, 34.05330999912392], [-118.36221000000015, 34.05060999912388], [-118.36001, 34.049809999123966], [-118.35981000000014, 34.049609999123895], [-118.35681000000011, 34.04860999912396], [-118.35381, 34.04820999912394]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Mid-City", "population": 0.5986792660767203, "cases": 156.0, "resource_uri": "/1.0/boundary/mid-city-la-county-neighborhood-current/", "external_id": "mid-city", "slug": "mid-city-la-county-neighborhood-current", "metadata": {"sqmi": 3.46810947987, "type": "segment-of-a-city", "name": "Mid-City", "slug": "mid-city"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.36151, 34.07150899912353], [-118.35331, 34.070308999123625], [-118.34741, 34.06910999912373], [-118.34411, 34.0689099991237], [-118.34411, 34.062109999123706], [-118.338609, 34.06200999912369], [-118.327509, 34.062109999123706], [-118.324509, 34.06190999912386], [-118.319309, 34.061909999123806], [-118.320609, 34.05920999912379], [-118.326709, 34.04801099912402], [-118.329509, 34.048310999124], [-118.330109, 34.04821099912382], [-118.332609, 34.04841099912393], [-118.334809, 34.04871099912383], [-118.33700899999988, 34.04871099912397], [-118.344709, 34.04770999912399], [-118.347009, 34.04770999912391], [-118.35381, 34.04820999912388], [-118.35681, 34.04860999912391], [-118.35981, 34.049609999123845], [-118.36001, 34.04980999912393], [-118.36221, 34.05060999912383], [-118.36691, 34.0515099991239], [-118.36381, 34.05840999912381], [-118.36151, 34.063009999123736], [-118.36161, 34.0658099991237], [-118.36151, 34.07150899912353]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Mid-Wilshire", "population": 0.43637093255617243, "cases": 81.0, "resource_uri": "/1.0/boundary/mid-wilshire-la-county-neighborhood-current/", "external_id": "mid-wilshire", "slug": "mid-wilshire-la-county-neighborhood-current", "metadata": {"sqmi": 2.78116898514, "type": "segment-of-a-city", "name": "Mid-Wilshire", "slug": "mid-wilshire"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.455616, 34.28010099912111], [-118.4552160000001, 34.27950099912121], [-118.45441600000014, 34.27990099912114], [-118.452462, 34.281320999121306], [-118.448707, 34.277733999121246], [-118.44706604532324, 34.27645903626253], [-118.45030300000013, 34.27411299912133], [-118.44766700000011, 34.27094499912125], [-118.444053, 34.267475999121345], [-118.44230000000012, 34.26449699912131], [-118.447916, 34.25740199912136], [-118.451816, 34.25170199912146], [-118.451816, 34.25000299912155], [-118.472025, 34.24999999912156], [-118.472002, 34.27185399912114], [-118.469314, 34.280127999121085], [-118.468244, 34.29016299912113], [-118.468369, 34.29116799912103], [-118.46868, 34.29205899912097], [-118.46963000000014, 34.293322999120974], [-118.46775500000015, 34.29166599912096], [-118.46554200000016, 34.288344999121065], [-118.46420300000015, 34.28694999912104], [-118.462966, 34.2859019991212], [-118.457826, 34.283147999121226], [-118.456964, 34.282206999121144], [-118.455616, 34.28010099912111]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Mission Hills", "population": 0.24123835689874693, "cases": 72.0, "resource_uri": "/1.0/boundary/mission-hills-la-county-neighborhood-current/", "external_id": "mission-hills", "slug": "mission-hills-la-county-neighborhood-current", "metadata": {"sqmi": 3.1874975889, "type": "segment-of-a-city", "name": "Mission Hills", "slug": "mission-hills"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.99000266244042, 34.119588925549714], [-117.99005363985458, 34.119457487152054], [-117.99087776153424, 34.11967862796363], [-117.990462, 34.119676999123215], [-117.99000266244042, 34.119588925549714]]], [[[-117.99210753445172, 34.117705241137436], [-117.99559623137631, 34.117687841252284], [-117.9922, 34.117809999123125], [-117.99148300000022, 34.11968099912318], [-117.99134095164732, 34.119680442616385], [-117.99210753445172, 34.117705241137436]]], [[[-117.98961291769521, 34.12059382989298], [-117.98965706828751, 34.12047999353587], [-117.99099800000018, 34.120906999123086], [-117.98891621415223, 34.12631177923025], [-117.99087702044606, 34.120921615387545], [-117.98961291769521, 34.12059382989298]]], [[[-117.98846991722266, 34.12747994774142], [-117.98890012186608, 34.1263539002952], [-117.9885580000002, 34.127260999123074], [-117.98846991722266, 34.12747994774142]]], [[[-117.95582546494461, 34.19418427875491], [-117.95340528321361, 34.194173871757094], [-117.9595930000002, 34.194175999122294], [-117.95959400000021, 34.180580999122455], [-117.94179900000015, 34.1805009991225], [-117.94153600000017, 34.1670529991225], [-117.94447100000015, 34.16704999912267], [-117.94439700000014, 34.1652059991227], [-117.977198, 34.16500599912263], [-117.9774460000001, 34.155866999122786], [-117.9800180000002, 34.15669799912275], [-117.980112, 34.156509999122804], [-117.98090200000019, 34.156833999122775], [-117.98109500000015, 34.15643099912273], [-117.98191900000013, 34.15663499912275], [-117.98256500000019, 34.156519999122715], [-117.98269900000021, 34.15629899912278], [-117.98473700000018, 34.15638499912276], [-117.9848770000002, 34.155712999122755], [-117.98513600000018, 34.15573399912274], [-117.98556700000013, 34.15511799912272], [-117.985851, 34.15512499912271], [-117.98537800000027, 34.15400899912272], [-117.98507600000015, 34.15155799912276], [-117.9838840000003, 34.1515619991228], [-117.983556, 34.15117799912281], [-117.98339000000026, 34.15058699912279], [-117.98208000000015, 34.15041799912286], [-117.98196600000024, 34.14782499912286], [-117.98033500000015, 34.14791699912287], [-117.9803610000002, 34.146870999122854], [-117.97538236966402, 34.14690429647322], [-117.97538000000016, 34.143657999122944], [-117.97755300000013, 34.143635999122864], [-117.97754600000015, 34.14324699912287], [-117.9796970000001, 34.14322799912288], [-117.9797030000002, 34.14013599912291], [-117.98108700000014, 34.140228999122925], [-117.9811050000002, 34.13952099912298], [-117.98630000000013, 34.13946999912304], [-117.986319, 34.13251799912302], [-117.98677100000013, 34.13188099912297], [-117.98768000000027, 34.12951099912301], [-117.98880700000016, 34.12979299912309], [-117.990734, 34.129878999122994], [-117.99068284126903, 34.13043620317998], [-117.99499046421631, 34.13041742004125], [-117.9950760000002, 34.12917899912303], [-117.99586300000013, 34.12704899912315], [-117.9960513964896, 34.126868639011576], [-117.99925586837428, 34.127718011641576], [-117.99991923506697, 34.12493568767967], [-118.00382432287829, 34.12492805537119], [-118.003826, 34.124517999123036], [-118.003402, 34.12451899912317], [-118.003505, 34.11750699912326], [-118.001305, 34.11742599912322], [-118.00130000000023, 34.11790899912319], [-117.999406, 34.11803499912321], [-117.999647, 34.11741799912321], [-117.998763, 34.11739799912321], [-117.99827700000013, 34.11807699912325], [-117.997905, 34.11900599912315], [-117.995942, 34.11857099912317], [-117.9954000000001, 34.11865699912315], [-117.995784, 34.11809399912318], [-117.99631900000023, 34.11775299912324], [-118.0007200000002, 34.11612899912317], [-118.00384800000018, 34.11740399912328], [-118.004642, 34.111088999123346], [-118.00531600000014, 34.10970999912326], [-118.00469, 34.109557999123325], [-118.00380800000012, 34.11120799912328], [-118.00356200000016, 34.111243999123275], [-118.0043690000002, 34.1095049991233], [-118.0010990000002, 34.108506999123406], [-118.0029350000002, 34.104718999123406], [-118.007067, 34.10612899912331], [-118.007342, 34.10556599912338], [-118.01555100000012, 34.10290199912331], [-118.015760986171, 34.10420000343579], [-118.012211, 34.10560799912333], [-118.007364, 34.110162999123276], [-118.0076370000001, 34.11045199912329], [-118.007143, 34.11072599912326], [-118.006879, 34.1104329991233], [-118.00516300000021, 34.11064699912328], [-118.005053, 34.11102899912329], [-118.005295, 34.11099399912326], [-118.00489600000012, 34.111462999123255], [-118.00419900000018, 34.11719299912316], [-118.00439900000019, 34.11719299912316], [-118.005399, 34.11528299912339], [-118.006699, 34.115177999123205], [-118.006699, 34.1144749991233], [-118.007096, 34.11446899912323], [-118.007099, 34.11700299912317], [-118.006001, 34.11699699912315], [-118.0059920000002, 34.11783099912329], [-118.006412, 34.11782899912329], [-118.006569, 34.11839299912328], [-118.00525600000012, 34.117915999123326], [-118.005343, 34.11764399912322], [-118.00465, 34.11738899912323], [-118.00447, 34.11762999912321], [-118.003999, 34.11780699912315], [-118.00395200000011, 34.130295999123085], [-118.00493998597894, 34.13036500196757], [-118.005799, 34.13020699912307], [-118.006376, 34.129275999123074], [-118.007219, 34.129333999123084], [-118.00723700000019, 34.130328999123044], [-118.01256900000013, 34.130264999123035], [-118.01457800000016, 34.13002899912308], [-118.016525, 34.13021799912306], [-118.016515, 34.12998099912304], [-118.0180500000001, 34.129985999123114], [-118.018055, 34.13019099912306], [-118.020009, 34.130163999123106], [-118.02002000000013, 34.13114299912311], [-118.020326, 34.131098999123076], [-118.02070500000016, 34.15111199912289], [-118.021009, 34.151107999122836], [-118.0213, 34.15476199912276], [-118.021883, 34.154752999122714], [-118.02190600000023, 34.15705299912276], [-118.02127800000014, 34.15706299912267], [-118.021288, 34.15793399912273], [-118.02065200000014, 34.15746199912277], [-118.020387, 34.157653999122765], [-118.0212630000001, 34.15855199912263], [-118.02110600000012, 34.15905399912282], [-118.0211190000002, 34.15977999912267], [-118.0213140000001, 34.15980499912274], [-118.021419, 34.173631999122485], [-118.021255, 34.17353399912244], [-118.020497, 34.174728999122465], [-118.019931, 34.174899999122516], [-118.0196320000001, 34.1753949991225], [-118.01872000000013, 34.175410999122484], [-118.018634, 34.17660299912245], [-118.0181860000001, 34.17623199912254], [-118.017052, 34.177181999122524], [-118.017593, 34.179452999122375], [-118.02136921876989, 34.1794387315851], [-118.02169100000012, 34.1885079991223], [-118.02159900000014, 34.190781999122365], [-118.022046, 34.193819999122205], [-118.02138509061986, 34.193807838876126], [-118.0213851980747, 34.19394004064254], [-118.01264500170018, 34.19396347294122], [-117.99508537083169, 34.194314692478166], [-117.95582546494461, 34.19418427875491]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Monrovia", "population": 0.42679966319749085, "cases": 54.0, "resource_uri": "/1.0/boundary/monrovia-la-county-neighborhood-current/", "external_id": "monrovia", "slug": "monrovia-la-county-neighborhood-current", "metadata": {"sqmi": 13.9299619674, "type": "standalone-city", "name": "Monrovia", "slug": "monrovia"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.09338000000015, 34.04345299912415], [-118.09380300000012, 34.04271999912417], [-118.09225400000012, 34.0420179991241], [-118.09104998603472, 34.04048100032417], [-118.0906880000001, 34.04039599912413], [-118.09055900000014, 34.039956999124065], [-118.08776500000016, 34.03904499912419], [-118.08578900000019, 34.03868199912418], [-118.08539600000012, 34.03775199912413], [-118.08515400000014, 34.0376639991242], [-118.083209, 34.03769899912425], [-118.08296300000023, 34.037428999124174], [-118.08317700000026, 34.036686999124214], [-118.08299600000021, 34.036643999124244], [-118.08326100000019, 34.034993999124275], [-118.08305600000014, 34.03451399912425], [-118.08257100000019, 34.034353999124264], [-118.08247600000011, 34.034082999124145], [-118.08164600000016, 34.03423999912427], [-118.08041800000017, 34.03474999912422], [-118.0800540000001, 34.03525199912416], [-118.080019, 34.03574799912415], [-118.07949500000014, 34.03584399912421], [-118.07907900000019, 34.03531299912416], [-118.0782580000002, 34.03606399912432], [-118.07259400000015, 34.0307249991243], [-118.073043, 34.030045999124255], [-118.07297100000022, 34.028075999124226], [-118.07657900000021, 34.024704999124395], [-118.07510185510334, 34.02658830834995], [-118.0757102312963, 34.02627490607615], [-118.0829550000002, 34.020586999124376], [-118.09180000000026, 34.01451099912447], [-118.0929350000002, 34.0135719991245], [-118.09273200000028, 34.013394999124515], [-118.09444000000025, 34.011667999124555], [-118.09534400000021, 34.0104569991246], [-118.09586100000014, 34.00839299912445], [-118.096201, 34.007661999124515], [-118.09655500000014, 34.00412899912449], [-118.097289, 34.00149199912457], [-118.10366600000026, 33.9997899991246], [-118.10428300000014, 33.998531999124666], [-118.10434500000022, 33.99767399912458], [-118.10478600000019, 33.997201999124705], [-118.10509000000032, 33.99719799912464], [-118.10672100000016, 33.99492599912472], [-118.10737600000023, 33.994621999124675], [-118.10765100000015, 33.994688999124726], [-118.10883500000023, 33.993294999124764], [-118.11003900000014, 33.99394799912476], [-118.11165400000023, 33.99184099912481], [-118.11057800000016, 33.99123999912477], [-118.11379700000015, 33.987234999124816], [-118.11398100000014, 33.987286999124706], [-118.11432800000019, 33.98659799912476], [-118.11419500000014, 33.98617799912478], [-118.11453900000018, 33.98397299912483], [-118.11484200000015, 33.983216999124856], [-118.115212, 33.98120599912489], [-118.11544600000018, 33.98103299912484], [-118.11596800000031, 33.97975699912489], [-118.11845300000019, 33.975789999125006], [-118.11883700000018, 33.97525099912496], [-118.12056600000012, 33.975244999124925], [-118.1232380000001, 33.97491199912494], [-118.12285900000015, 33.97445099912494], [-118.12636900000027, 33.97778299912492], [-118.12658000000016, 33.9776449991249], [-118.12963500000015, 33.98104899912482], [-118.13316500000013, 33.984556999124806], [-118.132721, 33.98601699912478], [-118.13099600000014, 33.98490199912482], [-118.12860500000022, 33.98530299912491], [-118.12517900000022, 33.99095499912476], [-118.12670200000015, 33.99181299912475], [-118.1281090000002, 33.99225999912481], [-118.12976300000022, 33.993215999124764], [-118.128398, 33.99884599912463], [-118.12881600000014, 33.999018999124665], [-118.12847800000021, 33.99972799912467], [-118.12886300000015, 33.999920999124704], [-118.12852700000012, 34.00047699912465], [-118.12952700000018, 34.00089099912472], [-118.12892700000013, 34.001979999124565], [-118.12961600000025, 34.00219699912453], [-118.12989500000019, 34.0025089991246], [-118.12732100000011, 34.00722499912457], [-118.12782800000015, 34.007257999124676], [-118.1277870000002, 34.00763999912465], [-118.127411, 34.00776399912449], [-118.12750624542694, 34.00811245701928], [-118.12664885164328, 34.01310946154102], [-118.13077402698093, 34.01407331237654], [-118.1306743440787, 34.014392337016794], [-118.13102724212825, 34.01446716338168], [-118.1307364479507, 34.01530176369498], [-118.13040821652449, 34.0152611398368], [-118.13019695188048, 34.015978665439405], [-118.14339217943895, 34.023892639369336], [-118.14309034102018, 34.0242460363255], [-118.14322287977136, 34.024325099924624], [-118.14282507654602, 34.02473140254947], [-118.14283411058761, 34.02584779227806], [-118.14355351347828, 34.02627947987464], [-118.14284252277338, 34.02723789722129], [-118.14285685234327, 34.03039946118088], [-118.14384209677844, 34.030396487075386], [-118.14384259071642, 34.03091128554579], [-118.14287221808094, 34.03091801553208], [-118.14286384580448, 34.03215940825745], [-118.14406066157895, 34.032281437059964], [-118.14408086728385, 34.03346348460095], [-118.11868600000014, 34.033693999124246], [-118.11489500000019, 34.03352299912406], [-118.11425500000033, 34.03319599912431], [-118.111649, 34.03047099912421], [-118.10762100000018, 34.02718099912434], [-118.107186, 34.02751299912433], [-118.10514000000013, 34.03020399912421], [-118.104546, 34.03197299912426], [-118.10161900000016, 34.03164299912422], [-118.10064400000017, 34.03490799912428], [-118.09869500000018, 34.03546499912423], [-118.09779200000014, 34.035210999124125], [-118.09534100000012, 34.03498199912422], [-118.09482600000014, 34.03530299912427], [-118.093635, 34.03510999912421], [-118.09366900000018, 34.035301999124215], [-118.09783900000012, 34.03578499912421], [-118.102759, 34.037214999124224], [-118.10375000000016, 34.037334999124084], [-118.10437500000012, 34.039274999124174], [-118.10530200000022, 34.03981099912421], [-118.10698200000017, 34.04017999912406], [-118.10194000000018, 34.042638999124115], [-118.10100900000015, 34.043510999124024], [-118.10027199071973, 34.04476199946907], [-118.09748198613251, 34.044853001729905], [-118.096874, 34.04473099912412], [-118.09464798231306, 34.043084007143825], [-118.09399197179303, 34.04394500575659], [-118.09554897179497, 34.04471300575788], [-118.09452198639042, 34.04617899725309], [-118.09237900000022, 34.045216999123944], [-118.09338000000015, 34.04345299912415]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Montebello", "population": 0.6437555709616718, "cases": 130.0, "resource_uri": "/1.0/boundary/montebello-la-county-neighborhood-current/", "external_id": "montebello", "slug": "montebello-la-county-neighborhood-current", "metadata": {"sqmi": 8.4543000379, "type": "standalone-city", "name": "Montebello", "slug": "montebello"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.176005, 34.112307999123104], [-118.1758233898305, 34.112433863529986], [-118.175535, 34.11222399912318], [-118.17699300000011, 34.11219799912326], [-118.176886, 34.112056999123254], [-118.177021, 34.11092799912333], [-118.177333, 34.11084699912331], [-118.177207, 34.110391999123365], [-118.177995, 34.110243999123234], [-118.17799437103525, 34.10275336728524], [-118.18410500000016, 34.08770899912359], [-118.184305, 34.086908999123416], [-118.184305, 34.08580999912346], [-118.18740500000015, 34.08620999912353], [-118.190805, 34.08320999912352], [-118.193205, 34.080709999123556], [-118.193805, 34.07920999912363], [-118.195105, 34.07960999912369], [-118.19620500000015, 34.08050999912348], [-118.196505, 34.08040999912359], [-118.196605, 34.078809999123706], [-118.197805, 34.079409999123584], [-118.197405, 34.08000999912364], [-118.198005, 34.08040999912359], [-118.197105, 34.08200999912356], [-118.198905, 34.08260999912364], [-118.199118, 34.08280899912359], [-118.20010800000013, 34.08283099912352], [-118.200892, 34.08107999912353], [-118.201005, 34.08050999912348], [-118.20180500000015, 34.08040999912359], [-118.20180500000015, 34.07870999912354], [-118.2029050000001, 34.07870999912364], [-118.2029050000001, 34.07720999912362], [-118.204105, 34.07720999912362], [-118.204105, 34.075509999123554], [-118.204605, 34.07490999912363], [-118.20540600000017, 34.07440999912369], [-118.20540600000011, 34.075509999123554], [-118.20580600000017, 34.07560999912364], [-118.206006, 34.078009999123545], [-118.20640600000013, 34.07830999912363], [-118.20680600000013, 34.079109999123595], [-118.20498, 34.08135799912342], [-118.20433200000012, 34.08134099912347], [-118.20435700000014, 34.082124999123586], [-118.20390600000016, 34.08260999912355], [-118.203506, 34.08410999912361], [-118.205006, 34.08510999912346], [-118.205306, 34.08370999912341], [-118.2057060000001, 34.08300999912352], [-118.206306, 34.083609999123475], [-118.208406, 34.08160999912358], [-118.211006, 34.07990999912359], [-118.210406, 34.07920999912363], [-118.21200600000013, 34.079209999123485], [-118.21200600000013, 34.08238899912361], [-118.211206, 34.08320999912352], [-118.21210600000015, 34.08310999912351], [-118.212306, 34.0842099991235], [-118.21150600000014, 34.085209999123435], [-118.213006, 34.08560999912344], [-118.212906, 34.0864099991235], [-118.210106, 34.0873099991235], [-118.20690600000015, 34.09070899912351], [-118.20620600000015, 34.0925089991234], [-118.20640600000013, 34.093208999123355], [-118.20620600000015, 34.09420899912352], [-118.20490600000012, 34.09610899912336], [-118.20060600000012, 34.10120899912325], [-118.199606, 34.1018089991233], [-118.19750500000015, 34.10260899912341], [-118.192505, 34.1031089991234], [-118.18610500000015, 34.10760899912323], [-118.184305, 34.1109079991232], [-118.183205, 34.11160799912319], [-118.180505, 34.1111079991232], [-118.177005, 34.11290799912313], [-118.176005, 34.112307999123104]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Montecito Heights", "population": null, "cases": null, "resource_uri": "/1.0/boundary/montecito-heights-la-county-neighborhood-current/", "external_id": "montecito-heights", "slug": "montecito-heights-la-county-neighborhood-current", "metadata": {"sqmi": 2.40964422507, "type": "segment-of-a-city", "name": "Montecito Heights", "slug": "montecito-heights"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.10676800000016, 34.07167499912378], [-118.10685100000016, 34.07110199912379], [-118.10815000000021, 34.07001699912377], [-118.10814600000019, 34.0698529991238], [-118.10710300000014, 34.06985899912378], [-118.10720500000014, 34.066221999123776], [-118.10713100000015, 34.06546199912378], [-118.10671200000023, 34.065455999123856], [-118.10671200000023, 34.064024999123816], [-118.10714300000019, 34.06404299912373], [-118.10697300000017, 34.06257299912391], [-118.10810800000017, 34.06256399912382], [-118.10803299114485, 34.05533799954464], [-118.10837300000016, 34.054666999124], [-118.10846500000014, 34.05350599912388], [-118.10810400000015, 34.05335799912395], [-118.10803000000021, 34.05197199912398], [-118.10819000000022, 34.049897999124006], [-118.10798400000022, 34.049424999124], [-118.10788100000016, 34.047410999124025], [-118.107577, 34.047308999124034], [-118.10704798582935, 34.0466610020001], [-118.10667899306603, 34.04672400144919], [-118.10661798586466, 34.04652500224906], [-118.10620198745197, 34.04661100481467], [-118.10552898432864, 34.047076999888894], [-118.10255900003504, 34.04762699928012], [-118.10268100000019, 34.04739799912404], [-118.10027199071973, 34.04476199946907], [-118.10100900000015, 34.043510999124024], [-118.10194000000018, 34.042638999124115], [-118.10698200000017, 34.04017999912406], [-118.10530200000022, 34.03981099912421], [-118.10437500000012, 34.039274999124174], [-118.10375000000016, 34.037334999124084], [-118.102759, 34.037214999124224], [-118.09783900000012, 34.03578499912421], [-118.09366900000018, 34.035301999124215], [-118.093635, 34.03510999912421], [-118.09482600000014, 34.03530299912427], [-118.09534100000012, 34.03498199912422], [-118.09779200000014, 34.035210999124125], [-118.09869500000018, 34.03546499912423], [-118.10064400000017, 34.03490799912428], [-118.10161900000016, 34.03164299912422], [-118.104546, 34.03197299912426], [-118.10514000000013, 34.03020399912421], [-118.107186, 34.02751299912433], [-118.10762100000018, 34.02718099912434], [-118.111649, 34.03047099912421], [-118.11425500000033, 34.03319599912431], [-118.11489500000019, 34.03352299912406], [-118.11868600000014, 34.033693999124246], [-118.14647385247164, 34.03344546109933], [-118.15019685254379, 34.03481246101301], [-118.15056385254407, 34.0347444610046], [-118.15159785252834, 34.0340784609791], [-118.15265685257563, 34.0352564609564], [-118.15373685260883, 34.036012460932746], [-118.15504630571934, 34.0362079341207], [-118.15728320237388, 34.036261014924854], [-118.15733778693871, 34.04062742123653], [-118.15714335412778, 34.04062957035078], [-118.15713373095451, 34.04431404000616], [-118.16960384823973, 34.04419761128103], [-118.16939851762851, 34.04479286901194], [-118.16911268982594, 34.044926457825476], [-118.16889149816181, 34.04591209627883], [-118.1682251386009, 34.04661241313537], [-118.16823286943286, 34.0478794147315], [-118.16806453897007, 34.048352968628755], [-118.16927536651984, 34.04835460219367], [-118.16925614744392, 34.06228774733531], [-118.16940208619565, 34.06229004009118], [-118.15282000000015, 34.06232899912383], [-118.151271, 34.06174299912383], [-118.148269, 34.06145899912391], [-118.147222, 34.0610039991238], [-118.14579100000032, 34.060075999123946], [-118.14436300000017, 34.05996899912392], [-118.14342300000014, 34.06031199912392], [-118.14336600000023, 34.06068299912383], [-118.14306700000013, 34.060940999123886], [-118.1416750000001, 34.06142599912384], [-118.140266, 34.06220299912387], [-118.1384700000002, 34.06242499912395], [-118.13550200000027, 34.0624569991239], [-118.13551200000019, 34.06327999912385], [-118.13498800000015, 34.06328399912382], [-118.13502900000016, 34.066022999123824], [-118.13515800000013, 34.06792999912375], [-118.13568800000014, 34.06792799912381], [-118.13570700000014, 34.06974099912372], [-118.109401, 34.069840999123805], [-118.10939900000017, 34.0711099991238], [-118.1108670000003, 34.07163599912371], [-118.10676800000016, 34.07167499912378]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Monterey Park", "population": 0.6226335717290703, "cases": 74.0, "resource_uri": "/1.0/boundary/monterey-park-la-county-neighborhood-current/", "external_id": "monterey-park", "slug": "monterey-park-la-county-neighborhood-current", "metadata": {"sqmi": 7.66088538663, "type": "standalone-city", "name": "Monterey Park", "slug": "monterey-park"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.21870600000011, 34.117807999123016], [-118.21710600000011, 34.117507999123085], [-118.215006, 34.11640799912308], [-118.211706, 34.1158079991232], [-118.2103060000001, 34.11480799912307], [-118.2081060000001, 34.11280799912305], [-118.20830600000014, 34.11250899912319], [-118.20770600000016, 34.1122089991231], [-118.204806, 34.1085089991233], [-118.203806, 34.107008999123195], [-118.20580600000017, 34.106008999123205], [-118.205206, 34.101108999123376], [-118.2061060000001, 34.09920899912333], [-118.209206, 34.09640899912336], [-118.209906, 34.09530899912338], [-118.21140600000015, 34.093708999123386], [-118.211606, 34.0931089991233], [-118.211606, 34.09080899912352], [-118.21210600000015, 34.09030999912343], [-118.213106, 34.08970999912355], [-118.215606, 34.08850999912352], [-118.21600600000012, 34.0892099991235], [-118.216806, 34.08880999912347], [-118.219006, 34.08900999912346], [-118.220606, 34.09060999912335], [-118.220906, 34.09140999912338], [-118.22100600000014, 34.093208999123355], [-118.221306, 34.09410899912343], [-118.22220600000013, 34.095408999123386], [-118.223706, 34.09640899912336], [-118.225406, 34.09670899912334], [-118.22740600000016, 34.09770899912326], [-118.230107, 34.099508999123266], [-118.232207, 34.1004089991234], [-118.232807, 34.10100899912329], [-118.233607, 34.10140899912327], [-118.233907, 34.10180899912332], [-118.234207, 34.10320899912329], [-118.232707, 34.10400899912322], [-118.232822, 34.104268999123356], [-118.231607, 34.10480899912335], [-118.229007, 34.10480899912335], [-118.22810700000011, 34.10500899912333], [-118.225406, 34.10610899912325], [-118.22460600000011, 34.106808999123274], [-118.22230600000017, 34.1081089991232], [-118.221006, 34.11030899912313], [-118.220906, 34.11110899912325], [-118.223906, 34.114807999123094], [-118.224106, 34.11530799912305], [-118.22290600000015, 34.116207999123134], [-118.22300600000014, 34.11650799912317], [-118.22260600000011, 34.11690799912317], [-118.219506, 34.11610799912322], [-118.21870600000011, 34.117807999123016]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Mount Washington", "population": 0.24144383412808598, "cases": 40.0, "resource_uri": "/1.0/boundary/mount-washington-la-county-neighborhood-current/", "external_id": "mount-washington", "slug": "mount-washington-la-county-neighborhood-current", "metadata": {"sqmi": 1.85040389289, "type": "segment-of-a-city", "name": "Mount Washington", "slug": "mount-washington"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.73644891989731, 34.82316790057429], [-117.73630200000048, 34.82285699911476], [-117.7310540000004, 34.82276599911482], [-117.72233300000036, 34.82282099911487], [-117.72089400000034, 34.822957999114855], [-117.6672920000003, 34.82252599911484], [-117.66733800000029, 34.82005999911498], [-117.66720400000041, 34.81919099911504], [-117.66817800000042, 34.81900999911493], [-117.66965000000036, 34.819104999114856], [-117.6674250000005, 34.81531899911488], [-117.66830400000036, 34.814751999114954], [-117.66884300000046, 34.8140209991151], [-117.66775700000031, 34.80815699911496], [-117.66843800000044, 34.80785699911503], [-117.66766000000044, 34.80260599911513], [-117.66784800000049, 34.79071999911521], [-117.66717800000043, 34.767517999115434], [-117.66728300000047, 34.731352999115906], [-117.6670990000004, 34.718066999116104], [-117.66732300000035, 34.7130279991162], [-117.66697100000043, 34.68793399911641], [-117.66711000000042, 34.68157599911651], [-117.66697600000037, 34.66665999911662], [-117.66715800000038, 34.66585499911661], [-117.66694900000034, 34.66508199911677], [-117.66687300000032, 34.64735399911682], [-117.6669460000004, 34.64396899911695], [-117.6671120000003, 34.64301199911687], [-117.66681800000045, 34.642607999116855], [-117.66676500000045, 34.63809499911698], [-117.6667720000004, 34.63474299911698], [-117.6669680000004, 34.63401299911697], [-117.6669540000005, 34.60336699911737], [-117.66722100000042, 34.600544999117396], [-117.6672320000004, 34.59862399911749], [-117.66696900000042, 34.59751799911742], [-117.66694300000037, 34.59560699911742], [-117.66708100000054, 34.57634199911775], [-117.6666800000004, 34.5750829991178], [-117.6666510000005, 34.573463999117685], [-117.66703400000043, 34.55800799911793], [-117.65999400000032, 34.558039999118], [-117.65999200000024, 34.55778199911809], [-117.66034600000032, 34.55784799911794], [-117.66015400000022, 34.52863299911839], [-117.66025800000033, 34.52796299911837], [-117.66007500000029, 34.52765399911839], [-117.66022600000035, 34.527652999118416], [-117.66014400000036, 34.519382999118505], [-117.66025500000026, 34.516507999118595], [-117.6601460000004, 34.514668999118435], [-117.65966900000026, 34.51451399911857], [-117.65965200000035, 34.51407299911848], [-117.66033700000048, 34.51323799911844], [-117.66003800000027, 34.49896599911875], [-117.66013800000042, 34.49819199911862], [-117.6599930000003, 34.49431599911874], [-117.65973600000032, 34.45590899911918], [-117.65975700000033, 34.45276899911911], [-117.66005387247745, 34.451960718322624], [-117.73721119030793, 34.49769571015598], [-117.7387593580305, 34.49840357447535], [-117.74104545454581, 34.49859580032175], [-117.75020906044566, 34.49855993464595], [-117.76520000000032, 34.49877761850334], [-117.80644656298851, 34.498777253313534], [-117.80733701924092, 34.498999632802104], [-117.80798827373847, 34.49934734588488], [-117.81605664485338, 34.5055320737923], [-117.81681276159348, 34.50584879176545], [-117.81812279075085, 34.50603201723331], [-117.83760000000036, 34.506213982139606], [-117.85384082799783, 34.50621212593462], [-117.85379765876804, 34.50607480320856], [-117.87500022345944, 34.5063587433702], [-117.90243031080759, 34.50638628321088], [-117.90250909090946, 34.506568527594276], [-117.92242784544091, 34.50658625661475], [-117.92405570236467, 34.50702732318508], [-117.92550593537369, 34.508066685356276], [-117.93500371264459, 34.51885504845853], [-117.93644353834657, 34.52025568291257], [-117.93752867125754, 34.52086489031915], [-117.94161685570921, 34.52121396930764], [-117.96247170481853, 34.52123696019092], [-117.96022567010709, 34.5213012043861], [-117.95905335693163, 34.522157615211576], [-117.95823205660378, 34.522451903647166], [-117.9536868376532, 34.523253089103974], [-117.95367939063702, 34.52828073487475], [-117.95827236826389, 34.52831400859094], [-117.95826656880179, 34.5428011203135], [-117.95800510239246, 34.543240819278786], [-117.95359464593317, 34.543873261574596], [-117.95150240968196, 34.54383907164991], [-117.94920893056201, 34.543577672646656], [-117.94887170545987, 34.54330062829034], [-117.94645392276608, 34.543027909446444], [-117.93826879832281, 34.543025509589704], [-117.93831208363703, 34.549406776913244], [-117.9384581481104, 34.549803224659016], [-117.93874341171623, 34.54994364376247], [-117.9383450506126, 34.55049759715506], [-117.93840276983565, 34.5537715471362], [-117.93875449509805, 34.553773262586525], [-117.93881211191355, 34.5569087228953], [-117.93545861809412, 34.556909680344894], [-117.93435933286653, 34.556775464431134], [-117.93380298204336, 34.55702309888124], [-117.93194160895118, 34.55702464658875], [-117.93193453338232, 34.55670293397731], [-117.92425265863356, 34.556712071583355], [-117.9242470903966, 34.55644415601838], [-117.9231494330535, 34.55644464854932], [-117.92317805176253, 34.55782264418524], [-117.92296413276286, 34.55809929620305], [-117.91817500650063, 34.55810952028969], [-117.91817574662934, 34.557965314537164], [-117.9162753534237, 34.558105258292585], [-117.91644371892811, 34.57611534831157], [-117.93395544857538, 34.57632157955379], [-117.94305867764295, 34.57621680773874], [-117.94299282239419, 34.57805398112628], [-117.94312679093368, 34.5780521824562], [-117.94295244222839, 34.58282221740767], [-117.94281954663191, 34.582824544862376], [-117.94280623803996, 34.5831899159376], [-117.94293913422159, 34.58318758759581], [-117.94288549712603, 34.587222455455056], [-117.93388494008865, 34.58732852817744], [-117.93249200000024, 34.58705899911761], [-117.91856500000026, 34.58694399911772], [-117.91679700000022, 34.586993999117624], [-117.91678425227944, 34.58718609408374], [-117.91627407918398, 34.58718184477848], [-117.91637003417418, 34.59333712522364], [-117.91574700000021, 34.6025819991175], [-117.9158670000003, 34.66100599911679], [-117.93840300000028, 34.66099299911686], [-117.93852794730651, 34.6753994015678], [-117.94721100000022, 34.67547299911658], [-117.9472340000003, 34.6808259991165], [-117.94744707155841, 34.68082884488884], [-117.94744338376687, 34.68102432888705], [-117.95195034245488, 34.68110511237873], [-117.95195500000025, 34.6827739991166], [-117.96091700000026, 34.68287499911653], [-117.96086200000018, 34.69017399911644], [-117.96304477568083, 34.69018444833454], [-117.96331300000013, 34.68651799911652], [-117.96509220220163, 34.68652570698397], [-117.96515546758592, 34.682933423309436], [-117.9696660000002, 34.68294099911652], [-117.96966600000026, 34.67924999911666], [-117.97853500000032, 34.67921699911658], [-117.97854300000024, 34.69019899911644], [-117.98656300000027, 34.69014999911645], [-117.98655700000027, 34.68649767747508], [-117.9874002524535, 34.68649777257453], [-117.98733433730148, 34.69011554330958], [-118.01898986566319, 34.68996312555802], [-118.0191168101914, 34.686541304918066], [-118.01919800000026, 34.68997499911652], [-118.03231100000015, 34.689951999116445], [-118.03236173657834, 34.69352867711258], [-118.03481722509018, 34.69351005324341], [-118.03477986058903, 34.68994961068309], [-118.04118452558453, 34.68995695553336], [-118.04122800000027, 34.69718999911632], [-118.05921956127025, 34.69726601197141], [-118.05915600000014, 34.71927999911614], [-118.09427249654252, 34.71877810232401], [-118.11257500000033, 34.71888599911614], [-118.13062000000025, 34.71851899911618], [-118.13079700000037, 34.733402999115974], [-118.17006913905439, 34.733224361347695], [-118.17040583181407, 34.77683222650375], [-118.1694456006937, 34.776841147819304], [-118.16913147152462, 34.77698181729715], [-118.17040960267903, 34.777070329691036], [-118.17064964690064, 34.806062817326435], [-118.17017875019157, 34.82047176058379], [-118.14849800000039, 34.82078799911502], [-118.13083000000047, 34.82073299911498], [-118.13086100000027, 34.82110199911494], [-118.12833300000027, 34.821288999114955], [-118.12764800000033, 34.82122099911493], [-118.12784700000036, 34.82093599911499], [-118.12808200000029, 34.82108099911499], [-118.12783900000045, 34.820614999114866], [-118.12751700000032, 34.82046499911483], [-118.12653400000046, 34.820664999114854], [-118.12641600000038, 34.82095899911496], [-118.12582400000028, 34.821013999114946], [-118.05164000000035, 34.82143599911487], [-117.96429300000037, 34.82239599911489], [-117.90467600000045, 34.82218899911472], [-117.89184300000035, 34.8223489991148], [-117.88118700000027, 34.82218899911484], [-117.87331500000026, 34.82252499911492], [-117.86998700000031, 34.8223489991148], [-117.84326600000033, 34.82263699911483], [-117.81339300000047, 34.82270199911495], [-117.78801600000031, 34.823085999114845], [-117.7748160000004, 34.8229739991149], [-117.75454300000037, 34.82314999911487], [-117.73828600000049, 34.822891999114894], [-117.73644891989731, 34.82316790057429]], [[-117.86279821858408, 34.631415628477306], [-117.86279621857769, 34.6311636284761], [-117.85380779649992, 34.63120521818633], [-117.85363472075343, 34.6238080039118], [-117.86263921837926, 34.623791628470435], [-117.86248221818414, 34.6165316284641], [-117.84459706090125, 34.616484709167516], [-117.84457902449492, 34.616327875896], [-117.84449899470457, 34.58720935278703], [-117.84987999945906, 34.58719839666711], [-117.85234886097109, 34.586664309814644], [-117.85344181841387, 34.58661006944215], [-117.85711789910289, 34.58726638844695], [-117.86245221740622, 34.58738562842977], [-117.86217821720511, 34.57993962842573], [-117.84443121704636, 34.57989662874884], [-117.84451552935025, 34.58717963885903], [-117.83562404290686, 34.587241700750376], [-117.83562430249059, 34.5918005233647], [-117.82675844708066, 34.59180585683946], [-117.82661527689818, 34.59821210328054], [-117.81803403605433, 34.59823962156431], [-117.81810121740334, 34.60205262925615], [-117.80921721732155, 34.60194262941813], [-117.809364218105, 34.63125062945128], [-117.8450500712808, 34.63120060779416], [-117.84526971056141, 34.64215254945017], [-117.85400785550287, 34.6421812680843], [-117.85395757117696, 34.63845249874371], [-117.86286121877176, 34.638422628484975], [-117.86279821858408, 34.631415628477306]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Northeast Antelope Valley", "population": 0.028329524229779537, "cases": 3.0, "resource_uri": "/1.0/boundary/northeast-antelope-valley-la-county-neighborhood-current/", "external_id": "northeast-antelope-valley", "slug": "northeast-antelope-valley-la-county-neighborhood-current", "metadata": {"sqmi": 441.975641734, "type": "unincorporated-area", "name": "Northeast Antelope Valley", "slug": "northeast-antelope-valley"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.01731998592427, 34.10864900310411], [-118.01658998437091, 34.105288000321345], [-118.0178932836078, 34.10251638404468], [-118.01922497166933, 34.10278800581599], [-118.0203170000002, 34.09919099912342], [-118.02187083146433, 34.09839533166659], [-118.02178051417611, 34.098228992445286], [-118.02560260888268, 34.09631745961811], [-118.02555394455378, 34.096714481623245], [-118.0258181304757, 34.096740585125154], [-118.02574609412294, 34.09782389210948], [-118.02737709992869, 34.09683954986524], [-118.02791970732942, 34.09719268206135], [-118.02853528680451, 34.097041643583346], [-118.02963451391147, 34.102857532292504], [-118.02842053188219, 34.10304215332906], [-118.02854970765783, 34.10352501459615], [-118.0297560000003, 34.10336899912336], [-118.03049599278788, 34.106384000249264], [-118.02917798593478, 34.10656900314091], [-118.02923598566298, 34.106851001510506], [-118.02619898587865, 34.10728600171911], [-118.02455998589076, 34.10734800387789], [-118.0245372701033, 34.107009530679974], [-118.01846998592521, 34.107904003104444], [-118.01858598565863, 34.10846400153744], [-118.01731998592427, 34.10864900310411]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "North El Monte", "population": null, "cases": null, "resource_uri": "/1.0/boundary/north-el-monte-la-county-neighborhood-current/", "external_id": "north-el-monte", "slug": "north-el-monte-la-county-neighborhood-current", "metadata": {"sqmi": 0.426770340697, "type": "unincorporated-area", "name": "North El Monte", "slug": "north-el-monte"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.4966170000001, 34.25733399912146], [-118.472017, 34.25720199912154], [-118.472025, 34.24999999912156], [-118.451816, 34.25000299912155], [-118.45311600000014, 34.24610299912159], [-118.455616, 34.24270299912168], [-118.456716, 34.23940299912167], [-118.45841600000011, 34.229702999121734], [-118.45971600000011, 34.224602999121814], [-118.459916, 34.22200299912176], [-118.459516, 34.221202999121815], [-118.49281600000016, 34.221088999121896], [-118.495317, 34.220002999121945], [-118.498718, 34.22070299912187], [-118.498418, 34.224302999121804], [-118.497622, 34.2268189991219], [-118.4969140000001, 34.22834699912176], [-118.49651800000015, 34.23190299912172], [-118.496418, 34.23560299912165], [-118.497518, 34.23720299912173], [-118.495118, 34.2412029991216], [-118.493118, 34.24360299912157], [-118.492218, 34.24640299912159], [-118.49141800000014, 34.25010299912153], [-118.50241800000013, 34.25010299912157], [-118.50241800000013, 34.25740199912151], [-118.4966170000001, 34.25733399912146]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "North Hills", "population": 0.6157390855281453, "cases": 155.0, "resource_uri": "/1.0/boundary/north-hills-la-county-neighborhood-current/", "external_id": "north-hills", "slug": "north-hills-la-county-neighborhood-current", "metadata": {"sqmi": 5.30811801222, "type": "segment-of-a-city", "name": "North Hills", "slug": "north-hills"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.396015, 34.20120399912209], [-118.39471200000015, 34.20093299912205], [-118.394278, 34.20110899912203], [-118.37031201670365, 34.2011165212272], [-118.370313, 34.19637899912225], [-118.361151, 34.194650999122295], [-118.36119, 34.19397099912228], [-118.36082400000011, 34.19248499912225], [-118.35775800000012, 34.17216199912258], [-118.354727, 34.164908999122524], [-118.361612, 34.16480599912259], [-118.361601, 34.15761299912263], [-118.370237, 34.15761299912263], [-118.36760900000012, 34.15302299912265], [-118.37612000000016, 34.15302499912271], [-118.37724, 34.15316099912279], [-118.377796, 34.153480999122635], [-118.378982, 34.15675099912264], [-118.38423100000014, 34.1686089991226], [-118.38497, 34.16944799912243], [-118.38687000000012, 34.17103999912247], [-118.39167300000013, 34.17358799912236], [-118.392281, 34.17404899912251], [-118.393567, 34.1757529991224], [-118.3951700000001, 34.17930299912229], [-118.396153, 34.18086699912234], [-118.39705100000012, 34.181929999122275], [-118.400999, 34.18571699912221], [-118.401504, 34.18641999912236], [-118.40182600000014, 34.18747899912215], [-118.403408, 34.199693999122104], [-118.4038050000001, 34.201091999122134], [-118.4046, 34.20285399912205], [-118.396015, 34.20120399912209]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "North Hollywood", "population": 1.5272695366224756, "cases": 343.0, "resource_uri": "/1.0/boundary/north-hollywood-la-county-neighborhood-current/", "external_id": "north-hollywood", "slug": "north-hollywood-la-county-neighborhood-current", "metadata": {"sqmi": 5.86911546946, "type": "segment-of-a-city", "name": "North Hollywood", "slug": "north-hollywood"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.51311600000015, 34.25750699912141], [-118.50241800000013, 34.25740199912151], [-118.50241800000013, 34.25010299912157], [-118.49141800000014, 34.25010299912153], [-118.492218, 34.24640299912159], [-118.493118, 34.24360299912157], [-118.495118, 34.2412029991216], [-118.497518, 34.23720299912173], [-118.496418, 34.23560299912165], [-118.49651800000015, 34.23190299912172], [-118.4969140000001, 34.22834699912176], [-118.497622, 34.2268189991219], [-118.498418, 34.224302999121804], [-118.498718, 34.22070299912187], [-118.502518, 34.221002999121836], [-118.523018, 34.22080299912185], [-118.56221900000014, 34.22010399912182], [-118.56222000000012, 34.23380299912176], [-118.56322, 34.234102999121674], [-118.56342000000015, 34.234802999121804], [-118.56432, 34.23530299912171], [-118.56452, 34.2425029991216], [-118.56342000000015, 34.24710299912152], [-118.56282, 34.248402999121524], [-118.56222, 34.24900299912151], [-118.55964700000014, 34.253408999121476], [-118.55982, 34.25550199912147], [-118.55842000000013, 34.25720199912154], [-118.5232330000001, 34.2570989991214], [-118.52323200000012, 34.257499999121386], [-118.51311600000015, 34.25750699912141]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Northridge", "population": 0.6979831285059735, "cases": 163.0, "resource_uri": "/1.0/boundary/northridge-la-county-neighborhood-current/", "external_id": "northridge", "slug": "northridge-la-county-neighborhood-current", "metadata": {"sqmi": 9.46748743941, "type": "segment-of-a-city", "name": "Northridge", "slug": "northridge"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.17017875019157, 34.82047176058379], [-118.17064964690064, 34.806062817326435], [-118.17040960267903, 34.777070329691036], [-118.16913147152462, 34.77698181729715], [-118.1694456006937, 34.776841147819304], [-118.17040583181407, 34.77683222650375], [-118.17006913905439, 34.733224361347695], [-118.1753450000003, 34.733220999115986], [-118.17558584290626, 34.76230897621303], [-118.25465600000038, 34.761991999115544], [-118.25462177446406, 34.74789329145458], [-118.25489074565128, 34.73304052226609], [-118.25475331173996, 34.72766602997549], [-118.25726400000018, 34.727683999116024], [-118.25698800000023, 34.72627699911609], [-118.25777600000022, 34.72627399911604], [-118.25775279767973, 34.72567853645996], [-118.2580375885069, 34.72567303745737], [-118.25799582781924, 34.724026387685406], [-118.25907304266417, 34.72399592920211], [-118.2590289504512, 34.72226869487758], [-118.25461556893005, 34.72219670104148], [-118.25453200000027, 34.71855399911611], [-118.26313500000026, 34.718493999116156], [-118.26330191044505, 34.71846287591837], [-118.26330919057592, 34.7175135673175], [-118.26391600000022, 34.717508999116184], [-118.26390900000027, 34.718489999116144], [-118.26640490466721, 34.71846080001646], [-118.26636947995453, 34.71496430130596], [-118.27204395737608, 34.71488699969683], [-118.27220233598345, 34.72402724817413], [-118.26775967191423, 34.72407740201299], [-118.26781971448828, 34.72763802639936], [-118.27150290671031, 34.72761723256454], [-118.27150500000039, 34.72786899911607], [-118.27228700000025, 34.72783699911599], [-118.27226986079913, 34.72578988531023], [-118.27655000000019, 34.725732999116026], [-118.27666859240585, 34.72930039627737], [-118.28121300000022, 34.729262999115996], [-118.28102500000024, 34.72585399911602], [-118.28712600000021, 34.725778999115974], [-118.2872290000003, 34.72908199911596], [-118.28518700000026, 34.729127999116045], [-118.28517100000028, 34.73287399911594], [-118.29008500000029, 34.73284899911592], [-118.28980721087261, 34.72573980843687], [-118.29394200000038, 34.725693999115954], [-118.29387100000022, 34.727084999116066], [-118.2942370000003, 34.73282799911596], [-118.29627500000026, 34.73282499911598], [-118.29629800000015, 34.73457399911595], [-118.29423600000034, 34.734587999115895], [-118.29410000000028, 34.73639599911592], [-118.29841942223013, 34.736493230499136], [-118.29845000000019, 34.73811199911586], [-118.29195000000021, 34.738139999115944], [-118.2921680000002, 34.74012399911585], [-118.2984890240944, 34.74012717992279], [-118.29856600000033, 34.74736499911576], [-118.30727900000021, 34.74736899911581], [-118.31572700000031, 34.74713399911577], [-118.3157687012127, 34.75186838880716], [-118.31166855818061, 34.75199077620541], [-118.3117370000002, 34.76079099911563], [-118.31073000000029, 34.76073799911572], [-118.31078189792126, 34.76180872787323], [-118.30744950773331, 34.76187620236696], [-118.3073840000003, 34.76879599911557], [-118.30763670902077, 34.768813208690375], [-118.30764647983851, 34.76918223569199], [-118.31154714475039, 34.76917322850599], [-118.3115338824084, 34.76885160320457], [-118.31189300000014, 34.768854999115575], [-118.31168500000022, 34.76182099911566], [-118.32116453841806, 34.76161126375465], [-118.32075746876782, 34.7520418888247], [-118.32517900000026, 34.752050999115696], [-118.32513078486022, 34.75047670822753], [-118.32077192629596, 34.75056476559105], [-118.32058400000028, 34.7470669991158], [-118.31932372304087, 34.747075912802636], [-118.31919044706702, 34.74243223828066], [-118.3244412702868, 34.742424159740516], [-118.32441164699837, 34.74265466389946], [-118.32487922623741, 34.74264267597924], [-118.32472200000025, 34.73913499911588], [-118.32164930102883, 34.73923046554248], [-118.32156705224449, 34.73707374588564], [-118.31905240050048, 34.73711825000694], [-118.3190910000002, 34.741437999115895], [-118.31471200000024, 34.74143899911587], [-118.3146440000003, 34.739234999115865], [-118.3114380000003, 34.73926799911586], [-118.31147246836468, 34.739941510956434], [-118.31104493287387, 34.73994702296669], [-118.31135095012966, 34.74325071325246], [-118.30719244242137, 34.743374794131135], [-118.30708839587165, 34.73986092352988], [-118.30727445636848, 34.73791692835136], [-118.30743542696293, 34.72930973783918], [-118.31134130208895, 34.72933446144051], [-118.31108200000031, 34.73271799911594], [-118.31509700000021, 34.7326769991159], [-118.31574929546986, 34.732643464627316], [-118.31578363392576, 34.72901090189932], [-118.32027508747085, 34.728971474617346], [-118.32021537722784, 34.72542485729056], [-118.31952400973414, 34.725435179412806], [-118.31951800000026, 34.72530099911605], [-118.31584855163378, 34.72533061984449], [-118.31587351948977, 34.72201340994303], [-118.32013718405726, 34.72194393737697], [-118.32008468272416, 34.71813340379273], [-118.3157670383888, 34.71821101050486], [-118.31567894710963, 34.71079910414729], [-118.30685300000023, 34.71088099911623], [-118.30705005788207, 34.70881186310491], [-118.30681245650733, 34.703744161901035], [-118.31247600000027, 34.70376999911623], [-118.31209700000025, 34.70061199911628], [-118.31555600000024, 34.701017999116225], [-118.31558196057317, 34.68922834025966], [-118.32422300000026, 34.689212999116464], [-118.32415800000021, 34.67860199911656], [-118.31917200000032, 34.678604999116644], [-118.31913500000027, 34.67465699911664], [-118.32415000000026, 34.6745819991166], [-118.3243140000002, 34.66464399911679], [-118.32208900000028, 34.66469199911669], [-118.32200100000028, 34.661657999116784], [-118.32297800000028, 34.66116399911677], [-118.32413700000028, 34.661588999116745], [-118.32409963044482, 34.660620625069456], [-118.32432599434844, 34.6606875223878], [-118.32432634114595, 34.65997501668295], [-118.32266417159731, 34.65993607504636], [-118.3223384240283, 34.65934415695964], [-118.32190129719214, 34.65958970849726], [-118.32080000000042, 34.65980999911676], [-118.32012500000032, 34.6594599991168], [-118.31968500000023, 34.65941699911681], [-118.31913800000018, 34.65742299911682], [-118.31822592745782, 34.658010238548854], [-118.31758269566683, 34.65782251326261], [-118.3171849221632, 34.6569815707396], [-118.31790811055176, 34.6565011561585], [-118.31678931908358, 34.655892264116225], [-118.3168120000003, 34.655554999116774], [-118.31597704308133, 34.65509708464962], [-118.31507700000023, 34.65507699911689], [-118.31475500000023, 34.6545959991169], [-118.31461200000022, 34.6546219991168], [-118.31471500000012, 34.654976999116855], [-118.31387732790958, 34.655220840304054], [-118.31359900000024, 34.655038999116854], [-118.31283958483748, 34.65544376403746], [-118.3128251253225, 34.65514892111705], [-118.31244993819394, 34.655169190668175], [-118.31236900000029, 34.65498699911682], [-118.31153100000033, 34.65481999911686], [-118.31115000000023, 34.65409999911687], [-118.30648023223984, 34.65272954021927], [-118.30663900000027, 34.64548999911699], [-118.28424466866673, 34.64537130416217], [-118.28033600000026, 34.645551999117025], [-118.27772800000021, 34.64543699911703], [-118.27711012415365, 34.64555846286644], [-118.27167700000022, 34.645330999116986], [-118.27123500000016, 34.645526999116974], [-118.27120287528822, 34.63111344301852], [-118.27989880784625, 34.630996393037165], [-118.28865740498169, 34.63110432268006], [-118.3235551241984, 34.630538963157065], [-118.32394035830188, 34.637807901751145], [-118.34182629970715, 34.63778471862662], [-118.34181416794863, 34.636904693643004], [-118.35071354178883, 34.63906074624547], [-118.35072036963466, 34.645038563735405], [-118.34193448117229, 34.6450462977256], [-118.34200057682048, 34.659752091816365], [-118.35589454354545, 34.65974971689978], [-118.355944951554, 34.65903361504448], [-118.35895046417315, 34.659725268134075], [-118.3596436208913, 34.65974836300545], [-118.35960564354032, 34.66342718023054], [-118.36409468142247, 34.66335154726451], [-118.36523450953436, 34.66355225260418], [-118.36531554382984, 34.66333050864169], [-118.36596307934037, 34.66352879466963], [-118.36626517990618, 34.66318245896136], [-118.36693286182201, 34.66355181255327], [-118.36741517171961, 34.662833894566475], [-118.36836945361495, 34.662831008680726], [-118.36834644544045, 34.66690373478488], [-118.38151838125953, 34.66670802800072], [-118.38152492940901, 34.673975697162916], [-118.41290760729963, 34.67397545893935], [-118.41304533655584, 34.687970809932764], [-118.43061123039065, 34.68795804844798], [-118.43061395544542, 34.688275668673654], [-118.44387569497232, 34.68830443388804], [-118.44393565093958, 34.69540508332281], [-118.4527735388628, 34.69550746758646], [-118.45280034272774, 34.6991897225409], [-118.46162517011187, 34.69923174955157], [-118.46165981439844, 34.702876849101784], [-118.48370880321868, 34.70271405981773], [-118.50139505560557, 34.702766932874916], [-118.50136015975532, 34.69915959391432], [-118.50576080856399, 34.699157707853985], [-118.50575108458867, 34.69799839703525], [-118.50770481275563, 34.6986308470868], [-118.51134973409897, 34.699076252171864], [-118.51588939094466, 34.700320194670354], [-118.51795935816446, 34.70112175648094], [-118.51991913366574, 34.70115039232916], [-118.52642190516389, 34.70253506595229], [-118.52795758209734, 34.7031658105217], [-118.53065641652428, 34.70470154684311], [-118.53586258834899, 34.70660032342384], [-118.53816479713207, 34.70781598961357], [-118.54870230595452, 34.71024149621466], [-118.55417228192935, 34.710788351146306], [-118.55872124474851, 34.7124711351981], [-118.56091773647499, 34.712851987509936], [-118.56655678388393, 34.71483437383825], [-118.56952202775693, 34.71539874380146], [-118.5699115247998, 34.715661926735], [-118.57049519246624, 34.7167886069356], [-118.57090651651612, 34.71702401141169], [-118.57464530839763, 34.71705932963864], [-118.57681713380346, 34.71763668706], [-118.57773810804191, 34.71830486146471], [-118.5812312120231, 34.72188087039616], [-118.58884519232694, 34.72604848401674], [-118.59173334061796, 34.72903663333434], [-118.59359042543029, 34.73150249550141], [-118.59689063850941, 34.73327574940736], [-118.59743618547715, 34.733840099805086], [-118.59874974843528, 34.735861315802836], [-118.604667548887, 34.7349237966746], [-118.60643208530327, 34.73439642375944], [-118.60765454545485, 34.73434965245851], [-118.60931268773514, 34.73460419791307], [-118.61056319102035, 34.734433805691516], [-118.61253355487143, 34.735254100232396], [-118.61333531562168, 34.73541850524179], [-118.615097383546, 34.73625833965379], [-118.61674940386335, 34.735675856056965], [-118.61852299439428, 34.73439642375939], [-118.62112841038, 34.73426806779661], [-118.62245006347818, 34.733858890092385], [-118.62498249977304, 34.73389546851594], [-118.62675935803064, 34.73342369648665], [-118.62747830851308, 34.733386106027226], [-118.62823155106078, 34.73341460557773], [-118.63155899161566, 34.73435993742725], [-118.63312479995851, 34.73460380954145], [-118.63406818644904, 34.73455931017863], [-118.63481818181857, 34.73432237973112], [-118.63589991498918, 34.73468523869639], [-118.63891803567036, 34.73455023872928], [-118.64038145194984, 34.73483382693996], [-118.64087245669131, 34.735103022134645], [-118.64090691586772, 34.735403035758374], [-118.64045451256213, 34.735971862855926], [-118.64138717203849, 34.73636381363903], [-118.64171429239647, 34.73687692518576], [-118.64186783516095, 34.73672393392315], [-118.64140478506788, 34.735991054355004], [-118.64156059972142, 34.735802174157726], [-118.64184084561342, 34.735786162819714], [-118.6432576167749, 34.736256060260544], [-118.64422682738407, 34.73603380569153], [-118.64585234822562, 34.73692412746184], [-118.64754936649359, 34.73732187636423], [-118.64817733620539, 34.73714979918323], [-118.64876791469696, 34.73723278739559], [-118.65113335631783, 34.73814206002154], [-118.65383987081974, 34.73849396013948], [-118.65456573576239, 34.73795883353337], [-118.65485410011131, 34.73792471478252], [-118.6551956544785, 34.73825006259377], [-118.65491603577689, 34.73901243436991], [-118.660721690654, 34.7416163531032], [-118.66205915438721, 34.74139525372864], [-118.66285410011129, 34.74148835114605], [-118.66550384593873, 34.74218056198296], [-118.66688473293097, 34.74279799990152], [-118.6676220277569, 34.74290783471032], [-118.66886273683848, 34.743509446989016], [-118.67294580392753, 34.74500663283228], [-118.67451773647487, 34.7452247147823], [-118.67613261154446, 34.74579653951029], [-118.67801307084945, 34.746046171429775], [-118.6781302270347, 34.782051952511], [-118.69115658409065, 34.78207662030422], [-118.69156102425801, 34.818008150724005], [-118.69144534122944, 34.81809381608004], [-118.64348100000036, 34.81845799911506], [-118.64341500000033, 34.81817899911506], [-118.64196000000013, 34.81815599911514], [-118.6226530000003, 34.81828799911497], [-118.57187900000032, 34.81802499911496], [-118.56971400000026, 34.818254999114956], [-118.56311800000039, 34.81802499911496], [-118.55904000000034, 34.81834099911494], [-118.54727000000031, 34.81843099911489], [-118.51952600000038, 34.81799399911496], [-118.48958900000032, 34.81784999911495], [-118.47217200000044, 34.81824199911487], [-118.44913100000032, 34.81834399911487], [-118.44000500000024, 34.81870299911494], [-118.41398100000029, 34.818856999114935], [-118.39133600000032, 34.81917899911497], [-118.34241200000035, 34.819429999114995], [-118.30865500000026, 34.820062999114974], [-118.20410700000035, 34.82015899911495], [-118.16389232563425, 34.8205996991847], [-118.17017875019157, 34.82047176058379]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Northwest Antelope Valley", "population": 0.015110305228165607, "cases": 2.0, "resource_uri": "/1.0/boundary/northwest-antelope-valley-la-county-neighborhood-current/", "external_id": "northwest-antelope-valley", "slug": "northwest-antelope-valley-la-county-neighborhood-current", "metadata": {"sqmi": 213.858460558, "type": "unincorporated-area", "name": "Northwest Antelope Valley", "slug": "northwest-antelope-valley"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.15325186465111, 34.645781280971384], [-118.15316057422685, 34.630255115683816], [-118.15206720448803, 34.630260379679385], [-118.15211361894767, 34.62385544115578], [-118.14881354577456, 34.623898320242894], [-118.14884383317164, 34.61844136609166], [-118.14773874182593, 34.618456192360235], [-118.14774771490158, 34.61663743218073], [-118.1488544839002, 34.61662118837451], [-118.14889184350199, 34.60914662095277], [-118.15657068775059, 34.60910155823524], [-118.15654850780983, 34.60544157879706], [-118.18324221711956, 34.60543662662357], [-118.18364847740264, 34.61658239508336], [-118.18351697317179, 34.62377041579368], [-118.20117112718746, 34.62365879434688], [-118.20117299090938, 34.6231065429864], [-118.2018377064439, 34.62310548739162], [-118.20184017974275, 34.62365812913613], [-118.2099536110527, 34.62364143360614], [-118.2100108254017, 34.63093737226003], [-118.18333045923862, 34.63113488650179], [-118.18303341160677, 34.64568656461452], [-118.15325186465111, 34.645781280971384]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Northwest Palmdale", "population": null, "cases": null, "resource_uri": "/1.0/boundary/northwest-palmdale-la-county-neighborhood-current/", "external_id": "northwest-palmdale", "slug": "northwest-palmdale-la-county-neighborhood-current", "metadata": {"sqmi": 5.78532939766, "type": "unincorporated-area", "name": "Northwest Palmdale", "slug": "northwest-palmdale"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.00653214992184, 34.02891766137121], [-118.00837181154893, 34.02577308195151], [-118.01916201529615, 34.01424998488637], [-118.00543457248756, 33.99882143171054], [-118.00579439370675, 33.99820936382009], [-118.00217540136033, 33.994044743517016], [-118.00226193583869, 33.98961348851785], [-117.99338931734836, 33.989647538172775], [-117.9935680393181, 33.982417488002], [-117.99849856516481, 33.982406177667116], [-118.00800300000024, 33.982749999124906], [-118.00802800000027, 33.98609099912482], [-118.01809900000026, 33.9861119991249], [-118.01807300000024, 33.990010999124934], [-118.02862668113079, 33.989946095966886], [-118.02860593670671, 34.003776358841826], [-118.029146310406, 34.00377997678449], [-118.02917500000028, 34.0040859991247], [-118.03650000000023, 34.004211999124614], [-118.03650000000017, 34.00382888615315], [-118.0373524755531, 34.00383455401015], [-118.03733337780452, 34.000786538807], [-118.04602345558885, 34.00089283320811], [-118.04652546875266, 34.00134123584485], [-118.04645976121311, 34.001709407822965], [-118.04930700000025, 34.00188399912467], [-118.04951700000031, 34.001735999124705], [-118.05030100000022, 34.002241999124685], [-118.05038800000025, 34.001646999124674], [-118.0547760000002, 34.003894999124675], [-118.05419200000016, 34.004430999124615], [-118.05450700000026, 34.004615999124574], [-118.05602500000018, 34.0046069991245], [-118.05629727763699, 34.00217122619532], [-118.0564976472851, 34.00195972177432], [-118.06135700000024, 34.005210999124635], [-118.06163600000028, 34.00483499912473], [-118.06198400000028, 34.00511099912466], [-118.06201500000027, 34.00529399912458], [-118.06096600000035, 34.00653499912455], [-118.05902528613947, 34.00812133421502], [-118.05982700000023, 34.0088359991246], [-118.06008200000029, 34.00879699912457], [-118.06192175728445, 34.007505528182506], [-118.06498896714515, 34.00957724309083], [-118.06214500000023, 34.012197999124666], [-118.05878930758688, 34.012596501309204], [-118.05810296229279, 34.01310056280933], [-118.05753678025181, 34.013172428382944], [-118.05686100000023, 34.01264799912456], [-118.05663200000029, 34.01217299912454], [-118.05647900000027, 34.012773999124526], [-118.05582310119458, 34.01176051607095], [-118.05570129232116, 34.01125000052244], [-118.03121541310257, 34.027932693573334], [-118.03056500000035, 34.02709699912442], [-118.02808704592908, 34.02822328189705], [-118.02774612841255, 34.02767664366975], [-118.02697386053633, 34.02798069157821], [-118.0269350000003, 34.02768099912427], [-118.02642200711665, 34.027870661986384], [-118.02608886868526, 34.02735029560403], [-118.02413251201355, 34.0271296375038], [-118.02170719370008, 34.02790386699979], [-118.02156295706129, 34.028087611253746], [-118.0204907147696, 34.02797837617184], [-118.01955858934495, 34.028359993538615], [-118.01682856441147, 34.02762818092423], [-118.01546778120643, 34.027463873192666], [-118.0139299696135, 34.02785830050022], [-118.01281300000015, 34.027876999124345], [-118.01238168734996, 34.02814625051266], [-118.01159948926359, 34.028180679322006], [-118.0107646413794, 34.02867617719228], [-118.00979900000024, 34.02860999912437], [-118.00815025208153, 34.02902260012305], [-118.00647062157866, 34.02902351039765], [-118.00653214992184, 34.02891766137121]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "North Whittier", "population": 0.08360039013515397, "cases": 6.0, "resource_uri": "/1.0/boundary/north-whittier-la-county-neighborhood-current/", "external_id": "north-whittier", "slug": "north-whittier-la-county-neighborhood-current", "metadata": {"sqmi": 5.45993969843, "type": "unincorporated-area", "name": "North Whittier", "slug": "north-whittier"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.08218100000019, 33.93345299912549], [-118.08225900000012, 33.9316829991254], [-118.0726800000002, 33.931700999125475], [-118.072587, 33.9278959991255], [-118.06868400000026, 33.92790099912559], [-118.06825100000017, 33.92759499912558], [-118.06847800000014, 33.9304139991255], [-118.06395800000023, 33.93041499912552], [-118.0638160000002, 33.91708799912567], [-118.06041600000019, 33.91709399912568], [-118.0594350000002, 33.9155359991257], [-118.0574640000002, 33.913641999125744], [-118.05539500000016, 33.91237799912574], [-118.05539800000014, 33.91251399912577], [-118.05520700000025, 33.91251799912573], [-118.055209, 33.91227399912574], [-118.04978800000015, 33.90923799912574], [-118.04979200000017, 33.90693899912574], [-118.05037500000013, 33.906071999125786], [-118.0530980000001, 33.90621399912582], [-118.05290700000025, 33.90320999912578], [-118.0537980000002, 33.90321399912587], [-118.0537970000002, 33.902311999125885], [-118.04431100000022, 33.902434999125866], [-118.044293, 33.89891799912606], [-118.04224800000023, 33.89886499912586], [-118.04207800000017, 33.89693099912586], [-118.04227000000014, 33.895203999125926], [-118.04652900000019, 33.895165999125915], [-118.04650500000028, 33.89378299912596], [-118.05827200000016, 33.90014599912597], [-118.05893500000013, 33.90034299912586], [-118.06175200000015, 33.90227299912586], [-118.0639550000001, 33.90227099912588], [-118.06396900000021, 33.89568499912587], [-118.06276100000015, 33.89576399912595], [-118.06274100000023, 33.89506199912593], [-118.055357, 33.89506099912602], [-118.05537600000018, 33.88721599912604], [-118.06408500000022, 33.887164999126064], [-118.06409400000015, 33.887723999126116], [-118.06846900000018, 33.88771099912609], [-118.06848300000031, 33.886022999126034], [-118.07283200000028, 33.88615099912607], [-118.07270800000029, 33.88039199912627], [-118.09571000000018, 33.88031199912615], [-118.09552900000013, 33.88756699912602], [-118.0998880000001, 33.887536999126056], [-118.09988400000015, 33.88706899912604], [-118.10050500000018, 33.887076999126016], [-118.10051700000024, 33.887533999126], [-118.10425300000014, 33.88760999912601], [-118.10440000000014, 33.887522999126055], [-118.10437200000013, 33.88700699912595], [-118.10827000000015, 33.88707399912596], [-118.1082520000003, 33.905828999125774], [-118.10836400000011, 33.90663699912581], [-118.10935900000018, 33.90970999912575], [-118.10980000000029, 33.90971399912575], [-118.11088000000014, 33.91378199912574], [-118.11128100000012, 33.91702399912566], [-118.11172800000018, 33.91908399912559], [-118.1117980000001, 33.920984999125544], [-118.11154100000016, 33.92190799912566], [-118.10550100000019, 33.93321399912548], [-118.10471800000015, 33.93201099912548], [-118.09026200000014, 33.93210199912551], [-118.08848400000011, 33.929551999125565], [-118.08380700000014, 33.934025999125495], [-118.08215900000023, 33.93394899912554], [-118.08218100000019, 33.93345299912549]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Norwalk", "population": 1.0762070971495055, "cases": 185.0, "resource_uri": "/1.0/boundary/norwalk-la-county-neighborhood-current/", "external_id": "norwalk", "slug": "norwalk-la-county-neighborhood-current", "metadata": {"sqmi": 9.76375938611, "type": "standalone-city", "name": "Norwalk", "slug": "norwalk"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.55731700000013, 34.126805999122936], [-118.55641700000012, 34.12660599912295], [-118.55551700000011, 34.128205999123004], [-118.55351700000011, 34.12860599912305], [-118.554717, 34.12700599912304], [-118.54931700000012, 34.1264059991231], [-118.54301700000013, 34.127105999123145], [-118.53987700000012, 34.128293999123], [-118.538469, 34.127973999123], [-118.53686900000012, 34.129189999122886], [-118.536277, 34.12912599912299], [-118.53482, 34.12834199912302], [-118.534196, 34.12824599912297], [-118.53243600000013, 34.12894999912295], [-118.531636, 34.12896599912297], [-118.52978000000012, 34.12947799912296], [-118.52711600000013, 34.12910599912314], [-118.528616, 34.12550599912302], [-118.529216, 34.122005999123026], [-118.5283160000001, 34.118905999123136], [-118.52751600000012, 34.11850599912308], [-118.5279160000001, 34.11820599912323], [-118.525616, 34.10730699912323], [-118.525516, 34.104406999123285], [-118.52071500000018, 34.08860699912339], [-118.5180150000001, 34.08310699912364], [-118.519515, 34.08280699912348], [-118.518415, 34.081806999123486], [-118.520515, 34.081806999123486], [-118.51751500000012, 34.07600799912372], [-118.51521500000011, 34.07500799912373], [-118.516515, 34.07220799912368], [-118.511514, 34.06690799912384], [-118.50711400000013, 34.06410799912384], [-118.506814, 34.06150799912376], [-118.506807, 34.05532399912385], [-118.50996100000012, 34.051087999123936], [-118.509541, 34.050902999123934], [-118.50927100000014, 34.050516999123886], [-118.509212, 34.04898999912393], [-118.509297, 34.048561999124054], [-118.510059, 34.047279999123994], [-118.51000600000015, 34.04668699912401], [-118.509166, 34.04618899912392], [-118.508427, 34.0462399991239], [-118.508014, 34.046607999124], [-118.503885, 34.05227999912387], [-118.50294, 34.05272199912398], [-118.500614, 34.05290799912391], [-118.4995440000001, 34.053288999123865], [-118.499256, 34.053689999123996], [-118.499054, 34.05440699912382], [-118.498628, 34.0549209991238], [-118.496359, 34.056018999123985], [-118.496172, 34.05633599912391], [-118.49558300000014, 34.059986999123865], [-118.495285, 34.06041999912394], [-118.494522, 34.060636999123986], [-118.493722, 34.060404999123854], [-118.49347800000011, 34.059944999123886], [-118.49345900000013, 34.05891999912381], [-118.49271400000013, 34.05840799912377], [-118.49311400000012, 34.056407999123955], [-118.49251400000011, 34.05350799912392], [-118.493014, 34.05180799912383], [-118.493814, 34.05010799912388], [-118.494468, 34.05055999912406], [-118.49464100000017, 34.05016199912407], [-118.495405, 34.04958999912397], [-118.504024, 34.04062899912412], [-118.505076, 34.04091099912412], [-118.505774, 34.040693999124095], [-118.506589, 34.04039799912408], [-118.508096, 34.03912999912413], [-118.508323, 34.0392049991241], [-118.508116, 34.039076999124106], [-118.508263, 34.03834999912413], [-118.508217, 34.03809099912416], [-118.508085, 34.03809899912426], [-118.507688, 34.03626899912416], [-118.508704, 34.03396199912421], [-118.508802, 34.03335799912426], [-118.5085930000001, 34.03306299912418], [-118.509473, 34.03270199912421], [-118.510697, 34.031413999124204], [-118.5126410000001, 34.029928999124216], [-118.514711, 34.02787299912423], [-118.515241, 34.0269399991243], [-118.51770742009592, 34.02482346826698], [-118.52643799494163, 34.030560014398056], [-118.52854900216622, 34.031451999655935], [-118.52980800931614, 34.03218998934628], [-118.53067400420473, 34.03235997898699], [-118.53607500282524, 34.0344879799142], [-118.54026597614528, 34.03647098194052], [-118.54530300437447, 34.03859298509039], [-118.54722697564338, 34.03893901476119], [-118.55009201924368, 34.03917398032471], [-118.55280601355322, 34.03856399583249], [-118.55425300367625, 34.03792502208253], [-118.55626299570116, 34.03792502208253], [-118.56422899121164, 34.040856988252735], [-118.56707066298694, 34.04132731565544], [-118.57010700000018, 34.047116999124036], [-118.570395, 34.06934599912369], [-118.59920399648759, 34.07433699810336], [-118.564752, 34.13016799912299], [-118.56586737033591, 34.13059338597857], [-118.56600500000015, 34.13078999912298], [-118.564869, 34.13128599912294], [-118.56405300000011, 34.13190999912294], [-118.563517, 34.13090599912291], [-118.561017, 34.130505999122995], [-118.559917, 34.12990599912287], [-118.55731700000013, 34.126805999122936]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Pacific Palisades", "population": 0.2513744168134777, "cases": 40.0, "resource_uri": "/1.0/boundary/pacific-palisades-la-county-neighborhood-current/", "external_id": "pacific-palisades", "slug": "pacific-palisades-la-county-neighborhood-current", "metadata": {"sqmi": 22.8376013762, "type": "segment-of-a-city", "name": "Pacific Palisades", "slug": "pacific-palisades"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.414822, 34.29291499912091], [-118.411615, 34.290000999120984], [-118.41042300000012, 34.29093699912096], [-118.41019269089901, 34.290837665060394], [-118.4094, 34.28901199912111], [-118.40767933041626, 34.28736472062902], [-118.408326, 34.28688999912116], [-118.39459700000012, 34.273864999121294], [-118.39391400000011, 34.27350199912125], [-118.397314, 34.27100199912122], [-118.400014, 34.26810199912133], [-118.4014140000001, 34.26640199912143], [-118.4018140000001, 34.2645019991213], [-118.39611400000013, 34.25920199912144], [-118.395914, 34.2588019991214], [-118.395414, 34.25920199912153], [-118.39497, 34.25914299912147], [-118.39361600000015, 34.25827199912145], [-118.390679, 34.25729999912136], [-118.390814, 34.25720199912151], [-118.387514, 34.25670199912138], [-118.39001400000011, 34.2523019991214], [-118.398714, 34.24410299912155], [-118.403914, 34.23770299912169], [-118.409699, 34.23339499912173], [-118.410514, 34.23380299912176], [-118.42235900000014, 34.244721999121644], [-118.440271, 34.261642999121456], [-118.44190200000014, 34.26379799912131], [-118.444053, 34.267475999121345], [-118.44766700000011, 34.27094499912125], [-118.45030300000013, 34.27411299912133], [-118.44706604532324, 34.27645903626253], [-118.443734, 34.27330999912135], [-118.435976, 34.27897299912118], [-118.43571200000012, 34.27930999912122], [-118.433776, 34.27745299912119], [-118.4321750000001, 34.27867299912124], [-118.43037, 34.2803499991212], [-118.4305690000001, 34.28054899912108], [-118.427921, 34.28227599912114], [-118.427291, 34.28293999912132], [-118.417123, 34.29035599912113], [-118.418632, 34.29176399912108], [-118.41582319720133, 34.29381818342135], [-118.414822, 34.29291499912091]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Pacoima", "population": 0.7697924907198929, "cases": 253.0, "resource_uri": "/1.0/boundary/pacoima-la-county-neighborhood-current/", "external_id": "pacoima", "slug": "pacoima-la-county-neighborhood-current", "metadata": {"sqmi": 7.1375539566, "type": "segment-of-a-city", "name": "Pacoima", "slug": "pacoima"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.29187247297372, 34.580158148031856], [-118.29988358251455, 34.58015685668385], [-118.30044003063601, 34.580156990568774], [-118.3004333467109, 34.58044746640223], [-118.29187247297372, 34.580158148031856]]], [[[-118.20119545371689, 34.63096851389076], [-118.20176950793864, 34.63096648595754], [-118.19156142906914, 34.631066254067406], [-118.19228540620583, 34.63104930087943], [-118.20119545371689, 34.63096851389076]]], [[[-118.2100108254016, 34.63093737225999], [-118.21001043505741, 34.63108058932556], [-118.2100090000002, 34.6309499991171], [-118.20645495553168, 34.63094993390676], [-118.2100108254016, 34.63093737225999]]], [[[-118.1833304592385, 34.63113488650176], [-118.18337280688687, 34.63113455148007], [-118.18326499572673, 34.63539394090064], [-118.1833304592385, 34.63113488650176]]], [[[-118.1831018405073, 34.64297486737569], [-118.18315615199168, 34.640822432930804], [-118.18310029300883, 34.64303619157618], [-118.1831018405073, 34.64297486737569]]], [[[-118.2100108254016, 34.63093737225999], [-118.2099536110526, 34.62364143360609], [-118.20184017974265, 34.62365812913608], [-118.20183770644378, 34.62310548739157], [-118.20117299090931, 34.62310654298637], [-118.20117112718737, 34.62365879434685], [-118.18351697317169, 34.62377041579363], [-118.18364847740254, 34.61658239508331], [-118.18324221711946, 34.60543662662351], [-118.15654850780973, 34.60544157879703], [-118.15657068775049, 34.60910155823522], [-118.14889184350189, 34.609146620952764], [-118.14885448390008, 34.61662118837448], [-118.14774771490151, 34.61663743218068], [-118.14773874182583, 34.61845619236012], [-118.14884383317151, 34.618441366091595], [-118.14881354577446, 34.62389832024284], [-118.15211361894757, 34.62385544115574], [-118.15206720448796, 34.630260379679335], [-118.15316057422672, 34.63025511568379], [-118.1532514414022, 34.64572012966785], [-118.1123270000002, 34.64593699911689], [-118.11225600000019, 34.660465999116724], [-118.07671800000014, 34.660656999116725], [-118.02307100000013, 34.66067299911671], [-118.0194860000001, 34.6609469991167], [-118.01791400000015, 34.66073399911685], [-118.01404700000018, 34.66068299911676], [-117.995362, 34.660777999116924], [-117.99342886617289, 34.66063478935531], [-117.99101300000021, 34.66078999911666], [-117.98610400000022, 34.66065799911663], [-117.95203600000016, 34.66075999911669], [-117.94734800000018, 34.6609469991168], [-117.93422400000014, 34.661030999116775], [-117.91586700000023, 34.66100599911675], [-117.91574700000011, 34.60258199911747], [-117.91637003417407, 34.5933371252236], [-117.91627407918388, 34.587181844778456], [-117.91678425227934, 34.587186094083734], [-117.91679700000014, 34.58699399911759], [-117.91856500000016, 34.58694399911769], [-117.93249200000014, 34.58705899911759], [-117.93390201305874, 34.58732867038053], [-117.95703200000013, 34.587091999117746], [-117.9735472202019, 34.58711414907374], [-117.97409586406692, 34.57220303335681], [-117.97393691911871, 34.565073374455466], [-117.97508119363475, 34.56507355951876], [-117.97505232420923, 34.561434479137844], [-117.97830985470016, 34.561428426812654], [-117.97827549978605, 34.5577832172362], [-117.97922368161868, 34.55777937133971], [-117.97924462834732, 34.553964382440356], [-117.98145150336605, 34.55395534202723], [-117.98148663213419, 34.548325773201285], [-117.98369910384747, 34.54831548389701], [-117.9837108168265, 34.546500739959704], [-117.9859207479446, 34.5464904918933], [-117.98593427197562, 34.5446757755649], [-117.98814906910484, 34.544665487530615], [-117.98806712696506, 34.54103604723697], [-117.9885663995649, 34.54103298502215], [-117.98951010909076, 34.540479246514025], [-117.99049706097915, 34.539453015067615], [-117.99125710759807, 34.538291510342816], [-117.99256697947766, 34.53788437015699], [-117.99256403614946, 34.5373815448976], [-117.99474719230184, 34.537371079636046], [-117.99473901109035, 34.53547183919107], [-117.99692128784545, 34.53546059085959], [-117.9968980751919, 34.52838963179581], [-117.99678768213994, 34.5282612321869], [-118.00127925279551, 34.52826134095408], [-118.001278581853, 34.52464553658171], [-118.00193918639168, 34.52464733257224], [-118.00207548550611, 34.52375060286615], [-118.00244292551488, 34.52317459590502], [-118.002872719503, 34.52193932741441], [-118.00249782000284, 34.52101328191474], [-118.00417367912004, 34.52110493778565], [-118.00602682454122, 34.521606532205034], [-118.00834171749287, 34.52271835909606], [-118.0097779931878, 34.52458435652425], [-118.01004026052068, 34.52458574525859], [-118.0100317602977, 34.52503828152657], [-118.01385216857152, 34.53065545924757], [-118.01492300437191, 34.53163612329386], [-118.02020661317988, 34.53546062229385], [-118.02770154105536, 34.53550652252169], [-118.02771608208437, 34.540781348234034], [-118.03428812399387, 34.54082952638254], [-118.03429266826393, 34.542708652575115], [-118.04962498401953, 34.542708640276935], [-118.04958952753908, 34.53896733427517], [-118.048688, 34.53777099911817], [-118.04988013968091, 34.53663391547173], [-118.04950928511379, 34.53545751751956], [-118.04963536360995, 34.53545789879189], [-118.04977600000018, 34.53400399911826], [-118.05014387623943, 34.533971967677886], [-118.0501431833918, 34.53384583295241], [-118.04962687590839, 34.533848758567416], [-118.04961556884767, 34.53183339133171], [-118.04979535170844, 34.53183395220223], [-118.04982400000024, 34.53127499911821], [-118.05085300000013, 34.531038999118266], [-118.05170400000021, 34.53105799911819], [-118.05372800000018, 34.5315279991183], [-118.05397600000019, 34.53191299911831], [-118.05487800000017, 34.53219099911827], [-118.05492600000014, 34.53293099911819], [-118.05515135018554, 34.5329339192859], [-118.055150000647, 34.53238866822513], [-118.05539500000016, 34.5323269991181], [-118.05616800000016, 34.53233599911825], [-118.05866300000015, 34.53290499911826], [-118.05993300000021, 34.53291799911826], [-118.062736, 34.53261399911824], [-118.06284925072634, 34.53546784079708], [-118.07186384586858, 34.53542845157009], [-118.07416546425915, 34.53511311055916], [-118.0731001403281, 34.534544911133835], [-118.07164420623825, 34.53425037870527], [-118.07150273880838, 34.52812121316137], [-118.05910963726392, 34.52822218830862], [-118.05701400000018, 34.527993999118294], [-118.05513800000014, 34.52733999911824], [-118.052518, 34.5258169991183], [-118.0488110000002, 34.52415699911831], [-118.04629600000014, 34.52237199911838], [-118.045197, 34.52182999911834], [-118.04513380462846, 34.51374889864877], [-118.05390502297355, 34.51372217891748], [-118.05391607564431, 34.51006393050786], [-118.05411200000025, 34.509989999118396], [-118.059867, 34.50981299911848], [-118.05993969090167, 34.51186643242555], [-118.05939194447679, 34.511867917715676], [-118.05938636298913, 34.51370517154487], [-118.07962138342744, 34.51357358584661], [-118.07966900000018, 34.527639999118314], [-118.07982200000018, 34.529862999118215], [-118.080829, 34.534239999118256], [-118.08247600000011, 34.53435499911823], [-118.08446400000014, 34.53365599911823], [-118.08467500000022, 34.53444299911825], [-118.08539700000017, 34.53501699911809], [-118.08623400000016, 34.53442599911823], [-118.08815800000016, 34.53367599911829], [-118.08919800000018, 34.534303999118244], [-118.09316500000021, 34.534798999118216], [-118.0938680000002, 34.53469199911821], [-118.09602700000013, 34.533836999118265], [-118.0974020000001, 34.53363899911824], [-118.09783500000016, 34.5337259991182], [-118.09808700000013, 34.53410199911828], [-118.09793200000018, 34.53507699911811], [-118.09901300000018, 34.53604299911823], [-118.1006, 34.53645899911814], [-118.10184200000026, 34.536382999118196], [-118.10207200000019, 34.536685999118234], [-118.10241700000013, 34.53661099911816], [-118.10221800000016, 34.535943999118246], [-118.10264000000015, 34.53582599911821], [-118.10632500000017, 34.540490999118205], [-118.10641371441307, 34.541088945774966], [-118.10681652355278, 34.54187172222787], [-118.1134207525761, 34.55111079526167], [-118.113958, 34.552581999118004], [-118.11412300000016, 34.55529399911803], [-118.11474100000011, 34.55714699911796], [-118.11482545884675, 34.55794793469711], [-118.12378996331493, 34.557909396892875], [-118.12379956940038, 34.556603915984965], [-118.12669300000012, 34.55713899911798], [-118.12932500000022, 34.55460499911803], [-118.12969092474145, 34.55402499069194], [-118.1292014222581, 34.553098852997095], [-118.12994915463123, 34.55309833830823], [-118.12965100000014, 34.55224299911805], [-118.13149700000017, 34.55211099911799], [-118.13176900000028, 34.55533199911793], [-118.13035987682741, 34.55740107300051], [-118.13028800000016, 34.55791999911792], [-118.12936082110676, 34.557923548127974], [-118.1293532142885, 34.55887713292797], [-118.13189819970898, 34.55888099335341], [-118.13147969897166, 34.55815642397879], [-118.13055660866328, 34.55789135079905], [-118.13785461721974, 34.557953126511926], [-118.13783478388068, 34.55539205328969], [-118.13889005496871, 34.555393733641964], [-118.13889200000011, 34.557960999117924], [-118.14271634722702, 34.55802468233111], [-118.14276458163239, 34.56486660666092], [-118.14666100000012, 34.56473599911787], [-118.151674, 34.56482399911789], [-118.15168600000017, 34.56085899911796], [-118.15258800000022, 34.56092599911774], [-118.15402500000016, 34.561300999117904], [-118.1567030000001, 34.5627309991179], [-118.16123300000027, 34.56257899911786], [-118.16305800000015, 34.56296399911796], [-118.165539, 34.56434099911781], [-118.16671900000014, 34.56542899911784], [-118.168116, 34.56596599911785], [-118.16819500000022, 34.558077999117934], [-118.17715800000018, 34.55813499911791], [-118.17858500000011, 34.55787399911791], [-118.1805880000002, 34.55801099911802], [-118.1852740000001, 34.55767199911798], [-118.18527600000016, 34.55777399911783], [-118.1958398055083, 34.55829188806022], [-118.20006170835192, 34.55830488627748], [-118.20002003023109, 34.55709541436237], [-118.19413274516108, 34.556928637427426], [-118.19415428833025, 34.55622642500449], [-118.19376700000012, 34.556235999117945], [-118.19449390410192, 34.54515644683797], [-118.19837467183655, 34.54521774112045], [-118.19842447138694, 34.54112028532187], [-118.19868514772689, 34.54112488629627], [-118.19869300000023, 34.54099799911823], [-118.20700462090119, 34.540982193511795], [-118.20698646804898, 34.5426966261733], [-118.22018208969553, 34.54275203985883], [-118.22024775908247, 34.53908897824578], [-118.23788296951264, 34.53894795222949], [-118.25550542881388, 34.53929287467369], [-118.25467739592202, 34.55830403375051], [-118.2872979936549, 34.55815273972216], [-118.2879236038457, 34.5800244964525], [-118.28773856816031, 34.580018233912014], [-118.28770325132314, 34.583752115012324], [-118.28335460120135, 34.58375450748239], [-118.28331745776077, 34.58747052355049], [-118.27458994756854, 34.58739517740326], [-118.27465731369755, 34.583757497626685], [-118.26146388698443, 34.58374354880068], [-118.26143022191222, 34.587698588559824], [-118.26647844117237, 34.58766299223127], [-118.26652863640926, 34.59131859616101], [-118.27091756447199, 34.591300322981695], [-118.27116418127054, 34.60406462727873], [-118.26231985822527, 34.60403995705297], [-118.26233746382294, 34.606753121603376], [-118.2652550683681, 34.606761654683396], [-118.265282739086, 34.60947483722961], [-118.26496429416262, 34.60947328241407], [-118.26491284344658, 34.609693985227764], [-118.26252782832937, 34.60951997328529], [-118.26235352279367, 34.60931997860844], [-118.26141523138892, 34.6091359457761], [-118.25821941081875, 34.607991466836445], [-118.25536368547868, 34.60662807834248], [-118.25357936379582, 34.60531699033533], [-118.25084544030894, 34.60444074211685], [-118.24827646224188, 34.60316552258643], [-118.24477645489605, 34.600999385552576], [-118.2436169901627, 34.60082270411546], [-118.24196854779979, 34.60113195905224], [-118.24106525635192, 34.601120486294825], [-118.24005185614554, 34.600618256775576], [-118.23584847609952, 34.599195875866414], [-118.23503848719737, 34.5986250056905], [-118.23457609739839, 34.59767536836296], [-118.23575237907421, 34.59762547931239], [-118.23557145369905, 34.594662141906646], [-118.22683486147187, 34.59463290391921], [-118.22725421857842, 34.60189220388955], [-118.21849363645289, 34.60185822847837], [-118.2185721997492, 34.60911310885985], [-118.22737954354021, 34.609171833059364], [-118.2274862800374, 34.61539638667728], [-118.22575397362418, 34.61604056969027], [-118.22529719749369, 34.61589317259373], [-118.22533184581086, 34.61608276183929], [-118.22386311284846, 34.615924865510394], [-118.22310509964751, 34.61488014068945], [-118.2191847033862, 34.61405229432346], [-118.21862103701461, 34.61360461928553], [-118.21863516038212, 34.61490491279582], [-118.22201500068208, 34.616158135823575], [-118.22261172137495, 34.617281009004365], [-118.2239340395094, 34.617589907403385], [-118.22750665838988, 34.61703668107787], [-118.2283240781995, 34.61644939780434], [-118.27119907234224, 34.616731398467884], [-118.27103055191192, 34.63085342663369], [-118.27103380034269, 34.631115698330255], [-118.27120287528811, 34.6311134430185], [-118.271235, 34.64552699911695], [-118.23606000000018, 34.645604999116905], [-118.23619014947559, 34.63819259062941], [-118.22300586486125, 34.638224110019756], [-118.2231899594062, 34.63085655916249], [-118.2100108254016, 34.63093737225999]], [[-118.15676163450048, 34.59561573808391], [-118.16086984597614, 34.59261019364419], [-118.16086256574039, 34.59211150854596], [-118.15920546000159, 34.59332770312413], [-118.15854059852568, 34.59270444832841], [-118.15597167876311, 34.59458145575731], [-118.15532838611034, 34.59397744636784], [-118.15626513392769, 34.59328779458187], [-118.15594263632332, 34.59298321832868], [-118.15753357586146, 34.591812921967815], [-118.15720972155938, 34.59151323697876], [-118.1613600582445, 34.58848959311948], [-118.16160517606376, 34.58803659287762], [-118.16159960219225, 34.58700690275352], [-118.15633440880376, 34.58704238708224], [-118.15630837014888, 34.585036383142786], [-118.15597129022326, 34.58455573571802], [-118.15539597382933, 34.58483103284462], [-118.15406624982457, 34.58445544092656], [-118.15405898969351, 34.58396637051578], [-118.15284698932685, 34.58369808979388], [-118.15284413443386, 34.58348103076938], [-118.15184584282649, 34.583479564075716], [-118.15185150624337, 34.58393291508831], [-118.15088905993203, 34.5842502075523], [-118.1509117257442, 34.584520872080034], [-118.14992496289257, 34.58455924647237], [-118.15011595982806, 34.587072315512756], [-118.14750749131117, 34.58708197672676], [-118.14755760159416, 34.59145748650218], [-118.1488201310414, 34.591453889082985], [-118.14882529251462, 34.591738698284345], [-118.14828458256703, 34.59174294986227], [-118.14833376513369, 34.595384723463674], [-118.14886797788799, 34.595380169535666], [-118.14886511993302, 34.5951686063395], [-118.15130579005684, 34.59344741993041], [-118.15356596540657, 34.59556738729844], [-118.14941251047965, 34.597024819962826], [-118.14941551148412, 34.59721083680312], [-118.1498142339077, 34.59720868365278], [-118.14982851513876, 34.59827474175783], [-118.15064194677782, 34.59785030835605], [-118.15586573404431, 34.59609811789557], [-118.15676163450048, 34.59561573808391]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Palmdale", "population": 1.613205439815132, "cases": 402.0, "resource_uri": "/1.0/boundary/palmdale-la-county-neighborhood-current/", "external_id": "palmdale", "slug": "palmdale-la-county-neighborhood-current", "metadata": {"sqmi": 134.417681526, "type": "standalone-city", "name": "Palmdale", "slug": "palmdale"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.38831000000013, 34.02951099912418], [-118.38776190953162, 34.02906290865564], [-118.392622, 34.02627799912433], [-118.392931, 34.02552099912424], [-118.39334200000013, 34.02551199912431], [-118.393446, 34.025370999124306], [-118.393937, 34.02570599912427], [-118.394197, 34.02555899912429], [-118.394084, 34.02530999912424], [-118.39835, 34.02291699912433], [-118.397455, 34.021661999124326], [-118.398931, 34.02078399912436], [-118.39910100000013, 34.02078699912441], [-118.399492, 34.021293999124296], [-118.400249, 34.02085999912442], [-118.400608, 34.02147199912433], [-118.401285, 34.021086999124364], [-118.400476, 34.01989699912444], [-118.40546, 34.01685399912427], [-118.40686400000011, 34.01857399912437], [-118.41845506919958, 34.01198505432663], [-118.43029800000014, 34.026819999124214], [-118.423911, 34.02930999912424], [-118.418411, 34.03200999912423], [-118.415111, 34.03200999912428], [-118.41121100000011, 34.03080999912419], [-118.408371, 34.03026399912414], [-118.40591100000012, 34.02980999912429], [-118.401211, 34.029409999124226], [-118.399911, 34.03130999912419], [-118.398211, 34.03540999912409], [-118.398211, 34.03630999912408], [-118.39851100000017, 34.037209999124116], [-118.394111, 34.0361099991241], [-118.38941, 34.03470999912416], [-118.39001, 34.032809999124076], [-118.39091, 34.03120999912416], [-118.38831000000013, 34.02951099912418]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Palms", "population": 0.43876143913752036, "cases": 105.0, "resource_uri": "/1.0/boundary/palms-la-county-neighborhood-current/", "external_id": "palms", "slug": "palms-la-county-neighborhood-current", "metadata": {"sqmi": 1.94535901621, "type": "segment-of-a-city", "name": "Palms", "slug": "palms"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.39190700000013, 33.804214999127026], [-118.37441700000014, 33.80421299912709], [-118.3675650000002, 33.80399799912696], [-118.3664750000002, 33.80412599912705], [-118.36228900000015, 33.8040769991272], [-118.36104900000018, 33.80339899912706], [-118.3519740000002, 33.795781999127186], [-118.36720300000019, 33.79511599912726], [-118.36750600000016, 33.79441599912723], [-118.36845300000012, 33.79442199912717], [-118.36881500000018, 33.795469999127135], [-118.36971700000028, 33.79489099912716], [-118.37169700000015, 33.79470699912734], [-118.37500500000013, 33.794932999127106], [-118.37768200000022, 33.79490699912715], [-118.37853800000018, 33.79546599912712], [-118.37862200000022, 33.79490999912719], [-118.379225, 33.79440199912726], [-118.38142300000015, 33.7938349991272], [-118.381439, 33.79358299912725], [-118.38283700000015, 33.79303599912715], [-118.38420600000012, 33.79361499912725], [-118.38495300000015, 33.791113999127255], [-118.38629600000012, 33.78525099912736], [-118.387306, 33.78201599912737], [-118.39386400000014, 33.78178099912727], [-118.39995600000016, 33.78181399912731], [-118.39997900000023, 33.781667999127315], [-118.40380900000021, 33.78135099912737], [-118.40365400000015, 33.76471999912762], [-118.405264, 33.76414899912759], [-118.40765100000033, 33.764218999127635], [-118.41050400000019, 33.763472999127536], [-118.41182500000016, 33.76338599912765], [-118.41778172359771, 33.7623476303598], [-118.41879498810833, 33.76271100465284], [-118.41988700450626, 33.76261298834187], [-118.42242401176804, 33.76343200064034], [-118.42248099065397, 33.763691009925765], [-118.42211702026268, 33.764420002949926], [-118.42192998430711, 33.76556599934519], [-118.42291598735747, 33.76628299681436], [-118.42424702044922, 33.76620497309506], [-118.42467501974573, 33.76725500505071], [-118.42301300403885, 33.76776097545447], [-118.42248998732019, 33.76828699106183], [-118.42216700174171, 33.76837301181775], [-118.42187900319857, 33.769340021906146], [-118.42195297578739, 33.76987198267881], [-118.42262798881433, 33.77141598948324], [-118.42319099071621, 33.77209999917625], [-118.42443700268167, 33.77266699959647], [-118.4267130013989, 33.77239499512661], [-118.4274309984976, 33.773147979260656], [-118.42803398558266, 33.77347101745131], [-118.42827000338782, 33.77411698860821], [-118.42754101036351, 33.77517201871165], [-118.42504898643298, 33.77719100740274], [-118.42461498935886, 33.77770597447271], [-118.42424802007882, 33.77861800493419], [-118.42397401634979, 33.780713018085315], [-118.42271500919999, 33.78268202529747], [-118.42192998430711, 33.783651981662516], [-118.41958001300098, 33.78537097625541], [-118.41861200328287, 33.78651297413243], [-118.41745800985106, 33.78698900826075], [-118.41587101897468, 33.78808202428837], [-118.41286097647317, 33.788996001396825], [-118.4107319759163, 33.789951015930264], [-118.40908300800608, 33.79090897674033], [-118.4073760089681, 33.79131798307476], [-118.40706701820369, 33.79212799870709], [-118.40692002004346, 33.79344298511343], [-118.40725500117686, 33.79410200406689], [-118.40776402308137, 33.794496015957726], [-118.4075350026835, 33.796182022774396], [-118.40782699974487, 33.79674802356505], [-118.40861702278562, 33.796433982040746], [-118.40876801946425, 33.79667999614158], [-118.40843498497787, 33.79711399321546], [-118.40724100636285, 33.79773297437378], [-118.40599299513816, 33.79921300488505], [-118.40512000284244, 33.79992100568808], [-118.40156900290191, 33.80163700139223], [-118.3999580209158, 33.802096988835174], [-118.39856601041953, 33.80215801885169], [-118.39618799687307, 33.803360994133065], [-118.39471900000021, 33.80348299912719], [-118.3940910000001, 33.80428599912713], [-118.39190700000013, 33.804214999127026]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Palos Verdes Estates", "population": 0.1352190914738881, "cases": 37.0, "resource_uri": "/1.0/boundary/palos-verdes-estates-la-county-neighborhood-current/", "external_id": "palos-verdes-estates", "slug": "palos-verdes-estates-la-county-neighborhood-current", "metadata": {"sqmi": 4.72720407914, "type": "standalone-city", "name": "Palos Verdes Estates", "slug": "palos-verdes-estates"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.42831500000011, 34.222202999121826], [-118.42781500000011, 34.221702999121845], [-118.42281500000016, 34.221702999121845], [-118.427215, 34.20730399912194], [-118.448916, 34.21170399912189], [-118.466216, 34.214903999121866], [-118.46611600000016, 34.21540399912202], [-118.4663160000001, 34.217403999121956], [-118.467616, 34.22110299912187], [-118.459516, 34.221202999121815], [-118.459916, 34.22200299912176], [-118.45971600000011, 34.224602999121814], [-118.45841600000011, 34.229702999121734], [-118.456716, 34.23940299912167], [-118.455616, 34.24270299912168], [-118.45311600000014, 34.24610299912159], [-118.451816, 34.25000299912155], [-118.451816, 34.25170199912146], [-118.45011600000012, 34.25000299912159], [-118.440816, 34.23660299912161], [-118.435815, 34.22990299912176], [-118.42831500000011, 34.222202999121826]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Panorama City", "population": 0.7524972841207175, "cases": 284.0, "resource_uri": "/1.0/boundary/panorama-city-la-county-neighborhood-current/", "external_id": "panorama-city", "slug": "panorama-city-la-county-neighborhood-current", "metadata": {"sqmi": 3.64799571506, "type": "segment-of-a-city", "name": "Panorama City", "slug": "panorama-city"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.16965700000024, 33.91442399912568], [-118.16960800000014, 33.913954999125664], [-118.17035400000017, 33.914286999125714], [-118.17067000000014, 33.91381599912577], [-118.17047000000017, 33.913674999125654], [-118.17047000000017, 33.91311499912572], [-118.1728030000002, 33.91311499912572], [-118.17276400000016, 33.91282999912564], [-118.17330200000019, 33.912815999125684], [-118.17330600000011, 33.91182199912567], [-118.17051400000011, 33.91183999912574], [-118.1705510000002, 33.91226199912569], [-118.16819800000027, 33.91228299912573], [-118.168386, 33.91404699912572], [-118.16815200000022, 33.9140659991257], [-118.16814700000018, 33.91423199912569], [-118.1641080000002, 33.91234799912572], [-118.16386400000017, 33.91232399912575], [-118.16386300000012, 33.912601999125755], [-118.163402, 33.9123439991257], [-118.16238900000025, 33.91235099912571], [-118.16095800000022, 33.91169699912576], [-118.16020600000014, 33.91123799912566], [-118.16015000000017, 33.910469999125716], [-118.15900700000016, 33.9099639991257], [-118.15858800000011, 33.91122999912566], [-118.15837900000017, 33.9126139991257], [-118.158072, 33.91279699912572], [-118.15784900000021, 33.91361699912568], [-118.15841100000017, 33.913897999125645], [-118.156126, 33.91699099912562], [-118.14928800000018, 33.91373499912564], [-118.15329200000018, 33.907272999125766], [-118.15145700000025, 33.90638999912581], [-118.15147100000023, 33.90621199912583], [-118.15103800000023, 33.9061899991258], [-118.1475210000003, 33.9044849991258], [-118.145316, 33.90378499912583], [-118.145286, 33.90352299912586], [-118.14273400000016, 33.902454999125865], [-118.14257400000025, 33.889196999125964], [-118.14697100000015, 33.889179999125965], [-118.146901, 33.88641499912616], [-118.14710400000024, 33.88200999912611], [-118.146878, 33.879871999126095], [-118.14996200000017, 33.87987799912619], [-118.15129400000018, 33.87971699912616], [-118.15131500000021, 33.881986999126106], [-118.17742700000022, 33.88185699912621], [-118.17743500000017, 33.88535899912612], [-118.18577800000021, 33.885441999126], [-118.18760100000014, 33.8854029991261], [-118.18762900000013, 33.88522999912612], [-118.1882070000001, 33.885223999126005], [-118.18689700000013, 33.892419999126], [-118.18429900000012, 33.89251899912604], [-118.18416900000031, 33.88913699912604], [-118.1824020000003, 33.88910599912613], [-118.17996200000019, 33.89253699912598], [-118.18159000000014, 33.892544999125946], [-118.1816870000002, 33.894264999126], [-118.18235600000023, 33.89425199912585], [-118.182306, 33.89621199912588], [-118.18589600000017, 33.89623399912592], [-118.18610000000017, 33.89485799912598], [-118.18765000000022, 33.89486599912591], [-118.186885, 33.89947199912589], [-118.18666200000015, 33.902577999125846], [-118.18692700000013, 33.903108999125834], [-118.18778349211664, 33.9034452914025], [-118.18778742131504, 33.903614337266845], [-118.18677100000019, 33.9036719991259], [-118.186674107871, 33.90445111907156], [-118.18497700000017, 33.90540499912577], [-118.18389300000017, 33.90638399912574], [-118.183158, 33.90598499912583], [-118.18141600000014, 33.90809999912576], [-118.180507, 33.91006799912571], [-118.178709, 33.918591999125674], [-118.17665300000014, 33.918312999125654], [-118.17518800000015, 33.91749599912567], [-118.169459, 33.91485499912573], [-118.16965700000024, 33.91442399912568]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Paramount", "population": 0.560236848098383, "cases": 123.0, "resource_uri": "/1.0/boundary/paramount-la-county-neighborhood-current/", "external_id": "paramount", "slug": "paramount-la-county-neighborhood-current", "metadata": {"sqmi": 4.85462717726, "type": "standalone-city", "name": "Paramount", "slug": "paramount"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.195574, 34.251904999121585], [-118.18684200000014, 34.25158599912156], [-118.186915, 34.23750799912175], [-118.186717, 34.23430499912185], [-118.186403, 34.233565999121765], [-118.18684100000011, 34.232151999121875], [-118.18666400000015, 34.223020999122056], [-118.18348200000011, 34.22310799912194], [-118.183434, 34.22240399912196], [-118.17767400000012, 34.222451999122036], [-118.17730497928919, 34.21540400059519], [-118.17440198557983, 34.21508800371352], [-118.17059298600074, 34.21530400213581], [-118.16791798591431, 34.21529600429636], [-118.16780198550059, 34.21514100444365], [-118.166979986333, 34.21546200048891], [-118.16685897894678, 34.21531700144242], [-118.16286298586908, 34.215219004448144], [-118.16425397183312, 34.21396000599335], [-118.16477697183436, 34.212673005991704], [-118.1646299718341, 34.21256000599155], [-118.16482399078522, 34.212348005207154], [-118.1650039812646, 34.21244599891342], [-118.16564698582394, 34.21156900459422], [-118.1667449798812, 34.211611000104504], [-118.16699197183794, 34.21090800598991], [-118.16590497183675, 34.210304005988945], [-118.16580497183735, 34.2081040059861], [-118.16550797183692, 34.2079970059859], [-118.16551697183715, 34.207177005984846], [-118.16364997909149, 34.20470200494947], [-118.16335298562791, 34.20479600186442], [-118.16315697893245, 34.20438400148185], [-118.16276098587979, 34.20437600440743], [-118.16290097183465, 34.20394800597992], [-118.16160197883006, 34.20184400189516], [-118.16076298594635, 34.20186000412834], [-118.1611169718331, 34.20127600597615], [-118.16000197183196, 34.20012600597445], [-118.16052498409618, 34.1987750072498], [-118.1634449718369, 34.19971300597462], [-118.16257798601009, 34.20164300367801], [-118.16425097943664, 34.20145500241648], [-118.16579897184069, 34.19804200597302], [-118.1667979718428, 34.196220005970915], [-118.16748597184404, 34.195297005969806], [-118.16845497184602, 34.19325000596751], [-118.16849097184637, 34.19244500596642], [-118.167480971845, 34.19212000596568], [-118.1676269718455, 34.191590005965125], [-118.16650297184388, 34.19123300596434], [-118.16687199057262, 34.19025600484962], [-118.16750697268225, 34.19057099493437], [-118.16767098556689, 34.18840900724118], [-118.16829598594309, 34.18849700075579], [-118.16833997184679, 34.19047000596368], [-118.16859197184696, 34.19067400596409], [-118.16921797184736, 34.192461005966685], [-118.1704109753016, 34.19120900875418], [-118.17060098520584, 34.19056100665164], [-118.17088797934692, 34.190605997994524], [-118.17090097796073, 34.19020500354393], [-118.171799978981, 34.18939400135572], [-118.16872198587582, 34.1893110044306], [-118.16873398593377, 34.18544500420959], [-118.16971397185041, 34.18548000595771], [-118.17034697185096, 34.18603700595854], [-118.17082597185214, 34.18475300595689], [-118.17026197185156, 34.18410100595589], [-118.170460971852, 34.183745005955615], [-118.16958397185148, 34.1814050059524], [-118.1690429788288, 34.18107800396836], [-118.16747498591961, 34.181430002517814], [-118.16745797184798, 34.183075005954024], [-118.16412898592905, 34.183086004214644], [-118.16411697886731, 34.18160400174925], [-118.16299398593166, 34.18161100419992], [-118.16299297888581, 34.18144900166734], [-118.1501039859879, 34.181805001592814], [-118.14266698589729, 34.18179300427988], [-118.13210898496514, 34.177036003023474], [-118.13188397180068, 34.177066005937874], [-118.13190797875751, 34.17650700215652], [-118.12870898580893, 34.1765660045418], [-118.12863097873127, 34.17522900233142], [-118.12253798589958, 34.175209004208114], [-118.1225229859752, 34.175510000007584], [-118.1212529859925, 34.17554700350271], [-118.12124997876478, 34.1753340020422], [-118.11885998594165, 34.175416003986456], [-118.11877498615786, 34.17593700003496], [-118.11735798563585, 34.17586300494619], [-118.11735398047955, 34.174983006992804], [-118.11662098479427, 34.175419000685245], [-118.11660399954869, 34.17364203097555], [-118.11720497859258, 34.17375400048918], [-118.11698097178183, 34.171393005927115], [-118.11710297880164, 34.16960600183013], [-118.11302298591059, 34.16963600412631], [-118.11301398588526, 34.17033900029009], [-118.1111989717741, 34.170368005924445], [-118.11087997177378, 34.17011700592395], [-118.11100697177426, 34.16914400592278], [-118.11178997871633, 34.169143000426146], [-118.11178597877692, 34.16859600192676], [-118.10923398587192, 34.16864500427829], [-118.10920497880858, 34.16765000176109], [-118.09833998588695, 34.16770900418358], [-118.09831898591035, 34.16883899997218], [-118.09780198588373, 34.16883900506983], [-118.0978029858629, 34.16913800010005], [-118.09590098590475, 34.16916800409419], [-118.09600198515562, 34.169405999972106], [-118.09520198587617, 34.16940600422026], [-118.09551698608256, 34.17008400313336], [-118.09490298566956, 34.17029100190975], [-118.09504298556314, 34.17084700142609], [-118.0954349861295, 34.17070800323654], [-118.09565998549617, 34.171172001645935], [-118.09597298607822, 34.17106700312373], [-118.09650197175299, 34.17220500592326], [-118.0961079717523, 34.173051005924364], [-118.09611497175199, 34.17414200592578], [-118.09597698711109, 34.174515998922224], [-118.09578998596234, 34.17449500627511], [-118.09578597175123, 34.17486800592672], [-118.0954069858874, 34.175706004174174], [-118.0982559858651, 34.175685000876065], [-118.10028797175566, 34.18037100593489], [-118.10039497175477, 34.18332800593869], [-118.10066597175505, 34.18367100593915], [-118.10157097175613, 34.18416100594003], [-118.10224297175684, 34.18476900594101], [-118.10194697175622, 34.185270005941604], [-118.10226098583992, 34.18560400438294], [-118.10303198591734, 34.185620000681645], [-118.10306097175712, 34.18737600594459], [-118.10456997175883, 34.18848000594647], [-118.10457898783716, 34.18998300495603], [-118.10408198392082, 34.190385000114865], [-118.1048859717585, 34.19078600594938], [-118.10478797175824, 34.19118600594999], [-118.10691897176046, 34.193296005953115], [-118.10486299337596, 34.19337300137353], [-118.10470299382779, 34.19480500893736], [-118.104926, 34.19683999912225], [-118.101654, 34.196929999122226], [-118.10114600000017, 34.19724699912224], [-118.1012240000002, 34.19682999912225], [-118.10110379547909, 34.1967810076846], [-118.08227272692302, 34.1969349889967], [-118.0827727760264, 34.17908114152165], [-118.06597810318604, 34.179160912968285], [-118.06567700000018, 34.17595099912251], [-118.06587700000013, 34.17530599912254], [-118.06547900000018, 34.17260999912255], [-118.0682000000001, 34.17300899912259], [-118.06782399323531, 34.15028700491917], [-118.07342397872847, 34.150214001077536], [-118.07339199920153, 34.1477650246984], [-118.07371898602842, 34.14786200133109], [-118.07775597869296, 34.14739700171513], [-118.07773698567608, 34.14661900477555], [-118.07796198019723, 34.14663799916627], [-118.07810498588088, 34.14625800413966], [-118.07957897821855, 34.14624800049933], [-118.07923098587428, 34.144763004171935], [-118.07988298586466, 34.14476100083491], [-118.07986098587239, 34.14524100418191], [-118.08043798586704, 34.14524000082553], [-118.08049798571051, 34.14572700469695], [-118.08250198577494, 34.145720001502674], [-118.08250498588383, 34.146230004141394], [-118.08459697878388, 34.14621400051289], [-118.08459398589171, 34.14574700411201], [-118.08639197907159, 34.14554600053652], [-118.08643098588944, 34.14519600412914], [-118.08696597751259, 34.145191000551684], [-118.08670897881159, 34.144707001658894], [-118.0832699858707, 34.14470600419959], [-118.08350097879129, 34.142220001733705], [-118.07895998587962, 34.142250004147286], [-118.07892198588114, 34.139609004139544], [-118.08152198586025, 34.139591000860676], [-118.08152898587794, 34.140472004162525], [-118.08307998586619, 34.140466000839325], [-118.08368697174588, 34.14084100587969], [-118.08321797174537, 34.14032400587896], [-118.08381897174846, 34.13371800587049], [-118.08399398587281, 34.133008004190025], [-118.08600697878207, 34.13301000037235], [-118.08598598583363, 34.1314320056985], [-118.08749598577815, 34.13127500168262], [-118.08750698588814, 34.13369100413545], [-118.08969898586857, 34.133676000852354], [-118.08976798585576, 34.135159004274925], [-118.09428798081042, 34.135215999670805], [-118.09451800000012, 34.136854999122995], [-118.09520200000016, 34.13680699912296], [-118.09526209549469, 34.14020723805522], [-118.09568600000019, 34.14020499912291], [-118.09578000000015, 34.14176899912294], [-118.097414, 34.14190899912299], [-118.09870700000012, 34.14180599912285], [-118.098709, 34.1415089991229], [-118.09968200000019, 34.14145599912283], [-118.09967000000019, 34.140671999122894], [-118.10051100000018, 34.14066699912291], [-118.10051679146703, 34.141395758698316], [-118.10294900000012, 34.14127199912292], [-118.10283400000016, 34.141802999122945], [-118.1032660000002, 34.141913999122856], [-118.10616200000028, 34.14190799912285], [-118.10615100000017, 34.14081799912294], [-118.1082960000002, 34.14080599912291], [-118.10830525924145, 34.14154859026965], [-118.11003064903649, 34.14153616752377], [-118.11002810873477, 34.14118292581985], [-118.11048300000017, 34.14117099912305], [-118.1105110000001, 34.14020699912291], [-118.11017300000017, 34.14018099912292], [-118.11034500000018, 34.13840499912297], [-118.11073200000031, 34.13841099912297], [-118.110742, 34.13804199912288], [-118.11028700000027, 34.137751999122955], [-118.11016100000032, 34.13680799912303], [-118.11429200000018, 34.136857999122974], [-118.11429000000018, 34.13616699912302], [-118.114003, 34.136169999122956], [-118.11411100000016, 34.13292299912301], [-118.11912200000016, 34.13260699912299], [-118.11959700000016, 34.13240599912304], [-118.1217070000001, 34.132113999123035], [-118.12610100000015, 34.1309349991231], [-118.13124900000015, 34.12978999912297], [-118.13099800000012, 34.129393999122975], [-118.13113000000016, 34.12859399912303], [-118.13082500000014, 34.128145999123085], [-118.13077000000018, 34.127452999123015], [-118.131159, 34.12646299912308], [-118.13077900000015, 34.126152999123114], [-118.13006500000012, 34.1240499991232], [-118.12906100000025, 34.1230259991231], [-118.12921000000023, 34.12213299912315], [-118.12944100000013, 34.12205599912318], [-118.12958400000018, 34.121685999123166], [-118.129351, 34.12134999912322], [-118.129016, 34.12127399912312], [-118.128931, 34.1209679991232], [-118.12873400000012, 34.12097199912322], [-118.12856300000018, 34.12023299912312], [-118.1282970000002, 34.12021899912317], [-118.12807300000023, 34.119415999123156], [-118.12832500000016, 34.119335999123166], [-118.12797000000019, 34.1179479991232], [-118.13076000000012, 34.1173309991232], [-118.133192, 34.11727699912326], [-118.136203, 34.11791699912325], [-118.140158, 34.119505999123284], [-118.14216300000017, 34.11948399912316], [-118.14331200000014, 34.1202259991232], [-118.14370700000018, 34.120998999123195], [-118.14345400000013, 34.12149799912305], [-118.14384100000017, 34.1213089991232], [-118.143702, 34.12158299912317], [-118.1443480000002, 34.1218109991231], [-118.14434300000013, 34.12261699912307], [-118.14597300000023, 34.124487999123154], [-118.14575700000016, 34.12360499912312], [-118.146058, 34.12363399912309], [-118.14782200000013, 34.12505599912308], [-118.14913800000015, 34.12574299912308], [-118.15027100000015, 34.1240369991231], [-118.15100600000012, 34.124031999123105], [-118.15100300000027, 34.123914999123066], [-118.15993600000014, 34.1237529991231], [-118.15962600000015, 34.1240039991231], [-118.163195, 34.124023999123125], [-118.16321100000029, 34.123594999123135], [-118.16554000000016, 34.123694999123174], [-118.16546600000018, 34.12401099912314], [-118.16580200000016, 34.12404399912313], [-118.16845400000011, 34.123913999123175], [-118.16779200000016, 34.124766999123025], [-118.167213, 34.1246559991232], [-118.16558700000014, 34.12546699912314], [-118.16586700000013, 34.12623799912312], [-118.16722100000017, 34.12588499912307], [-118.170328, 34.12694499912313], [-118.1714170000002, 34.12630799912309], [-118.17229900000012, 34.126081999123116], [-118.17253900000016, 34.1257869991231], [-118.1729360000002, 34.1258129991231], [-118.172804, 34.12477099912308], [-118.17695500000013, 34.123140999123116], [-118.1765410000002, 34.12662399912322], [-118.1777960000002, 34.126876999123084], [-118.17783300000015, 34.12665799912311], [-118.17858300000013, 34.12671999912304], [-118.18019300000019, 34.126424999123074], [-118.18089600000022, 34.12833099912316], [-118.18149500000023, 34.128029999123115], [-118.18134000000015, 34.12949799912307], [-118.18258000000019, 34.12918599912314], [-118.18284000000017, 34.12974999912312], [-118.182817, 34.13121099912297], [-118.1860970000002, 34.133731999122986], [-118.185531, 34.134725999123], [-118.18520600000012, 34.136067999122965], [-118.18588700000014, 34.13618299912301], [-118.185686, 34.136661999123014], [-118.185796, 34.13736799912296], [-118.185524, 34.13733499912301], [-118.18552600000017, 34.13856599912292], [-118.18539500000013, 34.13884099912296], [-118.18567200000012, 34.13885399912288], [-118.18568300000017, 34.139032999122946], [-118.18489300000017, 34.13955299912297], [-118.18434200000011, 34.13940699912294], [-118.18312800000025, 34.14025999912299], [-118.18195600000014, 34.140635999122914], [-118.18019800000016, 34.140817999123016], [-118.180082, 34.141090999123], [-118.18075700000028, 34.14129999912293], [-118.181164, 34.14219899912285], [-118.18220600000014, 34.14306099912286], [-118.18218000000016, 34.143396999122906], [-118.1824350000002, 34.143954999122975], [-118.18456100000024, 34.14540099912283], [-118.18421300000024, 34.14627999912283], [-118.18386900000017, 34.148556999122796], [-118.1824470000003, 34.14856199912283], [-118.1820050000002, 34.1502029991228], [-118.18436000000015, 34.16010699912274], [-118.184956, 34.160059999122666], [-118.18736200000026, 34.16488499912268], [-118.1886560000002, 34.165248999122596], [-118.18812600000011, 34.16638699912255], [-118.189083, 34.168847999122605], [-118.18958600000013, 34.168770999122636], [-118.190811, 34.17205099912252], [-118.19109800000018, 34.17413499912259], [-118.190447, 34.1747019991225], [-118.1888140000002, 34.177915999122405], [-118.18731700000016, 34.17947599912243], [-118.18442500000019, 34.17969299912246], [-118.18400700000011, 34.179773999122396], [-118.18336700000022, 34.180235999122445], [-118.18221500000017, 34.17988499912248], [-118.18155000000016, 34.179505999122405], [-118.18117200000027, 34.18001599912244], [-118.18013500000016, 34.18075499912252], [-118.17618500000012, 34.18184799912239], [-118.176282, 34.18215299912241], [-118.17417, 34.18288699912232], [-118.17462600000019, 34.183662999122326], [-118.1754460000002, 34.18404099912229], [-118.17572800000019, 34.18530499912236], [-118.1759880000002, 34.18550499912242], [-118.17660500000015, 34.185804999122304], [-118.17743700000018, 34.18561699912237], [-118.17892500000019, 34.18567099912231], [-118.18071500000016, 34.186428999122434], [-118.18030500000017, 34.18740499912237], [-118.17975500000031, 34.1873609991224], [-118.17875700000013, 34.1869519991224], [-118.17831400000014, 34.18652199912237], [-118.17874000000012, 34.18712899912245], [-118.17889900000016, 34.18794799912235], [-118.17833700000021, 34.189454999122326], [-118.178293, 34.19276099912227], [-118.17791400000021, 34.19391199912222], [-118.17797200000031, 34.19421599912235], [-118.17781000000011, 34.194149999122246], [-118.1774020000002, 34.194923999122196], [-118.176021, 34.19661099912222], [-118.17545700000016, 34.1976789991223], [-118.17316000000017, 34.19768699912226], [-118.17407900000016, 34.19663899912224], [-118.172205, 34.19690499912237], [-118.17172900000016, 34.19855099912214], [-118.17131200000024, 34.19832099912237], [-118.16930500000012, 34.20150399912216], [-118.1689050000002, 34.2038039991222], [-118.17100500000022, 34.20390399912218], [-118.17100500000022, 34.2046019991221], [-118.1727060000001, 34.2046019991221], [-118.17265400000024, 34.20545999912215], [-118.17225800000031, 34.205768999122135], [-118.17243800000024, 34.20593499912215], [-118.17263200000019, 34.20574299912205], [-118.17302500000027, 34.20596399912214], [-118.17361200000015, 34.205574999122156], [-118.17357500000021, 34.206211999122054], [-118.17391700000016, 34.20641299912214], [-118.17386400000012, 34.20683299912209], [-118.17399100000017, 34.206818999122085], [-118.1742790000002, 34.20603899912215], [-118.17504300000013, 34.20564499912213], [-118.17564400000012, 34.20578099912218], [-118.175762, 34.20608599912214], [-118.17554400000013, 34.20683399912206], [-118.17593000000015, 34.20771099912203], [-118.17595900000029, 34.208203999122084], [-118.17654600000017, 34.20922399912215], [-118.17662800000019, 34.2108309991221], [-118.17639400000022, 34.21104599912203], [-118.1759310000001, 34.21112699912216], [-118.17550500000023, 34.21100399912204], [-118.17560600000023, 34.21080199912208], [-118.1754210000001, 34.21068399912205], [-118.17451000000018, 34.211431999122105], [-118.175578, 34.21240899912215], [-118.17596200000013, 34.21240899912212], [-118.17607800000029, 34.21183999912206], [-118.17653200000026, 34.21183799912203], [-118.17639900000027, 34.21248999912207], [-118.1773190000002, 34.21230599912197], [-118.17794700000029, 34.213053999122025], [-118.177699, 34.21321199912213], [-118.17834000000032, 34.21380299912201], [-118.17812700000027, 34.21381399912208], [-118.17848700000019, 34.214345999121996], [-118.17980900000025, 34.2147809991221], [-118.17985100000017, 34.21562799912208], [-118.18033700000015, 34.215896999122], [-118.1812050000002, 34.21521999912205], [-118.18248300000013, 34.215696999121974], [-118.18410400000016, 34.21604399912199], [-118.18358500000019, 34.216401999121985], [-118.18347800000015, 34.21807799912189], [-118.18290200000014, 34.21844799912198], [-118.18151500000027, 34.218496999121946], [-118.180406, 34.21800399912196], [-118.18116400000017, 34.219822999121945], [-118.18219100000016, 34.220580999122], [-118.18450600000017, 34.221103999121894], [-118.18450600000017, 34.22260399912192], [-118.18813400000019, 34.22260099912199], [-118.18804800000015, 34.22288699912193], [-118.18817900000016, 34.223227999121896], [-118.18999100000023, 34.22391199912191], [-118.18996600000018, 34.22456599912184], [-118.19048800000019, 34.22462199912187], [-118.19103500000016, 34.22550499912196], [-118.19083200000017, 34.22604399912197], [-118.191206, 34.226702999121926], [-118.19020600000022, 34.228102999121845], [-118.19050600000025, 34.228602999121904], [-118.189906, 34.231102999121866], [-118.1946060000002, 34.23350299912184], [-118.19571100000016, 34.23359499912183], [-118.19630600000026, 34.23456499912185], [-118.19764100000013, 34.23484999912176], [-118.198139, 34.23630199912173], [-118.19777000000015, 34.23750499912179], [-118.19550100000014, 34.23739099912178], [-118.19578000000014, 34.25185499912159], [-118.195574, 34.251904999121585]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Pasadena", "population": 1.0, "cases": 393.0, "resource_uri": "/1.0/boundary/pasadena-la-county-neighborhood-current/", "external_id": "pasadena", "slug": "pasadena-la-county-neighborhood-current", "metadata": {"sqmi": 25.1460636976, "type": "standalone-city", "name": "Pasadena", "slug": "pasadena"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.04687300000028, 34.02077199912442], [-118.04731900000023, 34.02052699912444], [-118.04710000000023, 34.02011099912433], [-118.04876500000015, 34.018556999124435], [-118.04893900000026, 34.01867199912441], [-118.05093100000019, 34.01670799912437], [-118.05268800000029, 34.01788699912442], [-118.05412500000017, 34.016723999124395], [-118.05415300000018, 34.01789199912438], [-118.05461400000017, 34.017430999124464], [-118.0557840000002, 34.01814699912439], [-118.05568100000019, 34.018258999124434], [-118.05675900000016, 34.01849299912448], [-118.0591030000001, 34.01793299912452], [-118.05944700000015, 34.017298999124456], [-118.05626200000015, 34.015137999124434], [-118.05743200000032, 34.01428399912446], [-118.05647900000017, 34.012773999124505], [-118.05663200000019, 34.01217299912452], [-118.05686100000013, 34.01264799912454], [-118.05764238179341, 34.01317948500949], [-118.0581029622927, 34.01310056280931], [-118.05878930758678, 34.01259650130915], [-118.06214500000013, 34.012197999124616], [-118.06498896714508, 34.0095772430908], [-118.06192175728435, 34.00750552818248], [-118.0600820000002, 34.008796999124534], [-118.05982700000013, 34.00883599912455], [-118.05902528613937, 34.00812133421496], [-118.06096600000025, 34.00653499912454], [-118.06201500000017, 34.005293999124575], [-118.06218400000016, 34.00541999912468], [-118.06531500000017, 34.00281899912465], [-118.06660000000022, 34.00109799912462], [-118.06846700000014, 34.000919999124605], [-118.06888500000017, 33.99986999912462], [-118.06839100000012, 33.999135999124654], [-118.06852000000015, 33.99837099912467], [-118.06819952116513, 33.998094956061315], [-118.0687820000002, 33.998462999124705], [-118.07008900000014, 33.99885699912471], [-118.071371, 33.99559699912469], [-118.07029800000018, 33.9948579991247], [-118.07071900000017, 33.994428999124736], [-118.07136200000019, 33.9948579991247], [-118.07219900000017, 33.99367799912475], [-118.07242099275217, 33.99233100387046], [-118.07309398603046, 33.99231000146116], [-118.07327000000028, 33.991760999124686], [-118.07300800000016, 33.99151799912477], [-118.0754239912279, 33.98531600846909], [-118.07586698811905, 33.98548499744313], [-118.07689, 33.983299999124846], [-118.07999800000015, 33.97906699912502], [-118.08278800000015, 33.97549899912502], [-118.08868400000011, 33.96857599912508], [-118.08909500000013, 33.967129999125135], [-118.08771500000012, 33.96669799912506], [-118.08847000000013, 33.966650999125], [-118.08903200000012, 33.96681999912507], [-118.08686100000013, 33.96177599912516], [-118.08673600000022, 33.96092999912525], [-118.08690700000015, 33.9600279991252], [-118.08748700000015, 33.958752999125196], [-118.08951100000023, 33.95537099912513], [-118.09189100000017, 33.95229799912524], [-118.09314200000019, 33.95096099912527], [-118.09336900000011, 33.950361999125356], [-118.09663900000014, 33.95177299912521], [-118.11050700000014, 33.96132899912513], [-118.1189190000003, 33.970547999124946], [-118.1232380000001, 33.97491199912494], [-118.12056600000012, 33.975244999124925], [-118.11883700000018, 33.97525099912496], [-118.11596800000031, 33.97975699912489], [-118.11544600000018, 33.98103299912484], [-118.115212, 33.98120599912489], [-118.11484200000015, 33.983216999124856], [-118.11453900000018, 33.98397299912483], [-118.11419500000014, 33.98617799912478], [-118.11432800000019, 33.98659799912476], [-118.11398100000014, 33.987286999124706], [-118.11379700000015, 33.987234999124816], [-118.11057800000016, 33.99123999912477], [-118.11165400000023, 33.99184099912481], [-118.11039100000016, 33.99350699912471], [-118.11003900000014, 33.99394799912476], [-118.10883500000023, 33.993294999124764], [-118.10765100000015, 33.994688999124726], [-118.10737600000023, 33.994621999124675], [-118.10672100000016, 33.99492599912472], [-118.10509000000032, 33.99719799912464], [-118.10478600000019, 33.997201999124705], [-118.10434500000022, 33.99767399912458], [-118.10428300000014, 33.998531999124666], [-118.10366600000026, 33.9997899991246], [-118.097289, 34.00149199912457], [-118.09655500000014, 34.00412899912449], [-118.096201, 34.007661999124515], [-118.09586100000014, 34.00839299912445], [-118.09534400000021, 34.0104569991246], [-118.09444000000025, 34.011667999124555], [-118.09273200000028, 34.013394999124515], [-118.0929350000002, 34.0135719991245], [-118.092288, 34.0141639991244], [-118.085124, 34.019102999124414], [-118.08483800000029, 34.01883499912442], [-118.08385700000021, 34.01954499912442], [-118.08001800000017, 34.01803099912445], [-118.07952400000012, 34.01820499912443], [-118.07932800000012, 34.01776499912453], [-118.07928700000018, 34.01691099912439], [-118.07866200000015, 34.01694299912437], [-118.07837700000019, 34.01748499912447], [-118.075008, 34.01936599912435], [-118.0743590000001, 34.02037599912433], [-118.06988800000019, 34.020825999124504], [-118.06979000000015, 34.02044699912443], [-118.06148600000017, 34.021023999124395], [-118.06090500000019, 34.02121399912446], [-118.06116200000021, 34.021718999124396], [-118.05932200000017, 34.02191699912439], [-118.0565310000003, 34.02055899912442], [-118.05598000000018, 34.02051099912443], [-118.05543300000011, 34.02114699912435], [-118.05464800000013, 34.0206299991244], [-118.05425000000018, 34.02065599912442], [-118.05379400000011, 34.02166499912444], [-118.05307400000014, 34.02418299912438], [-118.05202400000013, 34.02634299912434], [-118.05012900000025, 34.02822899912436], [-118.049026, 34.0288469991243], [-118.04712100000019, 34.02876399912426], [-118.044279, 34.0269599991243], [-118.04068600000014, 34.02639999912433], [-118.040001, 34.0257709991245], [-118.04421700000016, 34.023130999124355], [-118.04468200000017, 34.02187999912435], [-118.04426100000026, 34.02159299912439], [-118.04472000000018, 34.02114699912435], [-118.04687300000028, 34.02077199912442]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Pico Rivera", "population": 0.6428492259947537, "cases": 174.0, "resource_uri": "/1.0/boundary/pico-rivera-la-county-neighborhood-current/", "external_id": "pico-rivera", "slug": "pico-rivera-la-county-neighborhood-current", "metadata": {"sqmi": 8.7868828889, "type": "standalone-city", "name": "Pico Rivera", "slug": "pico-rivera"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.37733, 34.062953999123835], [-118.377266, 34.059383999123924], [-118.37631, 34.059452684055366], [-118.37611000000011, 34.04690999912396], [-118.37681000000013, 34.04450999912405], [-118.38311000000013, 34.04560999912394], [-118.38511100000014, 34.04640999912406], [-118.38611100000011, 34.04660999912396], [-118.385411, 34.04880999912388], [-118.38951100000013, 34.04950999912385], [-118.38961100000014, 34.052309999123885], [-118.397711, 34.052309999123935], [-118.401531, 34.0519669991239], [-118.406541, 34.05229699912386], [-118.405484, 34.05284699912398], [-118.406122, 34.05414499912391], [-118.405562, 34.054140999123824], [-118.40556200000012, 34.05431199912391], [-118.405285, 34.054401999124046], [-118.405452, 34.054860999123946], [-118.405929, 34.05482999912397], [-118.405922, 34.0571039991239], [-118.403993, 34.0571009991239], [-118.40345500000012, 34.057022999123866], [-118.403261, 34.056830999123875], [-118.402927, 34.05705499912389], [-118.40277100000012, 34.056886999124046], [-118.402463, 34.05709899912391], [-118.40218300000011, 34.05709899912396], [-118.402371, 34.056995999123835], [-118.40227, 34.05688599912402], [-118.40188200000011, 34.05709799912388], [-118.401556, 34.05709899912396], [-118.40167900000016, 34.057028999123894], [-118.401584, 34.05691499912384], [-118.401271, 34.05709799912388], [-118.400751, 34.05709799912388], [-118.400907, 34.05699699912397], [-118.400785, 34.056866999123905], [-118.400428, 34.057096999123914], [-118.400002, 34.05687699912388], [-118.39971300000013, 34.05709599912394], [-118.383666, 34.05709899912391], [-118.383534, 34.062936999123885], [-118.37733, 34.062953999123835]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Pico-Robertson", "population": 0.11368011881405966, "cases": 62.0, "resource_uri": "/1.0/boundary/pico-robertson-la-county-neighborhood-current/", "external_id": "pico-robertson", "slug": "pico-robertson-la-county-neighborhood-current", "metadata": {"sqmi": 1.03155644743, "type": "segment-of-a-city", "name": "Pico-Robertson", "slug": "pico-robertson"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.2969080000001, 34.05291099912399], [-118.292708, 34.05291099912394], [-118.29160800000012, 34.05251099912384], [-118.28650800000014, 34.05251099912384], [-118.2823740000001, 34.05279599912393], [-118.281008, 34.052410999123985], [-118.27860800000013, 34.05141099912389], [-118.268507, 34.04681199912396], [-118.27120700000015, 34.04511199912397], [-118.272807, 34.04291199912408], [-118.27360100000013, 34.04113399912407], [-118.274007, 34.038411999124044], [-118.27410700000011, 34.03541199912403], [-118.27930700000012, 34.03781199912416], [-118.28400800000016, 34.03691199912411], [-118.291508, 34.03681199912407], [-118.30040800000012, 34.03731199912409], [-118.300408, 34.04001099912401], [-118.3009080000001, 34.040110999124195], [-118.300808, 34.043810999124034], [-118.30030800000013, 34.04391099912411], [-118.30040800000012, 34.04561099912404], [-118.300008, 34.047410999123926], [-118.30001200000015, 34.052907999124], [-118.2969080000001, 34.05291099912399]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Pico-Union", "population": 0.41841807258977753, "cases": 218.0, "resource_uri": "/1.0/boundary/pico-union-la-county-neighborhood-current/", "external_id": "pico-union", "slug": "pico-union-la-county-neighborhood-current", "metadata": {"sqmi": 1.66946888734, "type": "segment-of-a-city", "name": "Pico-Union", "slug": "pico-union"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.42811, 33.968611999125066], [-118.42561, 33.96551199912489], [-118.42531, 33.9654119991251], [-118.426958, 33.96490799912495], [-118.43011, 33.96681199912494], [-118.43261, 33.965911999124884], [-118.43830500000011, 33.96345099912506], [-118.438062, 33.9630729991252], [-118.43758, 33.96304899912506], [-118.43571, 33.963611999125064], [-118.43441, 33.96421199912499], [-118.43271000000016, 33.964611999125054], [-118.43121, 33.96371199912508], [-118.42901, 33.96371199912508], [-118.42821, 33.962011999124975], [-118.42851, 33.96051199912507], [-118.431071, 33.96051199912497], [-118.431026, 33.9596959991252], [-118.432713, 33.9596959991252], [-118.43281, 33.958611999125125], [-118.43401, 33.958011999125006], [-118.432971, 33.956854999125134], [-118.431404, 33.956194999125174], [-118.431882, 33.95552199912518], [-118.431453, 33.95515499912515], [-118.43111900000012, 33.95440899912509], [-118.43105900000015, 33.952192999125046], [-118.4312, 33.951604999125095], [-118.431797, 33.95085699912514], [-118.431347, 33.95024199912523], [-118.433894, 33.94985999912522], [-118.4360499999999, 33.949722999125264], [-118.437731, 33.949156999125165], [-118.436341, 33.94686699912526], [-118.4360570000001, 33.9457869991252], [-118.43601400000014, 33.94411699912526], [-118.43546500000011, 33.9423189991252], [-118.430182, 33.93328199912547], [-118.429736, 33.932099999125334], [-118.42971000000016, 33.930711999125464], [-118.42876375034297, 33.93072699909022], [-118.42875400000011, 33.927200999125674], [-118.427667, 33.92720299912558], [-118.42766, 33.92358199912556], [-118.426574, 33.9235829991256], [-118.42657100000012, 33.92176899912557], [-118.424396, 33.9217699991257], [-118.424391, 33.91995799912558], [-118.422222, 33.91995699912571], [-118.422221, 33.916328999125646], [-118.429447, 33.916317999125695], [-118.429815, 33.91672699912561], [-118.43013647438032, 33.91676320708827], [-118.43203497667035, 33.92083199071059], [-118.4343310205914, 33.924707975488666], [-118.43665400189889, 33.930073987073726], [-118.4369609934041, 33.93040202341212], [-118.43771897568607, 33.93216000355869], [-118.43831801686494, 33.933087975481385], [-118.44057202373146, 33.93810201223033], [-118.44192499606189, 33.9403670150222], [-118.44258801353382, 33.94068900097098], [-118.4452319811606, 33.94595899550434], [-118.44802000067118, 33.95030501663329], [-118.4488220192668, 33.952145019017394], [-118.45073399498091, 33.95524897408726], [-118.4519410213925, 33.956610995695996], [-118.45344698966076, 33.959009001834076], [-118.45421901936898, 33.959767983745586], [-118.45613299434207, 33.961192982017934], [-118.4575629907623, 33.96062498196844], [-118.4576600074436, 33.96073899235248], [-118.4573950003807, 33.96087399495768], [-118.45747602298891, 33.960954017936416], [-118.45848901603792, 33.9612550116641], [-118.46037100286445, 33.96036702492462], [-118.46045802324993, 33.960484981214854], [-118.451811, 33.96451099912501], [-118.45351267244601, 33.96382303213128], [-118.4516622658042, 33.96476860905835], [-118.4513009793635, 33.96423100779179], [-118.43227829833681, 33.975005062440815], [-118.42811, 33.968611999125066]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Playa del Rey", "population": 0.03195909236177693, "cases": 1.0, "resource_uri": "/1.0/boundary/playa-del-rey-la-county-neighborhood-current/", "external_id": "playa-del-rey", "slug": "playa-del-rey-la-county-neighborhood-current", "metadata": {"sqmi": 2.75429310607, "type": "segment-of-a-city", "name": "Playa del Rey", "slug": "playa-del-rey"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.40513300000012, 33.988338999124664], [-118.40444538235128, 33.9883355873588], [-118.401239, 33.98638599912481], [-118.398761, 33.98795699912479], [-118.395851, 33.98491299912476], [-118.395678, 33.98436599912475], [-118.395085, 33.98381799912489], [-118.3984630000001, 33.98317799912483], [-118.3978175863537, 33.98246472319365], [-118.39814, 33.98231299912479], [-118.39923000000013, 33.98279599912475], [-118.401614, 33.98228399912475], [-118.40448800000011, 33.97721599912495], [-118.404769, 33.97695499912483], [-118.41161000000014, 33.97529599912488], [-118.41891, 33.97231199912489], [-118.42281, 33.96991199912499], [-118.42361, 33.96691199912488], [-118.42561000000015, 33.96551199912494], [-118.42811000000013, 33.96861199912502], [-118.43221100000014, 33.97491099912486], [-118.42831000000011, 33.9773109991247], [-118.42311000000011, 33.980810999124834], [-118.42061500000011, 33.98133399912471], [-118.41801, 33.98249099912468], [-118.413808, 33.98546199912475], [-118.411045, 33.987191999124846], [-118.408618, 33.98802299912468], [-118.40513300000012, 33.988338999124664]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Playa Vista", "population": 0.23391657101687038, "cases": 49.0, "resource_uri": "/1.0/boundary/playa-vista-la-county-neighborhood-current/", "external_id": "playa-vista", "slug": "playa-vista-la-county-neighborhood-current", "metadata": {"sqmi": 1.29929176452, "type": "segment-of-a-city", "name": "Playa Vista", "slug": "playa-vista"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.748528, 34.11113699912332], [-117.74656800000015, 34.11118799912331], [-117.74208100000018, 34.110891999123254], [-117.74210400000023, 34.108603999123325], [-117.74132100000016, 34.108574999123334], [-117.741192, 34.10819399912328], [-117.73888700000019, 34.10834999912323], [-117.73906600000016, 34.110824999123224], [-117.73804800000013, 34.11088799912335], [-117.73751800000021, 34.111223999123304], [-117.736809, 34.111114999123274], [-117.736794, 34.09885799912345], [-117.73252300000017, 34.098728999123445], [-117.73197600000022, 34.09398599912348], [-117.7319900000002, 34.09027899912359], [-117.72798200000015, 34.09035899912352], [-117.72799700000013, 34.079409999123584], [-117.71106700000018, 34.079535999123756], [-117.71630900000015, 34.067660999123824], [-117.71756400000024, 34.064222999123885], [-117.71948100000017, 34.059730999123886], [-117.72356300000015, 34.04848499912404], [-117.72358700000018, 34.04796199912404], [-117.72441100000019, 34.04544799912408], [-117.72443400000022, 34.04486499912403], [-117.72601000000031, 34.04112799912409], [-117.72718900000012, 34.03741099912413], [-117.728731, 34.03014599912433], [-117.7286570000002, 34.0298859991243], [-117.72928600000022, 34.0262909991243], [-117.73048900000016, 34.02151099912437], [-117.73188900000021, 34.02051199912441], [-117.736389, 34.018510999124445], [-117.74018900000029, 34.01931199912444], [-117.75443900000019, 34.02147599912443], [-117.76769000000021, 34.023810999124315], [-117.7677900000001, 34.01861099912438], [-117.78040900000018, 34.02588999912438], [-117.78504600000022, 34.02762199912418], [-117.78631600000018, 34.033361999124224], [-117.79225000000018, 34.037037999124166], [-117.79377000000018, 34.037406999124244], [-117.79567, 34.03829199912412], [-117.7969820000003, 34.03927999912409], [-117.79811900000018, 34.04051199912411], [-117.8003890000002, 34.041493999124064], [-117.80174400000018, 34.04246199912416], [-117.80225300000019, 34.041355999124015], [-117.80230800000018, 34.04047599912421], [-117.80204700000012, 34.04081199912411], [-117.80212700000016, 34.04053499912412], [-117.80552100000011, 34.03699999912421], [-117.80761000000015, 34.03414399912416], [-117.80965100000016, 34.03086799912423], [-117.81771700000021, 34.03482099912422], [-117.82194800000016, 34.0304789991243], [-117.82426800000019, 34.03256899912431], [-117.82504000000021, 34.031564999124214], [-117.82527800000017, 34.03169599912416], [-117.8247890000002, 34.03247199912426], [-117.82520900000014, 34.03299099912429], [-117.82509100000011, 34.03303699912438], [-117.82515400000021, 34.03321799912427], [-117.82552500000018, 34.033225999124284], [-117.82497000000019, 34.03429899912427], [-117.82467400000023, 34.03661499912428], [-117.8276680000002, 34.03670399912421], [-117.828817, 34.037100999124185], [-117.82789300000027, 34.03891499912413], [-117.82092500000013, 34.04949599912405], [-117.82067100000019, 34.05048799912403], [-117.82078000000011, 34.05178199912403], [-117.81662200000022, 34.05023199912401], [-117.81571500000021, 34.052574999124076], [-117.821003, 34.05516199912399], [-117.81234800000016, 34.06127499912388], [-117.80788100000021, 34.05844099912399], [-117.8051080000002, 34.05909499912392], [-117.80689200000016, 34.06275399912385], [-117.81093500000011, 34.063566999123836], [-117.8115270000002, 34.0635169991238], [-117.81191100000014, 34.063216999123874], [-117.81221900000014, 34.06338399912386], [-117.81366, 34.06346899912391], [-117.81908900000018, 34.063169999123986], [-117.81911000000018, 34.06356499912392], [-117.8121640000003, 34.0637699991238], [-117.80983700000013, 34.06409499912387], [-117.807843, 34.06463399912388], [-117.80664500000017, 34.06478899912381], [-117.80693000000014, 34.06514399912384], [-117.80315400000016, 34.06686999912384], [-117.80235600000022, 34.067719999123796], [-117.80097200000024, 34.0682099991238], [-117.79941600000012, 34.068343999123826], [-117.79897000000018, 34.06881399912383], [-117.79788700000019, 34.069442999123815], [-117.79797700000017, 34.069608999123815], [-117.79730000000018, 34.069916999123755], [-117.79712200000013, 34.06971199912376], [-117.79613200000018, 34.070084999123814], [-117.79600700000015, 34.06987799912379], [-117.79523900000017, 34.07022299912374], [-117.79519000000015, 34.07060699912382], [-117.7944680000002, 34.070854999123796], [-117.7942750000002, 34.071402999123734], [-117.79363300000026, 34.07120599912374], [-117.7923650000002, 34.07198599912377], [-117.79138900000018, 34.07211699912377], [-117.788307, 34.07311599912376], [-117.7847210000002, 34.07582499912381], [-117.78114300000016, 34.07706499912368], [-117.78054800000014, 34.07757599912363], [-117.77964000000014, 34.07904799912365], [-117.78364600000016, 34.08093199912368], [-117.78309100000016, 34.08160899912363], [-117.78099100000021, 34.08340899912357], [-117.78209100000014, 34.08482499912357], [-117.78433100000014, 34.08485699912359], [-117.78538700000011, 34.0853849991236], [-117.78641100000011, 34.087883999123605], [-117.78577500000029, 34.08789999912362], [-117.785064, 34.08761099912354], [-117.78482300000017, 34.087923999123376], [-117.78397900000017, 34.087944999123586], [-117.783686, 34.088976999123595], [-117.78022700000012, 34.08804799912357], [-117.77681000000017, 34.0861659991236], [-117.77111800000016, 34.09389099912357], [-117.77024100000018, 34.09512699912344], [-117.76992500000014, 34.095847999123514], [-117.76658800000018, 34.0938099991235], [-117.764786, 34.090711999123414], [-117.76426600000016, 34.089416999123564], [-117.762103, 34.092760999123456], [-117.7585450000002, 34.09040499912345], [-117.75748400000028, 34.09004999912359], [-117.7561340000001, 34.08996599912352], [-117.75611900000021, 34.09792299912348], [-117.75688200000027, 34.098124999123385], [-117.756233, 34.09894899912352], [-117.756104, 34.09939999912342], [-117.75619900000015, 34.10566199912329], [-117.75608700000016, 34.110270999123244], [-117.75103200000021, 34.108648999123325], [-117.75070400000013, 34.10928599912327], [-117.75071300000016, 34.110894999123275], [-117.74963800000013, 34.11073999912332], [-117.74974700000018, 34.111289999123215], [-117.74991300000015, 34.11138899912326], [-117.74994700000023, 34.11293599912327], [-117.74855000000011, 34.11285399912323], [-117.748528, 34.11113699912332]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Pomona", "population": 1.5593653109611527, "cases": 171.0, "resource_uri": "/1.0/boundary/pomona-la-county-neighborhood-current/", "external_id": "pomona", "slug": "pomona-la-county-neighborhood-current", "metadata": {"sqmi": 22.9203858517, "type": "standalone-city", "name": "Pomona", "slug": "pomona"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.55436372920136, 34.296541394432126], [-118.55403400010489, 34.29641399931978], [-118.54980399981227, 34.29696699922434], [-118.54670100003608, 34.29786699922969], [-118.54094523964707, 34.29879363870781], [-118.539019, 34.29570099912101], [-118.53481900000014, 34.292000999120994], [-118.5336190000001, 34.29030099912107], [-118.53011900000011, 34.28650099912105], [-118.52881900000011, 34.286000999121185], [-118.528419, 34.284600999121146], [-118.5276190000001, 34.283300999121224], [-118.528019, 34.28210099912109], [-118.527519, 34.28130099912112], [-118.527519, 34.27930099912126], [-118.526363, 34.276739999121176], [-118.526662, 34.27478399912124], [-118.52644700000012, 34.273153999121256], [-118.52700800000012, 34.27207599912121], [-118.526519, 34.27210199912127], [-118.526103, 34.27185799912126], [-118.525495, 34.271297999121195], [-118.52498300000015, 34.27035399912135], [-118.52514300000013, 34.26966599912125], [-118.52586300000014, 34.268865999121346], [-118.526631, 34.26836999912132], [-118.52751100000013, 34.26611399912135], [-118.527719, 34.26496199912127], [-118.52831900000011, 34.2645019991213], [-118.52945600000021, 34.260945999121375], [-118.528963, 34.26005499912139], [-118.529393, 34.25718999912147], [-118.55872000000012, 34.25720199912154], [-118.55782, 34.25900199912152], [-118.55852, 34.26320199912134], [-118.55672, 34.26550199912127], [-118.55672, 34.26620199912139], [-118.55695700000017, 34.26644199912128], [-118.556702, 34.26697499912122], [-118.556651, 34.27121399912134], [-118.557959, 34.273449999121155], [-118.559484, 34.27403499912135], [-118.55982, 34.2745019991212], [-118.569535, 34.275454999121216], [-118.569577, 34.27999999912114], [-118.57033200000016, 34.28698899912099], [-118.572476, 34.29467699912104], [-118.57015702229788, 34.29573568995183], [-118.57014599990354, 34.29535499916071], [-118.56870800014697, 34.294638999303956], [-118.5677409998599, 34.295073999266116], [-118.56742000026652, 34.294952999182165], [-118.56636700008308, 34.295426998937195], [-118.56608700004034, 34.29581799921677], [-118.56446699986053, 34.29688799921102], [-118.56354999988973, 34.29784699912612], [-118.56209599987618, 34.2987899991226], [-118.55976699997046, 34.299191999327405], [-118.55739099993507, 34.299242999282036], [-118.55479200008038, 34.297123999254225], [-118.55436372920136, 34.296541394432126]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Porter Ranch", "population": 0.3558718861209964, "cases": 53.0, "resource_uri": "/1.0/boundary/porter-ranch-la-county-neighborhood-current/", "external_id": "porter-ranch", "slug": "porter-ranch-la-county-neighborhood-current", "metadata": {"sqmi": 5.58616965872, "type": "segment-of-a-city", "name": "Porter Ranch", "slug": "porter-ranch"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.20702926515217, 34.67804149395606], [-118.20702669086519, 34.677545577199496], [-118.20584949173163, 34.677557094363564], [-118.20582740570494, 34.67480194963119], [-118.20354600000032, 34.67477099911673], [-118.20353300000026, 34.67322699911668], [-118.20240400000023, 34.673115999116646], [-118.20238200000027, 34.67117699911667], [-118.2013470000003, 34.671177999116665], [-118.20138229669271, 34.66838568530823], [-118.20247969987868, 34.66839319531151], [-118.20246459704666, 34.66663034433607], [-118.20138900000026, 34.66673599911666], [-118.20135316752932, 34.664722747844046], [-118.2024100000002, 34.6646929991168], [-118.20231600000014, 34.66379299911675], [-118.20568236449807, 34.66384770558437], [-118.20570703204253, 34.66019541979157], [-118.2013387651227, 34.66017432979549], [-118.201270198979, 34.65042877220842], [-118.2010830000003, 34.64582299911694], [-118.20123964339331, 34.6458184147524], [-118.20123880518146, 34.645592031276735], [-118.20233424034129, 34.64559457446456], [-118.20233463836799, 34.64578636003732], [-118.2025860000003, 34.64577899911693], [-118.20264943480434, 34.64651020955972], [-118.20343322666886, 34.64651889049307], [-118.20343299726493, 34.64559848604338], [-118.20735000000019, 34.64556399911702], [-118.20924895517653, 34.64447501852375], [-118.20997594977183, 34.644296009851686], [-118.2100108254017, 34.63093737226003], [-118.2231899594063, 34.630856559162524], [-118.22300586486135, 34.6382241100198], [-118.23619014947572, 34.63819259062946], [-118.23611404495769, 34.64924117853029], [-118.23170864850448, 34.64924334093857], [-118.23155400000014, 34.64821399911691], [-118.23156200000021, 34.64562999911693], [-118.22726900000028, 34.64560899911696], [-118.22733282838207, 34.649239798166306], [-118.22840559615643, 34.64923919673204], [-118.22842357025023, 34.65004559360928], [-118.22948500000021, 34.650039999116906], [-118.22952478681242, 34.65029193248004], [-118.23173412539718, 34.650287545425726], [-118.23179314371657, 34.652903178237196], [-118.22741716646232, 34.652912308918616], [-118.22762400000023, 34.6602179991167], [-118.22321329748887, 34.66024558742269], [-118.22326017980653, 34.67487338091222], [-118.21887574426717, 34.67491941047669], [-118.21884000000026, 34.66760299911673], [-118.21453200000015, 34.66756599911668], [-118.21460600000023, 34.66944899911668], [-118.21017644209613, 34.66937402852377], [-118.21019559277178, 34.67118981321126], [-118.21126803175319, 34.67119637481023], [-118.21131186356943, 34.67484203604359], [-118.21021573369363, 34.67483404353253], [-118.21024844222012, 34.678899741508026], [-118.20805235241542, 34.678884630819745], [-118.20804529230935, 34.678049399811385], [-118.20702926515217, 34.67804149395606]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Quartz Hill", "population": 0.129056928445103, "cases": 27.0, "resource_uri": "/1.0/boundary/quartz-hill-la-county-neighborhood-current/", "external_id": "quartz-hill", "slug": "quartz-hill-la-county-neighborhood-current", "metadata": {"sqmi": 3.77877433414, "type": "unincorporated-area", "name": "Quartz Hill", "slug": "quartz-hill"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.85192842668866, 34.080682429107604], [-117.85229300000022, 34.08040899912366], [-117.85259300000028, 34.07900899912368], [-117.85141500000033, 34.07799499912373], [-117.85219100000027, 34.07680699912372], [-117.85126300000024, 34.07660399912379], [-117.85079300000017, 34.07730899912375], [-117.84681000000022, 34.07520999912375], [-117.84757400000032, 34.07455499912381], [-117.84651400000024, 34.07313299912378], [-117.84670500000034, 34.07256699912385], [-117.84520100000024, 34.07268499912384], [-117.8431000000003, 34.07233599912381], [-117.84204900000027, 34.07199099912376], [-117.84005500000015, 34.07216099912385], [-117.83847800000025, 34.07166699912381], [-117.83679000000029, 34.0700139991238], [-117.83590800000022, 34.07027199912389], [-117.83501000000031, 34.070230999123865], [-117.83452100000025, 34.06940699912377], [-117.83408300000033, 34.069087999123866], [-117.83401300000038, 34.06712199912387], [-117.8317450000003, 34.066354999123924], [-117.82915500000023, 34.0648569991239], [-117.8272600000003, 34.06418799912391], [-117.82342200000018, 34.06377299912392], [-117.81911000000028, 34.06356499912393], [-117.81908900000028, 34.06316999912402], [-117.81366000000016, 34.06346899912393], [-117.81221900000021, 34.0633839991239], [-117.81191100000024, 34.06321699912393], [-117.8115270000003, 34.06351699912388], [-117.81093500000023, 34.06356699912389], [-117.80689200000029, 34.0627539991239], [-117.80510800000029, 34.05909499912396], [-117.80788100000031, 34.058440999123995], [-117.81234800000026, 34.06127499912391], [-117.82083100000027, 34.05533199912398], [-117.82100300000013, 34.05516199912401], [-117.8157150000003, 34.05257499912409], [-117.8166220000003, 34.05023199912406], [-117.82078000000024, 34.05178199912406], [-117.82067100000027, 34.05048799912405], [-117.82092500000023, 34.0494959991241], [-117.82789300000039, 34.03891499912416], [-117.82889300000033, 34.04170999912416], [-117.83419300000025, 34.0407109991242], [-117.83429800000023, 34.051355999124056], [-117.8341090000002, 34.054617999124], [-117.82902100000034, 34.05695399912401], [-117.82969300000019, 34.05810999912391], [-117.82490800000028, 34.06055399912395], [-117.82607600000033, 34.062809999123935], [-117.83299800000026, 34.06026299912385], [-117.8349400000002, 34.058463999123994], [-117.84085000000029, 34.05718899912396], [-117.84380800000028, 34.05840299912393], [-117.84267200000026, 34.059497999123934], [-117.84347300000029, 34.06033299912398], [-117.84544400000019, 34.06349599912394], [-117.8480300000003, 34.06242399912398], [-117.84530800000026, 34.06105399912398], [-117.84603700000024, 34.06112199912392], [-117.84634600000027, 34.06071799912397], [-117.84860400000024, 34.061020999124], [-117.85077400000033, 34.06025899912389], [-117.85073600000038, 34.05988899912393], [-117.84956800000026, 34.060037999124], [-117.84962600000026, 34.05965599912395], [-117.84885400000026, 34.05962799912391], [-117.8488060000003, 34.05918199912398], [-117.85014700000029, 34.059229999123964], [-117.84974200000026, 34.05848499912399], [-117.84951600000015, 34.058367999123995], [-117.85025700000028, 34.05836199912398], [-117.85039800000025, 34.05858999912393], [-117.85134400000031, 34.058704999124004], [-117.85110200000024, 34.059193999124005], [-117.85129500000022, 34.059604999124], [-117.85205800000028, 34.05954299912388], [-117.85185500000033, 34.059121999124024], [-117.85219600000028, 34.059003999123995], [-117.8519730000003, 34.05887599912394], [-117.85259400000024, 34.05834399912392], [-117.85260800000025, 34.05857799912392], [-117.85320800000022, 34.058308999123966], [-117.85331400000021, 34.05840899912401], [-117.85347600000043, 34.05827999912401], [-117.85331400000021, 34.058098999123985], [-117.85352600000023, 34.05792899912398], [-117.8537870000002, 34.057840999124075], [-117.85390700000026, 34.058121999123955], [-117.85428100000021, 34.058278999124006], [-117.85496500000022, 34.05808399912401], [-117.8529510000002, 34.05324199912395], [-117.86173200000016, 34.05308999912402], [-117.86267300000024, 34.05191499912413], [-117.86340500000028, 34.05233499912399], [-117.86422300000027, 34.05309399912404], [-117.86609400000026, 34.055983999124], [-117.8669860000002, 34.05570199912403], [-117.8688970000003, 34.05566699912399], [-117.86897600000026, 34.056697999123976], [-117.87044500000029, 34.05665999912393], [-117.87113600000028, 34.056836999123945], [-117.87047800000028, 34.05812499912395], [-117.87060000000024, 34.059925999123976], [-117.86893900000042, 34.05962299912395], [-117.86899400000023, 34.05912899912394], [-117.8688520000003, 34.05911399912397], [-117.8689160000003, 34.06017499912396], [-117.86837300000029, 34.06181599912394], [-117.86825600000019, 34.06307599912391], [-117.8685580000003, 34.063925999123896], [-117.87048200000031, 34.067041999123994], [-117.87176100000028, 34.068437999123944], [-117.87029200000022, 34.06855199912384], [-117.87019100000028, 34.0683399991238], [-117.86499000000019, 34.069113999123715], [-117.86382400000029, 34.06718299912384], [-117.86133400000024, 34.06749799912388], [-117.86123700000032, 34.067687999123955], [-117.86118600000022, 34.066329999123894], [-117.86023300000016, 34.06598799912382], [-117.85918800000013, 34.066154999123896], [-117.85826100000028, 34.06592499912385], [-117.8587040000002, 34.06864099912379], [-117.8571190000003, 34.06795599912383], [-117.85534700000021, 34.068130999123824], [-117.85575700000032, 34.06883299912384], [-117.85635900000021, 34.06871799912382], [-117.8571190000003, 34.06892899912387], [-117.85813200000025, 34.07003599912379], [-117.85834600000031, 34.07096999912377], [-117.85824200000033, 34.071651999123816], [-117.85835700000023, 34.07243499912385], [-117.8592510000003, 34.072115999123824], [-117.85937900000023, 34.0740899991238], [-117.85822100000023, 34.074112999123706], [-117.85834000000021, 34.07461999912375], [-117.85894800000028, 34.07455999912377], [-117.85913600000028, 34.07548199912378], [-117.85966800000024, 34.07514299912379], [-117.86016000000036, 34.07549599912375], [-117.85990600000022, 34.0758109991238], [-117.8606140000003, 34.07631699912371], [-117.8601930000003, 34.076541999123876], [-117.86001300000021, 34.078551999123725], [-117.86030600000025, 34.07856399912372], [-117.8606289347813, 34.07881577878361], [-117.8604785008204, 34.07891896328401], [-117.8600909375735, 34.07868401196812], [-117.85869155296957, 34.07912308573174], [-117.85908254886594, 34.0794770014256], [-117.85883378607637, 34.07996311304199], [-117.85919563917086, 34.08022022386867], [-117.85901800000035, 34.08054999912372], [-117.8566680000002, 34.080430999123806], [-117.85651700000031, 34.081549999123666], [-117.85686100000017, 34.082220999123635], [-117.85228800000027, 34.08210599912368], [-117.85164700000026, 34.0810529991238], [-117.85192842668866, 34.080682429107604]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Ramona", "population": null, "cases": null, "resource_uri": "/1.0/boundary/ramona-la-county-neighborhood-current/", "external_id": "ramona", "slug": "ramona-la-county-neighborhood-current", "metadata": {"sqmi": 3.6125750528, "type": "unincorporated-area", "name": "Ramona", "slug": "ramona"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.20707900000026, 33.873038999126294], [-118.20354200000025, 33.86106899912645], [-118.20349200000025, 33.86040899912633], [-118.20098100000025, 33.860093999126455], [-118.20297300000014, 33.857174999126485], [-118.20398800000031, 33.85514599912646], [-118.20483100000025, 33.852536999126485], [-118.20527300000023, 33.84944999912658], [-118.20586200000024, 33.84850199912659], [-118.20679800000028, 33.848402999126506], [-118.20679100000022, 33.846567999126535], [-118.23389100000028, 33.84663599912655], [-118.23560200000023, 33.86734199912634], [-118.23412000000035, 33.867400999126346], [-118.23412700000017, 33.866641999126365], [-118.23238600000023, 33.86666799912637], [-118.23237200000021, 33.865565999126304], [-118.2317120000004, 33.86487999912637], [-118.2309420000003, 33.8646919991264], [-118.23084700000022, 33.8634079991264], [-118.22943800000026, 33.863085999126405], [-118.22680800000023, 33.86313799912635], [-118.22638400000024, 33.86429099912638], [-118.22578400000026, 33.86815199912628], [-118.21862500000024, 33.86817299912637], [-118.21865800000018, 33.86924799912627], [-118.21509500000032, 33.86932699912631], [-118.21549800000022, 33.871675999126225], [-118.21616600000027, 33.872603999126355], [-118.21545800000027, 33.872952999126255], [-118.20709200000024, 33.87318399912628], [-118.20707900000026, 33.873038999126294]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Rancho Dominguez", "population": 0.026609898882384245, "cases": 10.0, "resource_uri": "/1.0/boundary/rancho-dominguez-la-county-neighborhood-current/", "external_id": "rancho-dominguez", "slug": "rancho-dominguez-la-county-neighborhood-current", "metadata": {"sqmi": 2.6664275612, "type": "unincorporated-area", "name": "Rancho Dominguez", "slug": "rancho-dominguez"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.36881500000018, 33.795469999127135], [-118.36845300000012, 33.79442199912717], [-118.36750600000016, 33.79441599912723], [-118.36760200000016, 33.79347199912716], [-118.36873400000019, 33.792656999127175], [-118.367912, 33.791457999127196], [-118.36874600000023, 33.79107999912728], [-118.36978500000019, 33.789667999127246], [-118.37129600000019, 33.78853999912726], [-118.37200200000015, 33.78774899912726], [-118.37260200000011, 33.78551399912735], [-118.37059200000019, 33.785506999127314], [-118.36888100000021, 33.78500199912736], [-118.36794600000015, 33.78437899912735], [-118.3655070000002, 33.78562799912725], [-118.3642620000002, 33.781235999127354], [-118.36325300000017, 33.77935999912746], [-118.36333600000015, 33.778659999127434], [-118.36394000000021, 33.77884399912737], [-118.3643350000002, 33.77795699912742], [-118.3637190000002, 33.777724999127415], [-118.36308700000015, 33.777097999127406], [-118.36270900000015, 33.775437999127355], [-118.36108300000016, 33.77377399912755], [-118.36103100000031, 33.77342899912753], [-118.36156500000016, 33.77252399912748], [-118.3631370000002, 33.771325999127484], [-118.36449600000014, 33.76903199912752], [-118.3655210000002, 33.769713999127525], [-118.3654690000002, 33.77133599912752], [-118.3681390000002, 33.77155199912741], [-118.37125000000019, 33.77279299912741], [-118.371916, 33.77218299912747], [-118.37329600000024, 33.77307599912749], [-118.37432600000017, 33.77396199912738], [-118.3750530000002, 33.775323999127444], [-118.3748880000002, 33.77657799912738], [-118.37280300000012, 33.77718999912737], [-118.37141000000018, 33.778243999127355], [-118.37072400000017, 33.77890799912734], [-118.3700960000002, 33.779824999127385], [-118.3696520000002, 33.78107299912738], [-118.37204900000019, 33.78273599912737], [-118.37291900000017, 33.784290999127265], [-118.37464400000015, 33.77780599912732], [-118.37828000000017, 33.77670799912738], [-118.37893400000019, 33.777191999127375], [-118.38099300000025, 33.77585099912737], [-118.38133000000022, 33.7753059991274], [-118.38153500000017, 33.775452999127296], [-118.38259800000024, 33.774661999127396], [-118.38298500000018, 33.77471799912747], [-118.38379100000016, 33.77446899912742], [-118.383622, 33.77309599912749], [-118.38149100000017, 33.773271999127445], [-118.38122700000015, 33.77187099912748], [-118.38123300000017, 33.77090299912751], [-118.38082900000023, 33.76950499912749], [-118.38690400000027, 33.76830099912762], [-118.38778600000015, 33.76695599912757], [-118.38901600000013, 33.76574899912757], [-118.389715, 33.765317999127596], [-118.3905530000002, 33.76504499912762], [-118.3908100000002, 33.76543599912764], [-118.3912480000002, 33.764140999127704], [-118.3933440000002, 33.76099699912762], [-118.3909210000002, 33.75963399912762], [-118.38957600000018, 33.75757799912763], [-118.3890900000002, 33.7572489991277], [-118.38838300000012, 33.757077999127695], [-118.38739300000015, 33.75722399912775], [-118.3849680000002, 33.758597999127545], [-118.38397600000017, 33.75896999912762], [-118.37871000000024, 33.75928499912767], [-118.3789940000003, 33.76162499912758], [-118.3785960000002, 33.761660999127464], [-118.37889000000021, 33.76366099912754], [-118.379647, 33.76667599912758], [-118.38034500000018, 33.768327999127536], [-118.38070500000029, 33.768800999127535], [-118.37836100000011, 33.769319999127596], [-118.377135, 33.769827999127315], [-118.3767310000003, 33.77071399912753], [-118.37521700000015, 33.771594999127444], [-118.37130200000016, 33.769186999127506], [-118.37055000000012, 33.76817999912756], [-118.369501, 33.7683239991275], [-118.36727400000024, 33.767645999127495], [-118.36492600000014, 33.768176999127526], [-118.36569200000012, 33.76702799912757], [-118.36521900000025, 33.76513099912755], [-118.36564300000018, 33.76240899912762], [-118.36598400000022, 33.762687999127635], [-118.36668300000022, 33.76192499912764], [-118.366194, 33.76136899912763], [-118.365715, 33.76161799912763], [-118.36563400000027, 33.76152299912763], [-118.36554200000013, 33.760269999127594], [-118.36431500000018, 33.75998399912768], [-118.36433700000018, 33.75979699912763], [-118.3552050000002, 33.75591699912762], [-118.35586500000026, 33.75540899912771], [-118.3557620000002, 33.754810999127734], [-118.35450500000013, 33.75381699912777], [-118.35540100000011, 33.75337699912774], [-118.35450500000013, 33.751516999127716], [-118.35320500000013, 33.75071699912775], [-118.35616900000018, 33.7485929991278], [-118.35681100000019, 33.747101999127814], [-118.35740600000021, 33.74619999912793], [-118.358662, 33.74512099912788], [-118.3571050000001, 33.74281799912784], [-118.3555340000002, 33.74250399912788], [-118.35299000000012, 33.74508099912775], [-118.35015000000018, 33.74287099912785], [-118.347376, 33.742527999127844], [-118.34600500000013, 33.742116999127795], [-118.34450500000015, 33.74471699912779], [-118.34010500000016, 33.74261699912779], [-118.33997000000014, 33.74284199912789], [-118.33941900000015, 33.74309499912774], [-118.33941900000015, 33.744507999127855], [-118.33885600000013, 33.74469799912774], [-118.33839800000018, 33.74550799912782], [-118.33820800000017, 33.747620999127776], [-118.33663300000015, 33.747826999127724], [-118.33606800000024, 33.748050999127756], [-118.33376600000014, 33.75054199912775], [-118.33099900000016, 33.751488999127695], [-118.33008000000017, 33.75106099912769], [-118.32957000000019, 33.751464999127755], [-118.33062600000014, 33.75479199912776], [-118.33116000000021, 33.75569099912773], [-118.33110900000014, 33.75710399912772], [-118.33215300000012, 33.75826799912764], [-118.330102, 33.75906999912763], [-118.33025800000019, 33.75977499912754], [-118.33625200000014, 33.76147299912768], [-118.33647800000017, 33.76118999912751], [-118.33778200000029, 33.763099999127576], [-118.33752700000012, 33.763216999127664], [-118.3376540000002, 33.76342999912766], [-118.33730500000027, 33.76361699912757], [-118.33791100000015, 33.76475699912758], [-118.33805500000013, 33.765750999127405], [-118.337776, 33.76656799912756], [-118.33731500000015, 33.76711999912745], [-118.33641200000014, 33.76653599912758], [-118.33602500000012, 33.766670999127484], [-118.33575500000016, 33.76623499912753], [-118.33467000000014, 33.76649199912759], [-118.33340500000018, 33.76701699912753], [-118.33304200000012, 33.76825699912757], [-118.33235600000023, 33.768916999127555], [-118.33152700000022, 33.769350999127596], [-118.33081400000015, 33.76863899912755], [-118.33152500000023, 33.76816099912746], [-118.33171400000015, 33.76681899912755], [-118.33000000000015, 33.76739599912756], [-118.32806400000021, 33.76770199912754], [-118.32699800000015, 33.767048999127496], [-118.326647, 33.76786499912751], [-118.32621800000011, 33.76775899912756], [-118.32616100000011, 33.767986999127494], [-118.32577300000018, 33.76798299912763], [-118.32563600000017, 33.768225999127495], [-118.32412100000016, 33.768109999127546], [-118.32327600000013, 33.768470999127516], [-118.32245400000014, 33.76651199912749], [-118.321546, 33.76568799912753], [-118.32154900000018, 33.76535299912751], [-118.32170500000021, 33.7652029991276], [-118.32220500000018, 33.76516199912757], [-118.31860000000012, 33.764974999127546], [-118.31850800000014, 33.76864699912761], [-118.31830500000018, 33.77011699912747], [-118.31830700000013, 33.77521799912735], [-118.316446, 33.775250999127366], [-118.3165750000003, 33.775644999127394], [-118.31294800000023, 33.77582999912746], [-118.31324400000018, 33.77628799912745], [-118.31410300000017, 33.77615799912742], [-118.31326800000015, 33.77655699912744], [-118.31276300000019, 33.77651799912741], [-118.31093500000021, 33.77729099912738], [-118.30991100000021, 33.776278999127484], [-118.3091350000002, 33.77648599912745], [-118.3086970000002, 33.773821999127485], [-118.308751, 33.77268399912756], [-118.3116060000002, 33.76305099912762], [-118.30903500000021, 33.7626779991276], [-118.30903800000014, 33.760514999127615], [-118.30187800000013, 33.76051099912762], [-118.3010000000002, 33.75772099912767], [-118.30908700000013, 33.75772799912751], [-118.30908900000014, 33.757127999127626], [-118.30973400000012, 33.756151999127695], [-118.309, 33.75465199912771], [-118.30883700000014, 33.7537589991277], [-118.30886600000012, 33.752131999127776], [-118.309614, 33.74679099912775], [-118.31110700000013, 33.74679899912773], [-118.311103, 33.747293999127734], [-118.31217400000021, 33.747301999127764], [-118.31217600000016, 33.74680499912791], [-118.31844900000016, 33.746841999127824], [-118.31847700000012, 33.74261699912779], [-118.31960700000018, 33.74262999912784], [-118.32002900000019, 33.741491999127845], [-118.31984100000017, 33.74100199912784], [-118.31901200000014, 33.74053499912785], [-118.31887600000017, 33.74031499912789], [-118.31868000000016, 33.73924899912779], [-118.318751, 33.738366999127926], [-118.31850000000013, 33.73763299912787], [-118.3185050000001, 33.736338999127945], [-118.31892400000015, 33.73659799912798], [-118.32005000000015, 33.73612199912804], [-118.31998500000026, 33.735829999127894], [-118.32037300000023, 33.73576999912794], [-118.3203010000001, 33.73544599912805], [-118.31991300000014, 33.73550599912793], [-118.31873700000023, 33.73518099912798], [-118.31851000000019, 33.73525099912788], [-118.31853100000018, 33.73198699912805], [-118.31982300000017, 33.731989999127954], [-118.32012500000022, 33.731425999127985], [-118.32090800000013, 33.73105599912795], [-118.32101000000016, 33.729396999127935], [-118.328472, 33.72942199912805], [-118.33301780682169, 33.721927852189424], [-118.33547702008529, 33.722550991503084], [-118.33725299356439, 33.72364900567845], [-118.34007699973968, 33.72423100054231], [-118.34177100359315, 33.72562401066803], [-118.34305600111203, 33.726153025164095], [-118.3446479901363, 33.72620000775436], [-118.34700501146159, 33.7266629940862], [-118.34839302343947, 33.727104988196686], [-118.350003005796, 33.72685397594795], [-118.3514599922149, 33.72715602191747], [-118.35218298746167, 33.727800993444795], [-118.3525480100946, 33.7287150231654], [-118.35300100013046, 33.72926497727068], [-118.35468300842905, 33.73071401926485], [-118.35572599036551, 33.732465002004496], [-118.35706502049389, 33.73413501474775], [-118.35797699834318, 33.734487989213704], [-118.35841699319471, 33.73497901778581], [-118.35867900136876, 33.73502200185779], [-118.36088502601551, 33.736651976805945], [-118.36336800066796, 33.73789299062354], [-118.36593599644672, 33.73823202288728], [-118.36786301921636, 33.73784300914435], [-118.36839997813706, 33.737563007637874], [-118.36874001003054, 33.73646899198067], [-118.36939797674248, 33.73635698085566], [-118.36961300232643, 33.73640901420592], [-118.36961999973342, 33.737399015774585], [-118.36988300753704, 33.73785400506979], [-118.37085801466213, 33.73830499584667], [-118.3721410129219, 33.7384549928957], [-118.37290499298142, 33.73823102325764], [-118.37384901158948, 33.73727900761294], [-118.3738530101079, 33.73705398573333], [-118.37411401865234, 33.73706598128824], [-118.37490898722885, 33.737343983535716], [-118.37529500208298, 33.737657025430444], [-118.37530000023102, 33.737824016182486], [-118.37492997944993, 33.73806497952327], [-118.37482501834411, 33.73872099958812], [-118.37493597722741, 33.73925201334322], [-118.37532499097031, 33.7396840111581], [-118.37663098071059, 33.74060398604405], [-118.37716499335458, 33.74071199865093], [-118.37838901346916, 33.74142299834267], [-118.38016898546643, 33.74210101025819], [-118.38163802005229, 33.74234297322873], [-118.38527698739584, 33.74198899913328], [-118.38584298818635, 33.741368018715846], [-118.38661901641295, 33.741074022395026], [-118.3871299849646, 33.74062397863583], [-118.3887059799154, 33.73977797633865], [-118.38961601111782, 33.73950297298007], [-118.39204200688413, 33.739460988537694], [-118.39282797879432, 33.73905897961026], [-118.39302900956417, 33.738659022553946], [-118.39401301335555, 33.73864797401659], [-118.3952469771537, 33.738145002501724], [-118.39690499434235, 33.73650197975685], [-118.39812101742022, 33.73619798714039], [-118.3987479956153, 33.73626001678647], [-118.39940301605048, 33.736591999031134], [-118.40023202464482, 33.737343983535716], [-118.40050897465052, 33.738226025109775], [-118.40088899172713, 33.7386359784617], [-118.40110901545883, 33.7385909951306], [-118.40114900064195, 33.73877897810375], [-118.40143599955569, 33.73888299219219], [-118.40259499113554, 33.73888099293297], [-118.40247698223317, 33.74020197711676], [-118.40299000265593, 33.74072099531706], [-118.40382700828681, 33.74117198609389], [-118.40576702624108, 33.74156299909598], [-118.40976901695836, 33.741070023876695], [-118.41154499043722, 33.741153992761504], [-118.41136900301923, 33.74194601506127], [-118.41081499778355, 33.74280701180211], [-118.41087497555849, 33.743204022581544], [-118.41185398120173, 33.74417497857617], [-118.41241898236272, 33.74526999386285], [-118.41322200058788, 33.746158980231996], [-118.413576974313, 33.74681000214895], [-118.41357397542421, 33.747312973663895], [-118.41322100095836, 33.74758397850412], [-118.41331801763963, 33.74817502264643], [-118.41303301798526, 33.74888402307901], [-118.41308399909376, 33.74983298722284], [-118.41428497511592, 33.75138898958208], [-118.41463300404597, 33.75155797959314], [-118.41351799616768, 33.75240298226079], [-118.41327698021485, 33.753107984174996], [-118.41378100397158, 33.75389800721572], [-118.41510498704403, 33.754438017637135], [-118.41574801192431, 33.75511997545896], [-118.41584997414138, 33.756180003710476], [-118.41676800238048, 33.756753001908145], [-118.41677000163966, 33.75706998970905], [-118.41714602019793, 33.75783702126937], [-118.41697397868607, 33.75804199794537], [-118.41737398835431, 33.7595989999342], [-118.41813002398925, 33.7599199862535], [-118.41859600920974, 33.760320995551425], [-118.4186150021719, 33.76056101187475], [-118.41758601504931, 33.76165597454927], [-118.41752398540342, 33.76205098606955], [-118.41778172359771, 33.7623476303598], [-118.41182500000016, 33.76338599912765], [-118.41050400000019, 33.763472999127536], [-118.40765100000033, 33.764218999127635], [-118.405264, 33.76414899912759], [-118.40365400000015, 33.76471999912762], [-118.40380900000021, 33.78135099912737], [-118.39997900000023, 33.781667999127315], [-118.39995600000016, 33.78181399912731], [-118.39386400000014, 33.78178099912727], [-118.387306, 33.78201599912737], [-118.38629600000012, 33.78525099912736], [-118.38495300000015, 33.791113999127255], [-118.38420600000012, 33.79361499912725], [-118.38283700000015, 33.79303599912715], [-118.381439, 33.79358299912725], [-118.38142300000015, 33.7938349991272], [-118.379225, 33.79440199912726], [-118.37862200000022, 33.79490999912719], [-118.37853800000018, 33.79546599912712], [-118.37768200000022, 33.79490699912715], [-118.37500500000013, 33.794932999127106], [-118.37169700000015, 33.79470699912734], [-118.36971700000028, 33.79489099912716], [-118.36881500000018, 33.795469999127135]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Rancho Palos Verdes", "population": 0.4274742790899869, "cases": 59.0, "resource_uri": "/1.0/boundary/rancho-palos-verdes-la-county-neighborhood-current/", "external_id": "rancho-palos-verdes", "slug": "rancho-palos-verdes-la-county-neighborhood-current", "metadata": {"sqmi": 13.3940478696, "type": "standalone-city", "name": "Rancho Palos Verdes", "slug": "rancho-palos-verdes"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.414799, 34.03228199912421], [-118.41121100000011, 34.03080999912419], [-118.415111, 34.03200999912428], [-118.418411, 34.03200999912423], [-118.423911, 34.02930999912424], [-118.43029800000014, 34.026819999124214], [-118.430775, 34.02743399912434], [-118.430611, 34.027909999124276], [-118.43145300000012, 34.02992799912413], [-118.431313, 34.03052499912426], [-118.4308350000001, 34.03100699912419], [-118.434397, 34.035327999124206], [-118.434618, 34.03564399912414], [-118.434648, 34.03642799912406], [-118.435039, 34.03693199912408], [-118.4248120000001, 34.041809999123984], [-118.423711, 34.04030999912415], [-118.42331100000011, 34.03950999912405], [-118.421511, 34.03740999912408], [-118.4214110000001, 34.03710999912423], [-118.418411, 34.03620999912418], [-118.41611100000011, 34.03320999912413], [-118.414799, 34.03228199912421]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Rancho Park", "population": 0.06560114503816794, "cases": 11.0, "resource_uri": "/1.0/boundary/rancho-park-la-county-neighborhood-current/", "external_id": "rancho-park", "slug": "rancho-park-la-county-neighborhood-current", "metadata": {"sqmi": 0.599121035635, "type": "segment-of-a-city", "name": "Rancho Park", "slug": "rancho-park"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.36129000000024, 33.8946529991259], [-118.36129000000024, 33.87285799912621], [-118.35471100000017, 33.87285399912624], [-118.35234800000018, 33.87442799912626], [-118.35246100000016, 33.86552599912633], [-118.35883200000022, 33.86554499912623], [-118.35864700000012, 33.863775999126375], [-118.35796300000017, 33.862598999126334], [-118.353065, 33.8587859991264], [-118.35349500000028, 33.858129999126334], [-118.35885400000024, 33.858287999126354], [-118.3753980000002, 33.85825599912639], [-118.37537300000018, 33.85589899912636], [-118.37821900000013, 33.854992999126395], [-118.37665200000032, 33.84589299912657], [-118.375439, 33.839873999126624], [-118.37540600000025, 33.83891399912665], [-118.37477100000024, 33.83723899912662], [-118.37493200000021, 33.83610899912668], [-118.37431500000014, 33.83319499912669], [-118.37269800000018, 33.82756499912682], [-118.37445100000019, 33.827557999126846], [-118.37450700000011, 33.82731499912681], [-118.37450100000017, 33.81961199912684], [-118.37434700000011, 33.8163589991269], [-118.37449200000026, 33.81558199912702], [-118.37961400000017, 33.81638599912691], [-118.380452, 33.81675899912696], [-118.38300500000015, 33.81837999912697], [-118.38442900000011, 33.81901799912686], [-118.38458500000014, 33.81887899912694], [-118.38538000000018, 33.81892099912691], [-118.38544400000018, 33.818035999126906], [-118.3849390000003, 33.81753399912697], [-118.38602600000021, 33.81649299912688], [-118.38554200000019, 33.816083999126896], [-118.38642200000015, 33.8150709991269], [-118.38756100000026, 33.814860999126935], [-118.3879070000002, 33.81461499912696], [-118.388117, 33.815257999126906], [-118.38844100000017, 33.81506299912698], [-118.38862500000012, 33.8153219991269], [-118.38903900000025, 33.814856999126974], [-118.39041600000012, 33.81543699912692], [-118.39159269545188, 33.81532606283313], [-118.39130501682332, 33.815920024502965], [-118.39102001716888, 33.81732697683069], [-118.39080299232577, 33.821632013146676], [-118.39132400978524, 33.82864899190134], [-118.3912379890293, 33.831050996557806], [-118.3914260246145, 33.83183002367293], [-118.39103701087154, 33.83273600374501], [-118.39075401047637, 33.83471300799353], [-118.39080199269627, 33.837717000105464], [-118.3910689990181, 33.83842300164946], [-118.391641997216, 33.838598989067584], [-118.3917440120452, 33.83883400724285], [-118.39240397801628, 33.8387499857461], [-118.39120000310554, 33.83918198356091], [-118.39145401424285, 33.84018498031416], [-118.39181498574534, 33.84085699445228], [-118.39216901245294, 33.84122101745564], [-118.39269897396653, 33.84121601930769], [-118.39428001967745, 33.841896977500014], [-118.39249099840184, 33.841349022653986], [-118.39162900203151, 33.841444987093574], [-118.39115801866288, 33.84067500925664], [-118.39086102345361, 33.84085599482276], [-118.39178499685795, 33.84260997645094], [-118.39216101541629, 33.84249401941965], [-118.39211098132523, 33.84192501974022], [-118.39258101767624, 33.8418639897239], [-118.39324098364713, 33.84229498790905], [-118.39348499848894, 33.84324100577626], [-118.39411997372059, 33.843747975809485], [-118.39471401675144, 33.843642015074074], [-118.39490000046531, 33.84377201953161], [-118.3946609837715, 33.84377201953172], [-118.39458601155309, 33.843957003615884], [-118.3951720049353, 33.84403897324161], [-118.39653397393181, 33.843857987675335], [-118.39821598223041, 33.84608100602494], [-118.39825302113691, 33.84624099936986], [-118.39788999776313, 33.84667899496204], [-118.39740701883967, 33.84684698534355], [-118.39657401172721, 33.84468199812176], [-118.39468497488143, 33.84515498074938], [-118.39590999462561, 33.84853599104907], [-118.39647899430497, 33.84841198436903], [-118.39665598135278, 33.84883698477688], [-118.39889199488681, 33.84826898472705], [-118.39856601041963, 33.84723399982734], [-118.39870601117296, 33.84682599312246], [-118.39996801721148, 33.848425979183205], [-118.39679098395813, 33.84922599851971], [-118.39744500476374, 33.85095898792667], [-118.39766897440185, 33.851004023869905], [-118.40038701984177, 33.85004001267026], [-118.40013600759308, 33.84926398444371], [-118.40039101836001, 33.849118985542496], [-118.40035897760148, 33.848903012941236], [-118.40129200028406, 33.84898198367802], [-118.40158899549358, 33.84883698477685], [-118.40166801884237, 33.84841898177609], [-118.4014010125205, 33.8475189994817], [-118.3995300216193, 33.84382200101052], [-118.39627801614736, 33.841760975265046], [-118.39543001459106, 33.840929020394086], [-118.3996990116304, 33.84363401803734], [-118.40181501700273, 33.84776801247134], [-118.40185400255635, 33.84897098775258], [-118.40142200474159, 33.8496619948528], [-118.40072699912308, 33.850154023054365], [-118.39956101013614, 33.85053398751902], [-118.3994917215088, 33.85172157672294], [-118.39786000000016, 33.85236599912651], [-118.39027300000024, 33.8547449991265], [-118.38759400000016, 33.85578399912639], [-118.38482100000023, 33.85652499912644], [-118.38507600000017, 33.85772399912653], [-118.38529200000022, 33.858055999126385], [-118.38495700000018, 33.858056999126376], [-118.38562400000015, 33.861389999126494], [-118.38551100000011, 33.86273899912637], [-118.38565000000015, 33.863389999126284], [-118.386061, 33.86400699912635], [-118.38604400000027, 33.864677999126336], [-118.3913710000002, 33.87281199912621], [-118.37995500000024, 33.872833999126215], [-118.38002000000013, 33.879649999126045], [-118.37993900000014, 33.88007299912612], [-118.37866700000015, 33.88007299912614], [-118.37867300000018, 33.8814729991261], [-118.37891700000014, 33.8816919991261], [-118.37859900000021, 33.882779999126065], [-118.37872100000016, 33.894645999125906], [-118.36129000000024, 33.8946529991259]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Redondo Beach", "population": 0.6869734283862605, "cases": 106.0, "resource_uri": "/1.0/boundary/redondo-beach-la-county-neighborhood-current/", "external_id": "redondo-beach", "slug": "redondo-beach-la-county-neighborhood-current", "metadata": {"sqmi": 6.24555882131, "type": "standalone-city", "name": "Redondo Beach", "slug": "redondo-beach"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.518518, 34.22080299912185], [-118.518617, 34.19260399912219], [-118.518417, 34.186403999122305], [-118.5623180000001, 34.18650399912217], [-118.562319, 34.193803999122224], [-118.56211900000015, 34.201003999122015], [-118.56221900000014, 34.22010399912182], [-118.518518, 34.22080299912185]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Reseda", "population": 0.8125427780979358, "cases": 223.0, "resource_uri": "/1.0/boundary/reseda-la-county-neighborhood-current/", "external_id": "reseda", "slug": "reseda-la-county-neighborhood-current", "metadata": {"sqmi": 5.86549089197, "type": "segment-of-a-city", "name": "Reseda", "slug": "reseda"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.69144534122944, 34.81809381608004], [-118.69156102425801, 34.818008150724005], [-118.69115658409065, 34.78207662030422], [-118.6781302270347, 34.782051952511], [-118.67801307084945, 34.746046171429775], [-118.67613261154446, 34.74579653951029], [-118.67451773647487, 34.7452247147823], [-118.67294580392753, 34.74500663283228], [-118.66886273683848, 34.743509446989016], [-118.6676220277569, 34.74290783471032], [-118.66688473293097, 34.74279799990152], [-118.66550384593873, 34.74218056198296], [-118.66285410011129, 34.74148835114605], [-118.66205915438721, 34.74139525372864], [-118.660721690654, 34.7416163531032], [-118.65491603577689, 34.73901243436991], [-118.6551956544785, 34.73825006259377], [-118.65485410011131, 34.73792471478252], [-118.65456573576239, 34.73795883353337], [-118.65383987081974, 34.73849396013948], [-118.65113335631783, 34.73814206002154], [-118.64876791469696, 34.73723278739559], [-118.64817733620539, 34.73714979918323], [-118.64754936649359, 34.73732187636423], [-118.64585234822562, 34.73692412746184], [-118.64422682738407, 34.73603380569153], [-118.6432576167749, 34.736256060260544], [-118.64184084561342, 34.735786162819714], [-118.64156059972142, 34.735802174157726], [-118.64140478506788, 34.735991054355004], [-118.64186783516095, 34.73672393392315], [-118.64171429239647, 34.73687692518576], [-118.64138717203849, 34.73636381363903], [-118.64045451256213, 34.735971862855926], [-118.64090691586772, 34.735403035758374], [-118.64087245669131, 34.735103022134645], [-118.64038145194984, 34.73483382693996], [-118.63891803567036, 34.73455023872928], [-118.63589991498918, 34.73468523869639], [-118.63481818181857, 34.73432237973112], [-118.63406818644904, 34.73455931017863], [-118.63312479995851, 34.73460380954145], [-118.63155899161566, 34.73435993742725], [-118.62823155106078, 34.73341460557773], [-118.62747830851308, 34.733386106027226], [-118.62675935803064, 34.73342369648665], [-118.62498249977304, 34.73389546851594], [-118.62245006347818, 34.733858890092385], [-118.62112841038, 34.73426806779661], [-118.61852299439428, 34.73439642375939], [-118.61674940386335, 34.735675856056965], [-118.615097383546, 34.73625833965379], [-118.61333531562168, 34.73541850524179], [-118.61253355487143, 34.735254100232396], [-118.61056319102035, 34.734433805691516], [-118.60931268773514, 34.73460419791307], [-118.60765454545485, 34.73434965245851], [-118.60643208530327, 34.73439642375944], [-118.604667548887, 34.7349237966746], [-118.59874974843528, 34.735861315802836], [-118.59743618547715, 34.733840099805086], [-118.59689063850941, 34.73327574940736], [-118.59359042543029, 34.73150249550141], [-118.59173334061796, 34.72903663333434], [-118.58884519232694, 34.72604848401674], [-118.5812312120231, 34.72188087039616], [-118.57773810804191, 34.71830486146471], [-118.57681713380346, 34.71763668706], [-118.57464530839763, 34.71705932963864], [-118.57090651651612, 34.71702401141169], [-118.57049519246624, 34.7167886069356], [-118.5699115247998, 34.715661926735], [-118.56952202775693, 34.71539874380146], [-118.56655678388393, 34.71483437383825], [-118.56091773647499, 34.712851987509936], [-118.55872124474851, 34.7124711351981], [-118.55417228192935, 34.710788351146306], [-118.54870230595452, 34.71024149621466], [-118.53816479713207, 34.70781598961357], [-118.53586258834899, 34.70660032342384], [-118.53065641652428, 34.70470154684311], [-118.52717657321149, 34.70278965289259], [-118.51940724444997, 34.701104914775065], [-118.51929251023903, 34.64425045980793], [-118.52297443621943, 34.64232970566717], [-118.5237657830749, 34.641366452001485], [-118.52530882037966, 34.64070606688184], [-118.52583287666181, 34.63986403636681], [-118.52610792669027, 34.63973289570174], [-118.5273080428667, 34.639708765629656], [-118.52889972938051, 34.63870606692475], [-118.52925710274566, 34.63812682651302], [-118.52928671023882, 34.63744438187473], [-118.52962175730116, 34.63625882298118], [-118.52955765214115, 34.63531266306264], [-118.53098079832566, 34.63394069713075], [-118.53318485469512, 34.63318873316585], [-118.53416967470967, 34.632365436216325], [-118.53534084548942, 34.63249565363772], [-118.53795882359923, 34.63215812004793], [-118.53879968591815, 34.63189571533373], [-118.54035882356136, 34.6318126651863], [-118.54210699136121, 34.63126843764525], [-118.5432371991756, 34.63011741045445], [-118.54463175448839, 34.63019565371748], [-118.54532121861003, 34.630016005833475], [-118.54580480214962, 34.629534263514344], [-118.54618788967038, 34.628438227264525], [-118.54695625426541, 34.628111523753674], [-118.54889134851543, 34.62660331268217], [-118.55095546036321, 34.62526676081019], [-118.55594030596927, 34.62262487373487], [-118.55864998919255, 34.62179192573674], [-118.55974335540873, 34.6212866194174], [-118.56021209326657, 34.62097572862091], [-118.56163418836654, 34.61940303597853], [-118.56169216445143, 34.61846888023598], [-118.56100317798617, 34.6177826500775], [-118.56100255687872, 34.61706408101835], [-118.56052428651286, 34.61594385136355], [-118.56121785763847, 34.61489895106972], [-118.56125812101018, 34.614059356959295], [-118.56041343444195, 34.61345153769751], [-118.5603029530358, 34.61308488329649], [-118.5608418767229, 34.61232795448033], [-118.56271515882646, 34.6107088192586], [-118.56285020009173, 34.610231880701186], [-118.56249626310259, 34.60948199556683], [-118.56063876926477, 34.60845666325173], [-118.56063085456404, 34.6073980955193], [-118.5609406548108, 34.60660003282423], [-118.56037166546523, 34.60622750859522], [-118.56030689294943, 34.606005119095315], [-118.56079341228619, 34.60504520813433], [-118.56092852822873, 34.60394160780316], [-118.56057576402439, 34.60363853799654], [-118.56024589984936, 34.60361562393114], [-118.55937646421029, 34.604127449840036], [-118.55857924581713, 34.60493784016399], [-118.55714077486111, 34.60534853431785], [-118.55693501815688, 34.60529089100695], [-118.55685943771041, 34.605062067166465], [-118.55735812107743, 34.60427700463528], [-118.55717840363414, 34.603380832489385], [-118.55767752930245, 34.60281608150047], [-118.55799852015194, 34.6018590829597], [-118.5592333404746, 34.60090881957165], [-118.56024175768927, 34.599082634453495], [-118.56195754780188, 34.59753027405138], [-118.56297261799418, 34.596250717675126], [-118.56398873383145, 34.594612126581545], [-118.56404976028648, 34.59396378150228], [-118.56373807211138, 34.59359756503325], [-118.5630177365352, 34.59327016932594], [-118.56181930318829, 34.59334873276721], [-118.5616762512541, 34.59324601436301], [-118.56171162122058, 34.592166856136664], [-118.56224513014742, 34.591180769224245], [-118.56234066964208, 34.590563781540624], [-118.5613316114519, 34.58914176355501], [-118.56129633477308, 34.58757125212864], [-118.56151398302673, 34.58680909000904], [-118.56141389284063, 34.586465734906824], [-118.56106748231774, 34.586198743919276], [-118.55986388190777, 34.58597215172119], [-118.56045580083594, 34.58504929958277], [-118.56039571078985, 34.58433846224234], [-118.56002517330307, 34.5839679242684], [-118.55879451529759, 34.58341249791587], [-118.55856061330987, 34.58292754264172], [-118.55797170575153, 34.582458816725385], [-118.55772509749654, 34.581315144457754], [-118.55711089762173, 34.58059582964877], [-118.55659475491939, 34.58025328910954], [-118.5554376562716, 34.57999155379957], [-118.55532307369685, 34.5795716812963], [-118.55581607740929, 34.5786629444857], [-118.55680357533038, 34.57749518657133], [-118.55673761889079, 34.57693251659908], [-118.55627431974102, 34.575878094444874], [-118.55624829574613, 34.575200601162024], [-118.55656025193869, 34.57463684562422], [-118.55719571095268, 34.57398880873569], [-118.55762467544623, 34.572450295157964], [-118.55857550307582, 34.57125573640958], [-118.55874110878914, 34.57074084451066], [-118.55868149408005, 34.570273774239595], [-118.55751389303373, 34.56762937129984], [-118.55610428697038, 34.56637960418846], [-118.55566375164862, 34.56569220001353], [-118.55553254271365, 34.56517883388429], [-118.55571960998597, 34.56404073713034], [-118.55641437641204, 34.56313643297795], [-118.55860568911154, 34.561687631214006], [-118.56075839152709, 34.56120125465427], [-118.56133262659468, 34.56085436648395], [-118.56169346601894, 34.56026318996254], [-118.56166489169665, 34.559441607818115], [-118.561032360718, 34.55873050189611], [-118.55982860674546, 34.558431911283684], [-118.55821922999756, 34.5586639599567], [-118.55631426961133, 34.559993174391465], [-118.55258520058214, 34.561405668629604], [-118.55146496316979, 34.56135232866104], [-118.54962121858657, 34.560183992340505], [-118.54885454544346, 34.56003147052465], [-118.54797878128467, 34.560220356187635], [-118.54694573027523, 34.56092328560973], [-118.54603139724743, 34.561323419973355], [-118.54457037565963, 34.56130571426388], [-118.54378646998069, 34.56093579650797], [-118.54304990674582, 34.56018320347641], [-118.54176146138646, 34.557042416807946], [-118.54036284422384, 34.55471728012507], [-118.54026710215952, 34.55392433456135], [-118.54065840738791, 34.55317517317322], [-118.541534524242, 34.55240744193792], [-118.54677228357123, 34.54843132305195], [-118.54988485458051, 34.54719782407594], [-118.55497755587608, 34.544446401190534], [-118.55600647151483, 34.54419563970623], [-118.55846791486583, 34.544130847267375], [-118.56016336593223, 34.54326970346909], [-118.56182424986231, 34.54165427403064], [-118.56514527647603, 34.53791444389839], [-118.56701110348291, 34.53372967436338], [-118.57041800351254, 34.530323535016485], [-118.57148071679885, 34.52805236558498], [-118.57451515896993, 34.5259815466001], [-118.57798163983706, 34.52181444388053], [-118.57873745560885, 34.52025840566951], [-118.58145886708786, 34.5173007861726], [-118.58266606079978, 34.51665639435946], [-118.58392486141607, 34.51647781535923], [-118.59312299421401, 34.51903993827007], [-118.5941725813629, 34.51908612299178], [-118.59501989039393, 34.51878425103498], [-118.59581152483265, 34.51801079878253], [-118.59636197213885, 34.51652669205209], [-118.59657398240978, 34.51651293579931], [-118.59629403374984, 34.516404941867755], [-118.59637981618295, 34.51595586062031], [-118.59640941548197, 34.51632622394917], [-118.5965399388082, 34.51631336821591], [-118.59659906809969, 34.51477217335607], [-118.59719647914325, 34.512215617233196], [-118.59832435505086, 34.51096293911665], [-118.60193262651374, 34.50847254825425], [-118.60269571103011, 34.50756153601973], [-118.60294903557397, 34.505795420978366], [-118.60360242362727, 34.503118356809985], [-118.60416500674516, 34.50170382719155], [-118.604703863805, 34.50119209332619], [-118.60676336574812, 34.499933339672964], [-118.60821468522481, 34.498146250708984], [-118.60887416373107, 34.497620978125674], [-118.61019365840289, 34.497168696132874], [-118.61652284094049, 34.49745842151352], [-118.61646303856394, 34.49822410076037], [-118.61814241305626, 34.502934536954], [-118.61892730389535, 34.50322813456262], [-118.61863647474472, 34.50384910090503], [-118.61795601157966, 34.504495379219314], [-118.61692000113601, 34.50446050131412], [-118.61698279886085, 34.50598215402894], [-118.61767053905164, 34.50628672296425], [-118.61873417629806, 34.50617691507223], [-118.6203172721885, 34.50548140708759], [-118.62211151232559, 34.507223144708135], [-118.63279476027965, 34.50716763580372], [-118.63343298993657, 34.50786738322758], [-118.63320219993415, 34.5080171106167], [-118.63436040256609, 34.50900788868631], [-118.63526678261819, 34.51083357370493], [-118.63576650892743, 34.51083389816561], [-118.63621560692009, 34.511519342460716], [-118.63598143920673, 34.51162295573024], [-118.63654444380006, 34.51249553806917], [-118.63642762759619, 34.512552152008524], [-118.63799971885547, 34.514966166103726], [-118.63845582276828, 34.51492832049645], [-118.63892379927942, 34.51536450425173], [-118.63916280507458, 34.51527616619625], [-118.64173536167299, 34.51656320140545], [-118.64288279486698, 34.51586958277141], [-118.64266178190435, 34.51523992058791], [-118.64348059560706, 34.51507725025385], [-118.64039904680152, 34.509269253045794], [-118.63942833802002, 34.508501497533395], [-118.63880906292567, 34.509038039544244], [-118.6371179444342, 34.50876782161785], [-118.63705040176072, 34.50844376074915], [-118.63658013221021, 34.50837835404414], [-118.6366941508092, 34.5079611759781], [-118.63896211011352, 34.508132766630695], [-118.63903271110452, 34.50748639661552], [-118.63928564083274, 34.507512925860176], [-118.63933774405231, 34.507213296209564], [-118.63888626933603, 34.50721306264498], [-118.63888216475837, 34.506535783929195], [-118.63765893510309, 34.50579421167156], [-118.63716772401699, 34.50579679038477], [-118.63736389982537, 34.50617403480643], [-118.63726050996567, 34.50620549118244], [-118.63577566568485, 34.50593702989988], [-118.63579474370327, 34.50564491231973], [-118.63533294056182, 34.50552100899098], [-118.63306988812268, 34.50543860451466], [-118.6329770710197, 34.50523687104469], [-118.63247684722712, 34.50550736939287], [-118.6316633442705, 34.50446660972265], [-118.6322755157313, 34.504138183213335], [-118.63031098860803, 34.501424167278955], [-118.63036313958482, 34.50092122482144], [-118.63144408261913, 34.50015065009351], [-118.63404470553277, 34.49959208049052], [-118.6339617399341, 34.49837376883295], [-118.63308972660292, 34.49766697288239], [-118.63247608435995, 34.49752010855625], [-118.63211083294728, 34.497232492937435], [-118.63146427920373, 34.4978783695836], [-118.62973677371647, 34.498323515048995], [-118.62940224423005, 34.49827485295406], [-118.62900744492052, 34.49784031439963], [-118.62853284668178, 34.497834556645785], [-118.62859566665668, 34.498180437842805], [-118.62847947009791, 34.498224868523465], [-118.62808483912619, 34.49808017296587], [-118.6278183501601, 34.497314230650865], [-118.62781743658375, 34.49634846200512], [-118.63012480698447, 34.49634705965063], [-118.63003986567593, 34.4926984378849], [-118.63439132267126, 34.49270440954759], [-118.63447645033298, 34.4963530183693], [-118.64833543957346, 34.49633886967816], [-118.6482262125282, 34.48909118453746], [-118.65134389576865, 34.48907999234852], [-118.65132620877448, 34.48838901882277], [-118.65248770584566, 34.48838904613696], [-118.65250526914066, 34.48907578838563], [-118.65374751812891, 34.489075782526484], [-118.65426014223749, 34.487913105859796], [-118.65332907272915, 34.487453203842776], [-118.65266957842957, 34.48645220323546], [-118.65158486209121, 34.48603603530846], [-118.65157995140645, 34.48545966254139], [-118.65597900470797, 34.485471830546246], [-118.65594071038667, 34.483653010938916], [-118.66026991596034, 34.48366531741147], [-118.66025740951665, 34.48184608404435], [-118.67808453954109, 34.48160081997346], [-118.68599132673813, 34.48171217180006], [-118.68599310462095, 34.48145205736046], [-118.68655032665633, 34.48165939560138], [-118.72956297831763, 34.48122198010897], [-118.73849200000028, 34.49917599911882], [-118.74615600000023, 34.51405599911852], [-118.77576400000022, 34.574427999117724], [-118.79387700000039, 34.610992999117386], [-118.81729500000027, 34.65752099911687], [-118.84795600000028, 34.72139099911606], [-118.84820400000035, 34.72143799911606], [-118.88736200000022, 34.80189799911518], [-118.87947000000024, 34.801571999115204], [-118.85901000000023, 34.80158099911513], [-118.85901000000034, 34.817776999115], [-118.79068600000028, 34.81770499911497], [-118.69144534122944, 34.81809381608004]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Ridge Route", "population": null, "cases": null, "resource_uri": "/1.0/boundary/ridge-route-la-county-neighborhood-current/", "external_id": "ridge-route", "slug": "ridge-route-la-county-neighborhood-current", "metadata": {"sqmi": 292.673206784, "type": "unincorporated-area", "name": "Ridge Route", "slug": "ridge-route"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.3519740000002, 33.795781999127186], [-118.34565700000022, 33.790951999127365], [-118.34192200000022, 33.78765099912729], [-118.340491, 33.78663499912738], [-118.34048000000026, 33.78613299912744], [-118.33415000000025, 33.780799999127375], [-118.33272, 33.78021699912735], [-118.3300050000002, 33.78041699912738], [-118.32990500000011, 33.7852159991273], [-118.3280050000002, 33.7852159991272], [-118.3280050000002, 33.78611599912734], [-118.32560500000011, 33.78631599912725], [-118.32547000000015, 33.785858999127306], [-118.32448900000014, 33.785914999127264], [-118.32165700000014, 33.785681999127256], [-118.319009, 33.784663999127346], [-118.31903600000014, 33.78442299912729], [-118.31848900000021, 33.78461599912726], [-118.316856, 33.783858999127304], [-118.31633200000016, 33.783795999127314], [-118.31900400000016, 33.78170899912735], [-118.31805200000011, 33.781712999127365], [-118.31760500000019, 33.7809169991273], [-118.31741200000027, 33.78091699912735], [-118.31722000000018, 33.780603999127415], [-118.31663300000022, 33.780566999127316], [-118.31655400000014, 33.78007199912729], [-118.31572500000016, 33.779533999127324], [-118.315946, 33.77911099912741], [-118.31657700000011, 33.778736999127396], [-118.31607300000015, 33.7786899991274], [-118.31633900000014, 33.77813899912743], [-118.31572300000016, 33.77708199912748], [-118.3161450000001, 33.77688299912744], [-118.31677500000015, 33.77718299912742], [-118.31829600000025, 33.77528599912738], [-118.31840500000028, 33.77081699912754], [-118.31830500000018, 33.77011699912747], [-118.31850800000014, 33.76864699912761], [-118.31860000000012, 33.764974999127546], [-118.32204000000023, 33.76507999912752], [-118.32220500000018, 33.76516199912757], [-118.32170500000021, 33.7652029991276], [-118.32154900000018, 33.76535299912751], [-118.321546, 33.76568799912753], [-118.32245400000014, 33.76651199912749], [-118.32327600000013, 33.768470999127516], [-118.32412100000016, 33.768109999127546], [-118.32563600000017, 33.768225999127495], [-118.32577300000018, 33.76798299912763], [-118.32616100000011, 33.767986999127494], [-118.32621800000011, 33.76775899912756], [-118.326647, 33.76786499912751], [-118.32699800000015, 33.767048999127496], [-118.32806400000021, 33.76770199912754], [-118.33000000000015, 33.76739599912756], [-118.33171400000015, 33.76681899912755], [-118.33152500000023, 33.76816099912746], [-118.33081400000015, 33.76863899912755], [-118.33152700000022, 33.769350999127596], [-118.33235600000023, 33.768916999127555], [-118.33304200000012, 33.76825699912757], [-118.33340500000018, 33.76701699912753], [-118.33575500000016, 33.76623499912753], [-118.33602500000012, 33.766670999127484], [-118.33641200000014, 33.76653599912758], [-118.33726000000019, 33.76716399912757], [-118.33553500000014, 33.768208999127616], [-118.3332050000001, 33.76901699912752], [-118.33254100000018, 33.77211999912744], [-118.33702400000014, 33.772249999127474], [-118.338211, 33.77262199912752], [-118.35233500000021, 33.78244999912735], [-118.3525980000002, 33.78162699912738], [-118.35318000000011, 33.781715999127464], [-118.35375500000032, 33.78227199912747], [-118.353908, 33.78291099912725], [-118.35373800000012, 33.78300399912737], [-118.3540330000002, 33.7832489991273], [-118.35713100000018, 33.782550999127366], [-118.35753000000015, 33.78173699912738], [-118.35860400000023, 33.7815529991274], [-118.35873000000018, 33.78108099912731], [-118.36046100000017, 33.780874999127306], [-118.36141100000019, 33.779979999127356], [-118.36257600000016, 33.77792799912754], [-118.36185900000012, 33.77676199912745], [-118.36167700000017, 33.77539599912734], [-118.3599480000002, 33.773332999127454], [-118.36026500000027, 33.77261399912748], [-118.36070700000013, 33.77217399912754], [-118.362474, 33.77125299912754], [-118.36325100000013, 33.76945099912756], [-118.3642150000001, 33.76849299912751], [-118.3665550000002, 33.7677139991276], [-118.36727400000024, 33.767645999127495], [-118.369501, 33.7683239991275], [-118.37055000000012, 33.76817999912756], [-118.37130200000016, 33.769186999127506], [-118.37521700000015, 33.771594999127444], [-118.3767310000003, 33.77071399912753], [-118.377135, 33.769827999127315], [-118.37836100000011, 33.769319999127596], [-118.38070500000029, 33.768800999127535], [-118.38034500000018, 33.768327999127536], [-118.379647, 33.76667599912758], [-118.37889000000021, 33.76366099912754], [-118.3785960000002, 33.761660999127464], [-118.3789940000003, 33.76162499912758], [-118.37871000000024, 33.75928499912767], [-118.38397600000017, 33.75896999912762], [-118.3849680000002, 33.758597999127545], [-118.38739300000015, 33.75722399912775], [-118.38838300000012, 33.757077999127695], [-118.3890900000002, 33.7572489991277], [-118.38957600000018, 33.75757799912763], [-118.3909210000002, 33.75963399912762], [-118.3933440000002, 33.76099699912762], [-118.3912480000002, 33.764140999127704], [-118.3908100000002, 33.76543599912764], [-118.3905530000002, 33.76504499912762], [-118.389715, 33.765317999127596], [-118.38901600000013, 33.76574899912757], [-118.38778600000015, 33.76695599912757], [-118.38690400000027, 33.76830099912762], [-118.38082900000023, 33.76950499912749], [-118.38123300000017, 33.77090299912751], [-118.38122700000015, 33.77187099912748], [-118.38149100000017, 33.773271999127445], [-118.383622, 33.77309599912749], [-118.38379100000016, 33.77446899912742], [-118.38298500000018, 33.77471799912747], [-118.38259800000024, 33.774661999127396], [-118.38153500000017, 33.775452999127296], [-118.38133000000022, 33.7753059991274], [-118.38099300000025, 33.77585099912737], [-118.37893400000019, 33.777191999127375], [-118.37828000000017, 33.77670799912738], [-118.37464400000015, 33.77780599912732], [-118.37291900000017, 33.784290999127265], [-118.37204900000019, 33.78273599912737], [-118.3696520000002, 33.78107299912738], [-118.3700960000002, 33.779824999127385], [-118.37072400000017, 33.77890799912734], [-118.37141000000018, 33.778243999127355], [-118.37280300000012, 33.77718999912737], [-118.3748880000002, 33.77657799912738], [-118.3750530000002, 33.775323999127444], [-118.37469200000011, 33.77446999912745], [-118.37374900000019, 33.77343199912747], [-118.371916, 33.77218299912747], [-118.37125000000019, 33.77279299912741], [-118.3681390000002, 33.77155199912741], [-118.3654690000002, 33.77133599912752], [-118.3655210000002, 33.769713999127525], [-118.36449600000014, 33.76903199912752], [-118.3631370000002, 33.771325999127484], [-118.36156500000016, 33.77252399912748], [-118.36102700000018, 33.773449999127436], [-118.36137600000025, 33.774173999127505], [-118.36270900000015, 33.775437999127355], [-118.36308700000015, 33.777097999127406], [-118.3637190000002, 33.777724999127415], [-118.3643350000002, 33.77795699912742], [-118.36394000000021, 33.77884399912737], [-118.36333600000015, 33.778659999127434], [-118.36325300000017, 33.77935999912746], [-118.3642620000002, 33.781235999127354], [-118.3655070000002, 33.78562799912725], [-118.36794600000015, 33.78437899912735], [-118.36888100000021, 33.78500199912736], [-118.37059200000019, 33.785506999127314], [-118.37260200000011, 33.78551399912735], [-118.372147, 33.787475999127274], [-118.37152400000022, 33.78833799912725], [-118.36978500000019, 33.789667999127246], [-118.36874600000023, 33.79107999912728], [-118.367912, 33.791457999127196], [-118.36873400000019, 33.792656999127175], [-118.36760200000016, 33.79347199912716], [-118.36750600000016, 33.79441599912723], [-118.36720300000019, 33.79511599912726], [-118.3519740000002, 33.795781999127186]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Rolling Hills Estates", "population": 0.08112830753869196, "cases": 13.0, "resource_uri": "/1.0/boundary/rolling-hills-estates-la-county-neighborhood-current/", "external_id": "rolling-hills-estates", "slug": "rolling-hills-estates-la-county-neighborhood-current", "metadata": {"sqmi": 3.81434802056, "type": "standalone-city", "name": "Rolling Hills Estates", "slug": "rolling-hills-estates"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.35295700000012, 33.781681999127265], [-118.3525980000002, 33.78162699912738], [-118.35233500000021, 33.78244999912735], [-118.34016200000016, 33.77388599912744], [-118.33800700000026, 33.77251699912749], [-118.33702400000014, 33.772249999127474], [-118.33254100000018, 33.77211999912744], [-118.3332050000001, 33.76901699912752], [-118.33553500000014, 33.768208999127616], [-118.33666, 33.767639999127574], [-118.337776, 33.76656799912756], [-118.33805500000013, 33.765750999127405], [-118.33801300000019, 33.76528699912758], [-118.33791100000015, 33.76475699912758], [-118.33730500000027, 33.76361699912757], [-118.3376540000002, 33.76342999912766], [-118.33752700000012, 33.763216999127664], [-118.33778200000029, 33.763099999127576], [-118.33647800000017, 33.76118999912751], [-118.33625200000014, 33.76147299912768], [-118.33025800000019, 33.75977499912754], [-118.330102, 33.75906999912763], [-118.33215300000012, 33.75826799912764], [-118.33110900000014, 33.75710399912772], [-118.33116000000021, 33.75569099912773], [-118.33062600000014, 33.75479199912776], [-118.32957000000019, 33.751464999127755], [-118.33008000000017, 33.75106099912769], [-118.33099900000016, 33.751488999127695], [-118.33376600000014, 33.75054199912775], [-118.33606800000024, 33.748050999127756], [-118.33663300000015, 33.747826999127724], [-118.33820800000017, 33.747620999127776], [-118.33839800000018, 33.74550799912782], [-118.33885600000013, 33.74469799912774], [-118.33941900000015, 33.744507999127855], [-118.33941900000015, 33.74309499912774], [-118.33997000000014, 33.74284199912789], [-118.34010500000016, 33.74261699912779], [-118.34450500000015, 33.74471699912779], [-118.34600500000013, 33.742116999127795], [-118.347376, 33.742527999127844], [-118.35015000000018, 33.74287099912785], [-118.35299000000012, 33.74508099912775], [-118.3555340000002, 33.74250399912788], [-118.3571050000001, 33.74281799912784], [-118.358662, 33.74512099912788], [-118.35740600000021, 33.74619999912793], [-118.35681100000019, 33.747101999127814], [-118.35616900000018, 33.7485929991278], [-118.35320500000013, 33.75071699912775], [-118.35450500000013, 33.751516999127716], [-118.35540100000011, 33.75337699912774], [-118.35450500000013, 33.75381699912777], [-118.3557620000002, 33.754810999127734], [-118.35586500000026, 33.75540899912771], [-118.3552050000002, 33.75591699912762], [-118.36433700000018, 33.75979699912763], [-118.36431500000018, 33.75998399912768], [-118.36554200000013, 33.760269999127594], [-118.36563400000027, 33.76152299912763], [-118.365715, 33.76161799912763], [-118.366194, 33.76136899912763], [-118.36668300000022, 33.76192499912764], [-118.36598400000022, 33.762687999127635], [-118.36564300000018, 33.76240899912762], [-118.36521900000025, 33.76513099912755], [-118.36569200000012, 33.76702799912757], [-118.36492600000014, 33.768176999127526], [-118.3642150000001, 33.76849299912751], [-118.36344900000017, 33.76918099912751], [-118.362474, 33.77125299912754], [-118.36070700000013, 33.77217399912754], [-118.36026500000027, 33.77261399912748], [-118.3599480000002, 33.773332999127454], [-118.36167700000017, 33.77539599912734], [-118.36185900000012, 33.77676199912745], [-118.36257600000016, 33.77792799912754], [-118.36141100000019, 33.779979999127356], [-118.36046100000017, 33.780874999127306], [-118.35873000000018, 33.78108099912731], [-118.35860400000023, 33.7815529991274], [-118.35753000000015, 33.78173699912738], [-118.35713100000018, 33.782550999127366], [-118.354328, 33.783210999127235], [-118.3540330000002, 33.7832489991273], [-118.35373800000012, 33.78300399912737], [-118.353908, 33.78291099912725], [-118.35375500000032, 33.78227199912747], [-118.35318000000011, 33.781715999127464], [-118.35295700000012, 33.781681999127265]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Rolling Hills", "population": 0.019398642095053348, "cases": 1.0, "resource_uri": "/1.0/boundary/rolling-hills-la-county-neighborhood-current/", "external_id": "rolling-hills", "slug": "rolling-hills-la-county-neighborhood-current", "metadata": {"sqmi": 3.60212631276, "type": "standalone-city", "name": "Rolling Hills", "slug": "rolling-hills"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.06264300000016, 34.08342899912364], [-118.0630020000003, 34.08118899912365], [-118.05966400000017, 34.08128799912366], [-118.05928600000016, 34.082107999123494], [-118.06058200000015, 34.08227299912366], [-118.06047000000012, 34.08264199912356], [-118.06003100000014, 34.08270399912356], [-118.05985800000012, 34.083242999123584], [-118.05765100000012, 34.08285899912365], [-118.05676100000014, 34.08510299912354], [-118.05615400000018, 34.08488899912366], [-118.055777, 34.08409199912366], [-118.05575500000023, 34.0807789991237], [-118.05606800000017, 34.08042999912366], [-118.05575200000014, 34.08029399912365], [-118.055601, 34.072451999123885], [-118.07292700000032, 34.07226599912368], [-118.0728540000002, 34.07095699912372], [-118.072231, 34.069679999123785], [-118.06756500000029, 34.065165999123856], [-118.068222, 34.06488199912388], [-118.06895900000018, 34.065781999123764], [-118.069121, 34.06569899912392], [-118.0689080000002, 34.06433299912384], [-118.06924000000022, 34.06410699912378], [-118.06956500000018, 34.06422899912386], [-118.07036, 34.062690999123916], [-118.0676110000002, 34.06268899912387], [-118.07024400000012, 34.0606019991239], [-118.070673, 34.05974999912389], [-118.07117700000019, 34.057210999124045], [-118.07149600000021, 34.057443999123976], [-118.07544000000016, 34.0577259991239], [-118.07562900000019, 34.05448699912407], [-118.07890000000012, 34.05441099912392], [-118.07999800000022, 34.051716999124004], [-118.08002100000017, 34.049880999123964], [-118.08185600000022, 34.04965399912406], [-118.0818310000002, 34.04447399912408], [-118.08235800000016, 34.04450999912414], [-118.08245200000023, 34.04407499912407], [-118.08091200000014, 34.044030999124146], [-118.08085900000022, 34.043586999124166], [-118.07968400000017, 34.04350599912408], [-118.07970100000018, 34.042910999124125], [-118.07920300000015, 34.042831999124125], [-118.07913200000014, 34.042585999124114], [-118.07738600000029, 34.042294999124096], [-118.07738500000019, 34.0419899991241], [-118.07936400000013, 34.042600999124126], [-118.07932600000024, 34.0423439991242], [-118.07830300000018, 34.04122299912419], [-118.07634600000029, 34.04051299912403], [-118.077833, 34.04027199912417], [-118.078132, 34.03951299912414], [-118.079354, 34.039817999124104], [-118.080698, 34.039327999124154], [-118.0782580000002, 34.03606399912432], [-118.07907900000019, 34.03531299912416], [-118.07949500000014, 34.03584399912421], [-118.080019, 34.03574799912415], [-118.0800540000001, 34.03525199912416], [-118.08041800000017, 34.03474999912422], [-118.08164600000016, 34.03423999912427], [-118.08247600000011, 34.034082999124145], [-118.08257100000019, 34.034353999124264], [-118.08305600000014, 34.03451399912425], [-118.08326100000019, 34.034993999124275], [-118.08299600000021, 34.036643999124244], [-118.08317700000026, 34.036686999124214], [-118.08296300000023, 34.037428999124174], [-118.083209, 34.03769899912425], [-118.08515400000014, 34.0376639991242], [-118.08539600000012, 34.03775199912413], [-118.08578900000019, 34.03868199912418], [-118.089711, 34.03958999912417], [-118.09068800000014, 34.040071999124095], [-118.09077898546539, 34.040450002840224], [-118.08971697178768, 34.041936005752866], [-118.09006197178826, 34.042086005753234], [-118.08901598589202, 34.04380399722181], [-118.08593598914477, 34.0425100054049], [-118.08563197178174, 34.04279100575302], [-118.08574998570838, 34.043862999960446], [-118.08430500000254, 34.0438640024294], [-118.08443600000025, 34.04316699912421], [-118.08434898589, 34.04286900078127], [-118.08386698541618, 34.04286900492409], [-118.08378098635754, 34.04316999997346], [-118.08182798589166, 34.04317400408108], [-118.08182498597223, 34.04377100356109], [-118.08298598580477, 34.04368400131657], [-118.08309798585381, 34.04439500423397], [-118.08432798592486, 34.04441900064487], [-118.08436697177885, 34.04586500575684], [-118.0840299717781, 34.04697900575828], [-118.08419998570494, 34.048209004668884], [-118.08617198607443, 34.048372000215195], [-118.08616898590506, 34.04986300403629], [-118.08830298598042, 34.04989400047001], [-118.08839398595414, 34.051719003766515], [-118.09048798582899, 34.0516190011289], [-118.09049098546375, 34.05186500515446], [-118.09253198590727, 34.052148000730824], [-118.09254198589167, 34.05266700241818], [-118.091005985896, 34.05302500245934], [-118.09107198542452, 34.05398800521957], [-118.09824098615073, 34.05519800204176], [-118.10049798593595, 34.055366000067224], [-118.1005249929205, 34.05442000339649], [-118.10142098705734, 34.0544299998499], [-118.10198099637624, 34.053587007142674], [-118.1030019870003, 34.053809998160155], [-118.10340199284221, 34.05341000628184], [-118.1043979718041, 34.05364500577156], [-118.10482597180435, 34.05420900577236], [-118.10474298553585, 34.05434700505092], [-118.10501298626865, 34.054384999845674], [-118.10599298588991, 34.05534100416484], [-118.10803299114485, 34.05533799954464], [-118.10810800000017, 34.06256399912382], [-118.10697300000017, 34.06257299912391], [-118.10714300000019, 34.06404299912373], [-118.10671200000023, 34.064024999123816], [-118.10671200000023, 34.065455999123856], [-118.10713100000015, 34.06546199912378], [-118.10720500000014, 34.066221999123776], [-118.10710300000014, 34.06985899912378], [-118.10814600000019, 34.0698529991238], [-118.10815000000021, 34.07001699912377], [-118.10685100000016, 34.07110199912379], [-118.10676800000016, 34.07167499912378], [-118.101408, 34.07170599912384], [-118.10038100000013, 34.07141699912381], [-118.1000780000002, 34.07111399912373], [-118.09954300000017, 34.07116699912377], [-118.09954300000017, 34.072124999123666], [-118.0967690000002, 34.07210999912372], [-118.09666700000017, 34.07198199912381], [-118.09060600000012, 34.07220099912383], [-118.09060600000012, 34.07233299912374], [-118.08709500000013, 34.07222299912372], [-118.08719100000016, 34.074862999123745], [-118.08890700000012, 34.07485299912374], [-118.08885300000011, 34.076520999123716], [-118.08782800000016, 34.07657099912376], [-118.08788200000028, 34.080280999123616], [-118.083337, 34.08045799912362], [-118.086718, 34.08453999912359], [-118.08741800000011, 34.08574899912361], [-118.087831, 34.09174099912343], [-118.08730400000012, 34.09174399912352], [-118.08740100000017, 34.095208999123514], [-118.06220700000014, 34.08690199912355], [-118.062032, 34.085998999123625], [-118.06264300000016, 34.08342899912364]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Rosemead", "population": 0.5535347145342401, "cases": 35.0, "resource_uri": "/1.0/boundary/rosemead-la-county-neighborhood-current/", "external_id": "rosemead", "slug": "rosemead-la-county-neighborhood-current", "metadata": {"sqmi": 5.15664047031, "type": "standalone-city", "name": "Rosemead", "slug": "rosemead"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.8716720000003, 34.001513999124704], [-117.87109900000013, 33.99924299912468], [-117.86797100000022, 33.999780999124674], [-117.86685200000028, 33.9986249991247], [-117.86682900000024, 33.99834699912468], [-117.86460938339451, 33.99642482824501], [-117.86388295826755, 33.99645013837059], [-117.85521363917898, 33.990155158256535], [-117.85511995741186, 33.98095713833877], [-117.855227957423, 33.98022813833647], [-117.8550309574045, 33.978400138333164], [-117.85493400019368, 33.960871227961576], [-117.85845498625667, 33.95914313183329], [-117.86062160982925, 33.95725084017893], [-117.86128747225256, 33.95640114904498], [-117.86590039337976, 33.94900276641749], [-117.86693553767877, 33.94772298697796], [-117.8687089767349, 33.94593326592307], [-117.86839712505662, 33.945950726402316], [-117.86877869440288, 33.94556915478152], [-117.87019200000033, 33.945511999125486], [-117.91135000000038, 33.94589499912555], [-117.91141425104247, 33.94606572922109], [-117.91193128207426, 33.94606644936823], [-117.91186702213209, 33.94629048245677], [-117.91512185589627, 33.946976666406215], [-117.9156262077047, 33.94700380809202], [-117.91562688834074, 33.94686503826685], [-117.91956003430666, 33.94748754587738], [-117.9195594268623, 33.94608344038388], [-117.91972775586181, 33.94608354533831], [-117.91972800000028, 33.94595699912531], [-117.92575900000034, 33.94602899912533], [-117.92152000000029, 33.95955799912527], [-117.92151900000033, 33.959947999125234], [-117.91825867124444, 33.9692003121868], [-117.93304859109689, 33.97264282614802], [-117.93127241963795, 33.989887898028606], [-117.93193032775173, 33.989937459905754], [-117.93183742656878, 33.99075329132875], [-117.93015300000027, 33.9909679991248], [-117.92249796404523, 33.9903281383781], [-117.9139589632042, 33.989929138374805], [-117.91294096310408, 33.989743138374116], [-117.9118099629927, 33.98929413837476], [-117.9116349629742, 33.99224713837821], [-117.91121496293236, 33.993781138381074], [-117.91095396290635, 33.99406313838341], [-117.9103229628441, 33.99405713838064], [-117.9101039628227, 33.9938811383808], [-117.907138342267, 33.99371744510482], [-117.90673700000036, 33.99389599912482], [-117.90548500000024, 33.99398899912485], [-117.90631600000025, 33.993390999124905], [-117.90591100000022, 33.993068999124894], [-117.90538800000031, 33.99316699912492], [-117.90516900000031, 33.99382499912484], [-117.90185102173244, 33.993976909836924], [-117.90206896203055, 33.99494013838056], [-117.90045596187167, 33.994906138379704], [-117.89797896162781, 33.994468138378274], [-117.89395750716774, 33.99440945270529], [-117.89371687037843, 33.99633969423157], [-117.89416200000028, 33.997324999124736], [-117.88834552026425, 33.997589064710624], [-117.8882173882984, 33.998714217319936], [-117.88746781777154, 33.998658211243175], [-117.88740011977562, 33.99929485382003], [-117.88814482977467, 33.99935140934569], [-117.88803332515181, 34.0003305434803], [-117.88719380611474, 34.00026069675503], [-117.8871764713172, 34.00041793990214], [-117.88559115390399, 34.00010165379006], [-117.8836216393991, 33.99944042216002], [-117.88372830463305, 33.998607458027365], [-117.8827384745621, 33.99852148199932], [-117.88221196007238, 33.998182138379725], [-117.88222396007373, 33.99791113837954], [-117.8817949600315, 33.99793013837927], [-117.88188671828368, 33.995265102617665], [-117.87908638990902, 33.99478143415026], [-117.87383472115614, 33.99356954750109], [-117.87382789380227, 33.99540096225712], [-117.87322860890653, 33.99543179743306], [-117.8732345081478, 33.994126687920236], [-117.87313600000024, 33.99535099912473], [-117.87265900000021, 33.99530399912474], [-117.87285205645898, 33.993325487646324], [-117.87001000000022, 33.99291099912479], [-117.86972712960589, 33.993035874524374], [-117.86973500000018, 33.9944249991248], [-117.86891900000013, 33.994632999124754], [-117.86837284417807, 33.99377009212257], [-117.86508399800844, 33.996372574645335], [-117.8654290000002, 33.99693999912487], [-117.86714200000029, 33.998592999124796], [-117.8763820000004, 33.99816699912471], [-117.87613700000026, 33.99926799912469], [-117.87715500000029, 33.99923299912482], [-117.87726200000027, 33.99948399912471], [-117.87777100000025, 33.99941699912468], [-117.87787900000016, 33.99966799912474], [-117.87661900000025, 34.00011399912473], [-117.87649600000027, 34.000455999124775], [-117.87594400000027, 34.00039699912464], [-117.87465000000026, 34.001046999124675], [-117.8716750000002, 34.00163799912464], [-117.8716720000003, 34.001513999124704]], [[-117.88376496022595, 33.99757313838076], [-117.88377196022635, 33.9978401383797], [-117.88817559647816, 33.997485470587655], [-117.88831019396278, 33.99633580367614], [-117.88396796024672, 33.99562513837574], [-117.88376496022595, 33.99757313838076]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Rowland Heights", "population": 0.5102040816326531, "cases": 51.0, "resource_uri": "/1.0/boundary/rowland-heights-la-county-neighborhood-current/", "external_id": "rowland-heights", "slug": "rowland-heights-la-county-neighborhood-current", "metadata": {"sqmi": 13.1853488623, "type": "unincorporated-area", "name": "Rowland Heights", "slug": "rowland-heights"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.78050700000018, 34.166950999122555], [-117.780691, 34.14710699912282], [-117.77609, 34.14712299912289], [-117.77611700000016, 34.145840999122846], [-117.776481, 34.145087999122886], [-117.7759960000002, 34.14456199912285], [-117.77446700000014, 34.14407399912286], [-117.77421200000018, 34.14413699912288], [-117.77367900000016, 34.14478599912278], [-117.77274800000019, 34.143499999122824], [-117.77355700000018, 34.14316199912281], [-117.77328000000016, 34.14262099912295], [-117.77300500000014, 34.14271599912299], [-117.773168, 34.14231599912293], [-117.77262400000014, 34.1424359991229], [-117.77247800000016, 34.142803999122926], [-117.77250500000018, 34.14228299912298], [-117.77363600000024, 34.141221999122884], [-117.77342100000018, 34.140745999122935], [-117.774335, 34.13940599912293], [-117.775946, 34.13923399912291], [-117.77701800000011, 34.13931699912293], [-117.78079900000021, 34.134609999123], [-117.782562, 34.13356099912303], [-117.78334400000016, 34.13291099912303], [-117.7836, 34.130496999123096], [-117.78469300000017, 34.12918099912306], [-117.78539400000017, 34.12870299912308], [-117.78729700000017, 34.12854599912308], [-117.78739800000012, 34.12815799912307], [-117.7899010000001, 34.127319999123074], [-117.794151, 34.12542799912313], [-117.79417400000018, 34.12360099912314], [-117.79309100000012, 34.12368099912307], [-117.79298500000013, 34.12227299912315], [-117.79398300000021, 34.12242899912323], [-117.79396100000015, 34.119076999123166], [-117.79179400000018, 34.11911999912317], [-117.79174000000015, 34.11607599912318], [-117.79174000000015, 34.11570599912316], [-117.79404300000023, 34.11570599912316], [-117.79406300000015, 34.106661999123354], [-117.79171600000011, 34.10666599912337], [-117.79173600000018, 34.10404699912344], [-117.79134700000014, 34.103019999123354], [-117.79403600000018, 34.1030249991234], [-117.79400800000013, 34.1022659991234], [-117.79588700000019, 34.10273199912343], [-117.796251, 34.10121399912346], [-117.801299, 34.10122599912341], [-117.80139200000022, 34.100461999123375], [-117.80138300000019, 34.099402999123406], [-117.79871000000013, 34.099484999123426], [-117.79786400000012, 34.09990599912338], [-117.797281, 34.09974599912336], [-117.79707500000028, 34.0995809991234], [-117.7971480000001, 34.09934799912342], [-117.79654900000024, 34.09842499912345], [-117.79677800000017, 34.09707099912347], [-117.79507800000022, 34.095772999123454], [-117.79472700000024, 34.09532999912351], [-117.7930440000002, 34.09529799912343], [-117.790866, 34.095923999123514], [-117.78992200000016, 34.09601099912347], [-117.78675400000019, 34.0953489991235], [-117.787726, 34.0944209991236], [-117.78916500000017, 34.09468499912347], [-117.79037100000015, 34.094580999123494], [-117.79259300000011, 34.093635999123535], [-117.79291100000023, 34.0930619991235], [-117.793172, 34.09307399912352], [-117.79242500000014, 34.0913399991235], [-117.784948, 34.09032899912358], [-117.78430600000011, 34.08925399912351], [-117.783686, 34.088976999123595], [-117.78397900000017, 34.087944999123586], [-117.78482300000017, 34.087923999123376], [-117.785064, 34.08761099912354], [-117.78577500000029, 34.08789999912362], [-117.78641100000011, 34.087883999123605], [-117.78641100000017, 34.08767299912358], [-117.78538700000011, 34.0853849991236], [-117.78433100000014, 34.08485699912359], [-117.78209100000014, 34.08482499912357], [-117.78099100000021, 34.08340899912357], [-117.78309100000016, 34.08160899912363], [-117.78364600000016, 34.08093199912368], [-117.77964000000014, 34.07904799912365], [-117.78042600000019, 34.07774699912371], [-117.78097500000023, 34.077182999123636], [-117.78162400000015, 34.076804999123716], [-117.78360000000015, 34.07628599912368], [-117.7850490000001, 34.07564199912378], [-117.788307, 34.07311599912376], [-117.79138900000018, 34.07211699912377], [-117.7923650000002, 34.07198599912377], [-117.79363300000026, 34.07120599912374], [-117.7942750000002, 34.071402999123734], [-117.7944680000002, 34.070854999123796], [-117.79519000000015, 34.07060699912382], [-117.79523900000017, 34.07022299912374], [-117.79600700000015, 34.06987799912379], [-117.79613200000018, 34.070084999123814], [-117.79712200000013, 34.06971199912376], [-117.79730000000018, 34.069916999123755], [-117.79797700000017, 34.069608999123815], [-117.79788700000019, 34.069442999123815], [-117.79897000000018, 34.06881399912383], [-117.79941600000012, 34.068343999123826], [-117.80097200000024, 34.0682099991238], [-117.80235600000022, 34.067719999123796], [-117.80315400000016, 34.06686999912384], [-117.80693000000014, 34.06514399912384], [-117.80664500000017, 34.06478899912381], [-117.807843, 34.06463399912388], [-117.80983700000013, 34.06409499912387], [-117.81240100000016, 34.063750999123855], [-117.82049600000016, 34.063567999123876], [-117.8272600000002, 34.06418799912388], [-117.82915500000013, 34.06485699912385], [-117.83174500000017, 34.06635499912389], [-117.83401300000031, 34.06712199912383], [-117.83408300000022, 34.06908799912381], [-117.83452100000012, 34.06940699912373], [-117.8350100000002, 34.07023099912386], [-117.83590800000015, 34.07027199912386], [-117.83679000000019, 34.07001399912376], [-117.83847800000015, 34.07166699912376], [-117.840055, 34.072160999123824], [-117.84204900000017, 34.071990999123706], [-117.8431000000002, 34.07233599912376], [-117.84520100000017, 34.072684999123815], [-117.84670500000026, 34.07256699912381], [-117.84651400000014, 34.07313299912374], [-117.84757400000021, 34.07455499912377], [-117.84431500000012, 34.077433999123684], [-117.84369800000016, 34.077643999123694], [-117.84290500000014, 34.07740399912371], [-117.84246400000013, 34.0782479991237], [-117.8431450000001, 34.07879899912371], [-117.84126600000018, 34.08040299912367], [-117.84343000000018, 34.08153199912363], [-117.84478600000016, 34.0819819991237], [-117.84918200000018, 34.08224099912371], [-117.84968600000016, 34.082483999123596], [-117.85352600000013, 34.08263499912372], [-117.85396800000015, 34.08305299912354], [-117.8540590000001, 34.08351899912363], [-117.85344300000017, 34.084429999123564], [-117.853478, 34.086199999123586], [-117.85210900000015, 34.08620399912364], [-117.85206700000022, 34.085855999123645], [-117.85168100000021, 34.08585699912361], [-117.85156800000019, 34.086201999123595], [-117.85091800000018, 34.0863629991236], [-117.84998000000013, 34.08705699912354], [-117.84990800000013, 34.087912999123596], [-117.84774100000016, 34.08871299912352], [-117.8463920000003, 34.088905999123604], [-117.846396, 34.09280999912347], [-117.84054900000017, 34.09579599912342], [-117.84227398555372, 34.095801002438286], [-117.84190197142419, 34.099415005769096], [-117.84200098561185, 34.10121600023176], [-117.83973899284958, 34.101237003301975], [-117.8396509929418, 34.099850002817945], [-117.84005097852307, 34.099833001054556], [-117.83990098571081, 34.09943400244612], [-117.83992097972101, 34.09611800640658], [-117.83765198481078, 34.097287000763885], [-117.83765200000019, 34.113936999123204], [-117.82884200000017, 34.11391499912328], [-117.82883800000022, 34.11439399912336], [-117.8272610000003, 34.11444799912316], [-117.826805, 34.113931999123295], [-117.82528600000022, 34.11392499912327], [-117.8254880000001, 34.115185999123234], [-117.8247790000003, 34.115249999123215], [-117.82517400000016, 34.11749499912324], [-117.824787, 34.11753799912323], [-117.82443900000021, 34.11563899912323], [-117.8231260000001, 34.115605999123275], [-117.82264300000013, 34.11564199912324], [-117.82288100000018, 34.11755499912319], [-117.82020900000012, 34.11756599912324], [-117.82030900000017, 34.126999999123115], [-117.81179300000015, 34.12543899912305], [-117.81117400000021, 34.137967999122985], [-117.81108800000014, 34.138311999122955], [-117.81023700000019, 34.139319999122925], [-117.80936800000013, 34.14111399912296], [-117.81173500000013, 34.15041599912281], [-117.81148400000018, 34.1587749991228], [-117.80146800000011, 34.15882299912276], [-117.80129200000022, 34.16693399912262], [-117.79509200000015, 34.1667059991226], [-117.7915160000001, 34.166934999122596], [-117.78050700000018, 34.166950999122555]], [[-117.8266898104492, 34.09216434987177], [-117.82643000000014, 34.091617999123514], [-117.8268660000002, 34.091227999123575], [-117.82820800000017, 34.09152499912354], [-117.82900100000018, 34.09140299912353], [-117.82956900000019, 34.09174399912352], [-117.83112803452397, 34.09216395161823], [-117.83183600000027, 34.09208499912347], [-117.8322910000003, 34.09140299912353], [-117.83311100000024, 34.09116099912354], [-117.83332900000018, 34.09070499912354], [-117.83433931065098, 34.09032570301908], [-117.835027, 34.0895879991235], [-117.83574883167239, 34.089379257323884], [-117.83673728080815, 34.0895146094377], [-117.83772900000014, 34.08846599912349], [-117.8390616266022, 34.088439373389484], [-117.83841400000017, 34.08715699912363], [-117.84312300000018, 34.08639299912361], [-117.8432215171887, 34.086649928646956], [-117.84346705557655, 34.08660475980379], [-117.84408900000015, 34.087619999123596], [-117.84416100000018, 34.08725099912349], [-117.84489371072223, 34.087223683153674], [-117.84692600000012, 34.08674899912359], [-117.84862162503335, 34.08581510335177], [-117.84906779754039, 34.08503159044359], [-117.84891400000014, 34.08466999912364], [-117.84927296953602, 34.0843916180329], [-117.84949812908549, 34.08336834717927], [-117.84881509985331, 34.0826989546284], [-117.8476073711695, 34.08329348395776], [-117.84743490733749, 34.08279087634678], [-117.84697267204537, 34.08280736860099], [-117.84540512666682, 34.08301814914049], [-117.8449382343527, 34.08372845798185], [-117.84383696078558, 34.08433368858359], [-117.84242864860458, 34.083986669627464], [-117.84009598126516, 34.08430908870131], [-117.83745500000025, 34.084928999123576], [-117.83793751925452, 34.085946089119595], [-117.8267302570159, 34.08895519265361], [-117.82135000000015, 34.0906119991235], [-117.82094800000017, 34.09090099912353], [-117.82069985564306, 34.09216398188073], [-117.82231261511059, 34.09216431163569], [-117.82337100000011, 34.09146499912351], [-117.8243360000001, 34.091953999123476], [-117.82453400000018, 34.09163999912352], [-117.82417000000014, 34.09109099912362], [-117.824349, 34.09099699912354], [-117.82542600000019, 34.09148099912347], [-117.82570976088546, 34.092164365140206], [-117.8266898104492, 34.09216434987177]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "San Dimas", "population": 0.34516765285996054, "cases": 28.0, "resource_uri": "/1.0/boundary/san-dimas-la-county-neighborhood-current/", "external_id": "san-dimas", "slug": "san-dimas-la-county-neighborhood-current", "metadata": {"sqmi": 15.6282037911, "type": "standalone-city", "name": "San Dimas", "slug": "san-dimas"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.42346700000014, 34.296321999121], [-118.42140100000024, 34.294374999121096], [-118.41843700000018, 34.29654099912103], [-118.415667, 34.29393199912117], [-118.41863200000016, 34.2917639991211], [-118.41712300000015, 34.29035599912116], [-118.42729100000012, 34.28293999912138], [-118.427921, 34.28227599912118], [-118.43056900000022, 34.2805489991211], [-118.43037000000011, 34.280349999121256], [-118.4321750000002, 34.27867299912127], [-118.43377600000017, 34.27745299912122], [-118.4357120000002, 34.27930999912122], [-118.43597600000011, 34.27897299912124], [-118.443734, 34.27330999912139], [-118.44707566822747, 34.276468121540624], [-118.45001300000013, 34.278929999121246], [-118.452462, 34.281320999121306], [-118.45232934689149, 34.281436876378315], [-118.45549100000018, 34.28441599912131], [-118.45631000000022, 34.28466999912119], [-118.44944100000018, 34.289698999121086], [-118.45000200000021, 34.29040399912111], [-118.44926000000015, 34.291065999121166], [-118.4455000000002, 34.29440599912111], [-118.44478100000025, 34.293802999120985], [-118.44469700000015, 34.29387099912119], [-118.4435720000002, 34.294874999121014], [-118.44347300000011, 34.29515599912108], [-118.44247300000013, 34.29585599912112], [-118.43256900000021, 34.30468699912103], [-118.42346700000014, 34.296321999121]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "San Fernando", "population": 0.2461172876177544, "cases": 87.0, "resource_uri": "/1.0/boundary/san-fernando-la-county-neighborhood-current/", "external_id": "san-fernando", "slug": "san-fernando-la-county-neighborhood-current", "metadata": {"sqmi": 2.38776063448, "type": "standalone-city", "name": "San Fernando", "slug": "san-fernando"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.0971650000001, 34.115317999123256], [-118.09119400000016, 34.11530799912322], [-118.09119198587113, 34.114959000854064], [-118.09020199203997, 34.1149080052775], [-118.09019099990533, 34.11402100293716], [-118.0911739858759, 34.11402299994214], [-118.0910579858697, 34.10806800086343], [-118.08669198588996, 34.10810100411936], [-118.08666398589679, 34.10624900408781], [-118.0885909787633, 34.1062300005393], [-118.08857098589306, 34.1052280041107], [-118.09048697882129, 34.105215000496635], [-118.09048797868593, 34.10467300260835], [-118.09019998597682, 34.10469900351106], [-118.09014197194905, 34.10412200184352], [-118.0885499859245, 34.104138003954155], [-118.08854397885929, 34.10381800149915], [-118.08786698592674, 34.103809005135474], [-118.08790198596303, 34.10491000367152], [-118.08806398580116, 34.10489900128583], [-118.08806298588156, 34.105231000031914], [-118.08500298589084, 34.10525200410896], [-118.08499797196644, 34.10392200177134], [-118.08448598577681, 34.103896004508286], [-118.08450197188144, 34.10370800202903], [-118.0838779860285, 34.10368800533737], [-118.08390798572056, 34.1040070000438], [-118.08214498604882, 34.10401100511241], [-118.08220097175581, 34.105598005833606], [-118.08240198587791, 34.10610800415659], [-118.08275397843786, 34.10610800038171], [-118.08272398587823, 34.105909004156544], [-118.08331998578048, 34.10588100162268], [-118.08332198586979, 34.10626399996229], [-118.08220998588692, 34.10626700411735], [-118.08230198586486, 34.113507000032214], [-118.08137799058365, 34.11351300136584], [-118.0812730000002, 34.10560399912331], [-118.07781900000018, 34.105596999123414], [-118.07722000000015, 34.10495999912331], [-118.0772060000003, 34.101801999123396], [-118.07752000000016, 34.101816999123436], [-118.0775560000001, 34.101441999123246], [-118.07782300000022, 34.10144399912343], [-118.07764800000018, 34.09887199912336], [-118.08147800000026, 34.098971999123414], [-118.08143200000016, 34.09358199912356], [-118.08222600000019, 34.093798999123486], [-118.082801, 34.097159999123406], [-118.0823692093208, 34.09793456005312], [-118.0823692164156, 34.09896115021226], [-118.08299500000018, 34.098971999123414], [-118.08288200000014, 34.09860699912342], [-118.0830851585704, 34.09859923959463], [-118.08308427215601, 34.09844654665595], [-118.0837248451351, 34.09844247582766], [-118.08370764626018, 34.09697281837055], [-118.0849347557486, 34.096965671129645], [-118.08493107511732, 34.09653095722504], [-118.08608683686097, 34.096523958396695], [-118.08609110817792, 34.09671146923711], [-118.08634800000016, 34.096708999123486], [-118.08630882701168, 34.096908379590644], [-118.08668906419803, 34.096905369621076], [-118.08676600000015, 34.09710199912338], [-118.08669300000022, 34.09740999912348], [-118.0862960000002, 34.09740999912348], [-118.08622095521335, 34.09788900840077], [-118.08670274849716, 34.09788747676349], [-118.08671909419166, 34.09856447128152], [-118.0876680000002, 34.09854199912347], [-118.08767056505711, 34.09867897316223], [-118.08799838719888, 34.09867718399343], [-118.0879974063734, 34.098561773630166], [-118.08878700000018, 34.098511999123446], [-118.08887000000018, 34.098964999123446], [-118.08935300000022, 34.09902299912342], [-118.08952000000016, 34.0983419991234], [-118.08762800000021, 34.095283999123474], [-118.08740100000017, 34.095208999123514], [-118.08730400000012, 34.09174399912352], [-118.087831, 34.09174099912343], [-118.08741800000011, 34.08574899912361], [-118.086718, 34.08453999912359], [-118.083337, 34.08045799912362], [-118.08788200000028, 34.080280999123616], [-118.08782800000016, 34.07657099912376], [-118.08885300000011, 34.076520999123716], [-118.08890700000012, 34.07485299912374], [-118.08719100000016, 34.074862999123745], [-118.08709500000013, 34.07222299912372], [-118.09060600000012, 34.07233299912374], [-118.09060600000012, 34.07220099912383], [-118.09666700000017, 34.07198199912381], [-118.0967690000002, 34.07210999912372], [-118.09954300000017, 34.072124999123666], [-118.09954300000017, 34.07116699912377], [-118.1000780000002, 34.07111399912373], [-118.10038100000013, 34.07141699912381], [-118.101408, 34.07170599912384], [-118.10818900000018, 34.071653999123676], [-118.10839900000018, 34.09559799912354], [-118.11270700000019, 34.09387299912348], [-118.11273700000011, 34.09493699912345], [-118.11307600000018, 34.096048999123425], [-118.113004, 34.09671599912344], [-118.11317100000014, 34.09671899912345], [-118.113213, 34.09790899912345], [-118.11362200000015, 34.098704999123335], [-118.11318200000024, 34.09900299912349], [-118.11377500000016, 34.09996099912336], [-118.1127950000002, 34.10040899912349], [-118.11273900000016, 34.10094099912327], [-118.11293300000011, 34.101729999123364], [-118.11686600000012, 34.10732199912337], [-118.12080800000015, 34.105414999123305], [-118.11992500000024, 34.10800399912329], [-118.11888900000018, 34.109499999123294], [-118.11822700000013, 34.110154999123324], [-118.11789300000031, 34.11111299912334], [-118.11552600000019, 34.11320899912324], [-118.11134300000019, 34.114035999123224], [-118.10844500000017, 34.11440499912318], [-118.108453, 34.11339299912324], [-118.1074610000001, 34.11338299912329], [-118.10746400000019, 34.11377799912327], [-118.106371, 34.11376699912326], [-118.10637400000016, 34.11336099912322], [-118.09981200000014, 34.11346699912328], [-118.09815300000017, 34.1152659991232], [-118.0971650000001, 34.115317999123256]], [[-118.08491422706146, 34.103029872156434], [-118.08974201116486, 34.10292507245114], [-118.08973200000023, 34.10236699912339], [-118.09027800000013, 34.102367999123445], [-118.09031112284887, 34.10223712347683], [-118.0897420633486, 34.10224068118768], [-118.08961600000018, 34.10032499912346], [-118.089172, 34.100309999123404], [-118.08915300000015, 34.09996599912342], [-118.08957800000016, 34.09995499912343], [-118.08956000000022, 34.09929099912336], [-118.0885030000002, 34.09930799912339], [-118.08850400000024, 34.09965099912342], [-118.08742437617518, 34.09943746818747], [-118.08678362863601, 34.09953427292639], [-118.08678547356887, 34.099689251705385], [-118.08590100000028, 34.099708999123436], [-118.08593000000023, 34.099081999123456], [-118.0852330000002, 34.099080999123444], [-118.08520200000018, 34.09950399912345], [-118.08457800000023, 34.09957199912343], [-118.08457300000016, 34.1004309991234], [-118.08226000000018, 34.10046499912343], [-118.08224000000017, 34.10083399912343], [-118.08394600000015, 34.10087699912343], [-118.08396819963396, 34.10248832254806], [-118.08449144651873, 34.102487216123166], [-118.08449994722055, 34.102951352676314], [-118.08491422706146, 34.103029872156434]], [[-118.08358100000018, 34.102635999123365], [-118.0836197037222, 34.101319072574306], [-118.08227700000029, 34.101298999123415], [-118.08228600000012, 34.10218699912331], [-118.08295400000017, 34.102183999123405], [-118.08297173343117, 34.102394466949605], [-118.08326818476237, 34.102392275081435], [-118.08327093647212, 34.102635102986], [-118.08358100000018, 34.102635999123365]], [[-118.08118994565314, 34.102437982397085], [-118.08054674586622, 34.10169786509472], [-118.08043300000013, 34.10135299912341], [-118.08044100000014, 34.10109799912341], [-118.08124200000017, 34.101201999123425], [-118.08124692246051, 34.0999290508787], [-118.07953495531754, 34.09991288702811], [-118.07954960616222, 34.10250196953035], [-118.08121474922862, 34.10254445689409], [-118.08118994565314, 34.102437982397085]], [[-118.08241000000031, 34.09924299912349], [-118.08242419637048, 34.10001054954442], [-118.08365016843143, 34.10000430714827], [-118.08365206046886, 34.0997759991234], [-118.0830240000002, 34.0997759991234], [-118.08304300000015, 34.099510999123375], [-118.08337200000015, 34.09945099912339], [-118.08338400000014, 34.09924299912346], [-118.08241000000031, 34.09924299912349]], [[-118.08078856969766, 34.0992530079426], [-118.08046200000027, 34.099243999123395], [-118.08045400000012, 34.09946399912341], [-118.0814470000002, 34.09946399912341], [-118.08146567451556, 34.099271686696284], [-118.08078856969766, 34.0992530079426]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "San Gabriel", "population": 0.40955631399317405, "cases": 30.0, "resource_uri": "/1.0/boundary/san-gabriel-la-county-neighborhood-current/", "external_id": "san-gabriel", "slug": "san-gabriel-la-county-neighborhood-current", "metadata": {"sqmi": 4.16689673478, "type": "standalone-city", "name": "San Gabriel", "slug": "san-gabriel"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.10891600000011, 34.137623999123], [-118.10887009278927, 34.13732107287329], [-118.10849542584754, 34.13730700011943], [-118.10412838761451, 34.13730919138224], [-118.104078, 34.137586999123016], [-118.1034300000001, 34.13757899912296], [-118.10336417343899, 34.13686043732628], [-118.09451800000012, 34.136854999122995], [-118.09412797176253, 34.1344260058738], [-118.09336597176227, 34.13206500587069], [-118.091283971761, 34.127558005864344], [-118.09077497240413, 34.126115007570064], [-118.0899919855581, 34.12641000163897], [-118.08998598600881, 34.12703500291712], [-118.08820298566019, 34.12757700187364], [-118.08794598566617, 34.12705900186516], [-118.08825097913574, 34.1269560051198], [-118.08808198537064, 34.12589500132508], [-118.08935897278911, 34.12533700821674], [-118.08933298597597, 34.12501000347181], [-118.09040998569454, 34.12490400102588], [-118.0902310000002, 34.12394199912315], [-118.09030600000027, 34.123365999123216], [-118.091279, 34.12199599912314], [-118.09119400000016, 34.11530799912322], [-118.09815300000017, 34.1152659991232], [-118.09981200000014, 34.11346699912328], [-118.10637400000016, 34.11336099912322], [-118.106371, 34.11376699912326], [-118.10746400000019, 34.11377799912327], [-118.1074610000001, 34.11338299912329], [-118.108453, 34.11339299912324], [-118.10844500000017, 34.11440499912318], [-118.11134300000019, 34.114035999123224], [-118.11552600000019, 34.11320899912324], [-118.11789300000031, 34.11111299912334], [-118.11822700000013, 34.110154999123324], [-118.11888900000018, 34.109499999123294], [-118.11992500000024, 34.10800399912329], [-118.12080800000015, 34.105414999123305], [-118.12172300000019, 34.104975999123376], [-118.1279350000003, 34.111145999123245], [-118.1352960000002, 34.10644999912332], [-118.13639600000022, 34.107791999123314], [-118.13953500000014, 34.11251999912313], [-118.13836800000013, 34.112559999123164], [-118.13990900000016, 34.11396499912327], [-118.14077400000025, 34.11642199912322], [-118.14216300000017, 34.11948399912316], [-118.140158, 34.119505999123284], [-118.136203, 34.11791699912325], [-118.133192, 34.11727699912326], [-118.13076000000012, 34.1173309991232], [-118.12797000000019, 34.1179479991232], [-118.12832500000016, 34.119335999123166], [-118.12807300000023, 34.119415999123156], [-118.1282970000002, 34.12021899912317], [-118.12856300000018, 34.12023299912312], [-118.12873400000012, 34.12097199912322], [-118.128931, 34.1209679991232], [-118.129016, 34.12127399912312], [-118.129351, 34.12134999912322], [-118.12958400000018, 34.121685999123166], [-118.12944100000013, 34.12205599912318], [-118.12921000000023, 34.12213299912315], [-118.12906100000025, 34.1230259991231], [-118.13006500000012, 34.1240499991232], [-118.13077900000015, 34.126152999123114], [-118.131159, 34.12646299912308], [-118.13077000000018, 34.127452999123015], [-118.13082500000014, 34.128145999123085], [-118.13113000000016, 34.12859399912303], [-118.13099800000012, 34.129393999122975], [-118.13124900000015, 34.12978999912297], [-118.12610100000015, 34.1309349991231], [-118.1217070000001, 34.132113999123035], [-118.11959700000016, 34.13240599912304], [-118.11912200000016, 34.13260699912299], [-118.11411100000016, 34.13292299912301], [-118.114003, 34.136169999122956], [-118.11429000000018, 34.13616699912302], [-118.11429200000018, 34.136857999122974], [-118.11016100000032, 34.13680799912303], [-118.11030300000014, 34.137306999123], [-118.1093480000003, 34.137306999123], [-118.10937100000012, 34.13762399912292], [-118.10891600000011, 34.137623999123]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "San Marino", "population": 0.1327700663850332, "cases": 11.0, "resource_uri": "/1.0/boundary/san-marino-la-county-neighborhood-current/", "external_id": "san-marino", "slug": "san-marino-la-county-neighborhood-current", "metadata": {"sqmi": 3.78416933627, "type": "standalone-city", "name": "San Marino", "slug": "san-marino"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.10326600000029, 34.14191399912292], [-118.10283400000026, 34.14180299912295], [-118.10294900000022, 34.14127199912297], [-118.10051679146711, 34.141395758698366], [-118.10051100000028, 34.140666999122956], [-118.09967000000029, 34.14067199912295], [-118.09968200000029, 34.14145599912289], [-118.09870900000021, 34.14150899912293], [-118.09870700000022, 34.14180599912289], [-118.09741400000016, 34.141908999123025], [-118.09578000000026, 34.14176899912295], [-118.09568600000028, 34.14020499912296], [-118.09526209549479, 34.14020723805523], [-118.09520188203338, 34.13692956660138], [-118.10336417343909, 34.13686043732636], [-118.10343000000017, 34.137578999123015], [-118.10407800000016, 34.137586999123066], [-118.10412838761461, 34.13730919138229], [-118.10849542584766, 34.13730700011945], [-118.10887009278937, 34.13732107287335], [-118.10891600000024, 34.13762399912306], [-118.10937100000022, 34.137623999122965], [-118.10934800000037, 34.137306999123055], [-118.11030300000027, 34.137306999123055], [-118.11028700000034, 34.13775199912304], [-118.11074200000017, 34.138041999122926], [-118.11073200000043, 34.13841099912299], [-118.11034500000027, 34.13840499912302], [-118.11017300000024, 34.14018099912297], [-118.1105110000002, 34.14020699912296], [-118.11048300000027, 34.14117099912311], [-118.11002810873487, 34.141182925819884], [-118.11003064903659, 34.1415361675238], [-118.10830525924155, 34.1415485902697], [-118.10829600000028, 34.14080599912297], [-118.10615100000027, 34.140817999122966], [-118.1061620000004, 34.14190799912295], [-118.10326600000029, 34.14191399912292]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "San Pasqual", "population": 0, "cases": 0.0, "resource_uri": "/1.0/boundary/san-pasqual-la-county-neighborhood-current/", "external_id": "san-pasqual", "slug": "san-pasqual-la-county-neighborhood-current", "metadata": {"sqmi": 0.259126738332, "type": "unincorporated-area", "name": "San Pasqual", "slug": "san-pasqual"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.243705, 33.76171699912748], [-118.241153, 33.75854099912759], [-118.240767, 33.7582959991276], [-118.248966, 33.75590199912767], [-118.24347423782802, 33.742812640608555], [-118.24429601839852, 33.74254900214625], [-118.24395598650501, 33.74170699836747], [-118.2431144337411, 33.74195511570851], [-118.23715298109272, 33.72767798639429], [-118.2511719967701, 33.723593973439364], [-118.24614601707847, 33.71657699468497], [-118.2458900066818, 33.71604098278168], [-118.24599302114058, 33.71572599424], [-118.24728701532592, 33.71531698790536], [-118.25767600771394, 33.71682700730406], [-118.2603199753409, 33.723720979008085], [-118.25800299181081, 33.72869097944334], [-118.2410009762426, 33.733659980249], [-118.24714301605428, 33.74860102268353], [-118.24781297832112, 33.74913498271549], [-118.24992898369354, 33.75003101910366], [-118.2505640115372, 33.7506969828523], [-118.25173199978327, 33.749717977209144], [-118.25164897791615, 33.74964900276797], [-118.25208397461958, 33.749226001619434], [-118.25354001402094, 33.74670798731958], [-118.25335897584267, 33.74651700545779], [-118.2535979925366, 33.746597975453845], [-118.25413200518055, 33.745452978688036], [-118.2538080199726, 33.744819003086086], [-118.25324201918195, 33.744537002320314], [-118.25295901878668, 33.74446097786032], [-118.25243000429055, 33.74475097566256], [-118.25217199463471, 33.744655011222896], [-118.2528240161812, 33.743023984032924], [-118.25326800955106, 33.742417998059324], [-118.25017499779445, 33.7350090066731], [-118.24794398240822, 33.73551397744728], [-118.24780398165481, 33.73536498002772], [-118.24682597564117, 33.73554002042837], [-118.24805399427403, 33.73509097629867], [-118.24798002168524, 33.7348380174029], [-118.26044898016883, 33.73123098559386], [-118.26054199833175, 33.731425018956486], [-118.26110200134488, 33.73170602009277], [-118.26264101000139, 33.73128101968484], [-118.26255998739333, 33.73106799336021], [-118.26099398873819, 33.73158901081969], [-118.26090702096472, 33.73139297819786], [-118.26123600432071, 33.73130401116532], [-118.26120901432199, 33.73115901226431], [-118.26360502120106, 33.730474002941385], [-118.2642619882834, 33.73046900479349], [-118.26426298791294, 33.73071901741268], [-118.26267099888872, 33.731033006325006], [-118.26276701594057, 33.73124198151915], [-118.26365500268, 33.730968977419764], [-118.26463000980509, 33.73102700854745], [-118.26495599427234, 33.73087701149841], [-118.26349101081684, 33.732566017204036], [-118.26350100711262, 33.733137016142294], [-118.2638669767631, 33.73312901910578], [-118.26384298565311, 33.733654982101015], [-118.26344097672575, 33.733644985805356], [-118.26346202155898, 33.73386400990733], [-118.26363301082931, 33.73385701250043], [-118.26360402157142, 33.73416800252395], [-118.26343397931873, 33.734292009204], [-118.26416002606625, 33.73423097918749], [-118.26417602013943, 33.73435598549693], [-118.26342598228196, 33.734356985126695], [-118.26343797783701, 33.73458300663576], [-118.26503401799165, 33.73460699774581], [-118.26501402539995, 33.73497202037855], [-118.26553099172905, 33.73529500595701], [-118.26680499332276, 33.73388000398074], [-118.26691900370689, 33.73422498140995], [-118.26499597945543, 33.73611001973737], [-118.26510199280304, 33.736755990894295], [-118.26526698429585, 33.73673899719146], [-118.26635800106428, 33.738624982536436], [-118.26931501058577, 33.73733698612857], [-118.2692850216985, 33.7372299731513], [-118.26969297579119, 33.737046988326206], [-118.26975300617809, 33.73716699648778], [-118.27092599257196, 33.736708008674306], [-118.27066798291628, 33.736355981225984], [-118.26974700840069, 33.736059985646214], [-118.26824598566826, 33.73381797433472], [-118.26807499639789, 33.73390099620185], [-118.26773701637578, 33.73360799951075], [-118.26753498597655, 33.73368502360058], [-118.26824798492743, 33.733064990200496], [-118.26757102525342, 33.73337797948317], [-118.26744801820303, 33.733230981322826], [-118.26783198118581, 33.733011010203384], [-118.26830301716633, 33.73298402020463], [-118.26833100679458, 33.732682973864755], [-118.26830301716633, 33.73024498254344], [-118.26768398339601, 33.730223990322465], [-118.2676459974719, 33.730047003274564], [-118.26835899642282, 33.72975400658342], [-118.26831601235092, 33.729612006571045], [-118.26762200636202, 33.729880012522706], [-118.26736799522442, 33.72975700547224], [-118.26476101389216, 33.722464023729465], [-118.26768198413684, 33.72174197550016], [-118.26831401309178, 33.723410988614134], [-118.26852298828598, 33.723379000467645], [-118.26963299801643, 33.72636899776547], [-118.26934300021412, 33.72593400106188], [-118.2689040049922, 33.726043013298295], [-118.26910998129767, 33.726678988159314], [-118.26957202061207, 33.726569975923056], [-118.27050099216439, 33.72890300613847], [-118.2688560227723, 33.729403978394245], [-118.26908099203987, 33.72994198955649], [-118.27071001997065, 33.72951498988977], [-118.27082997552034, 33.73002900994202], [-118.26901201759887, 33.73049599479227], [-118.26907799315127, 33.73069397406113], [-118.27150099002877, 33.730183005509495], [-118.27134199631365, 33.73164399044655], [-118.27105299814087, 33.73167397933414], [-118.27095398220025, 33.73226102495785], [-118.27109698184233, 33.73230101014116], [-118.27105699665908, 33.73267997497599], [-118.27090500035092, 33.7326709783099], [-118.2703889810393, 33.73520998483073], [-118.27088700701844, 33.73602599824046], [-118.27159900633978, 33.73614600640202], [-118.27173600820433, 33.735382973360046], [-118.27149599188098, 33.73534698669547], [-118.27159200893277, 33.734754995535646], [-118.27184701969968, 33.734581007376704], [-118.27201900859961, 33.73376899248518], [-118.27174500487058, 33.733734005449875], [-118.27188800451259, 33.73314801206772], [-118.27210397711393, 33.73315101095647], [-118.27223897971922, 33.73260200386872], [-118.27249598974544, 33.73268097460566], [-118.2728370212684, 33.733227982434194], [-118.27266697901574, 33.733305006523935], [-118.27348899020296, 33.734369980310994], [-118.27333499463556, 33.73444200625301], [-118.27411901989878, 33.735896993412595], [-118.2744400062181, 33.73596502083617], [-118.27474299920502, 33.740685008652186], [-118.26996098174276, 33.74864000823721], [-118.26510199280304, 33.752262981507336], [-118.26073198056409, 33.75623398370762], [-118.25773198697038, 33.75943700733004], [-118.25446198816611, 33.76066197446229], [-118.2543449788933, 33.76047998926667], [-118.25339201623102, 33.76080697336333], [-118.25344999474657, 33.76097801524568], [-118.25238202207059, 33.76135498082145], [-118.25230899649924, 33.76122297710501], [-118.25197301573628, 33.76133098971161], [-118.2520459886956, 33.76144100157743], [-118.25128700678385, 33.76177098456299], [-118.24860899913922, 33.76274899057674], [-118.2452903394486, 33.76369062479184], [-118.243705, 33.76171699912748]]], [[[-118.29640400000011, 33.780316999127294], [-118.29590400000012, 33.77471699912734], [-118.29340400000017, 33.76381699912748], [-118.29220400000014, 33.757316999127596], [-118.292204, 33.75361799912759], [-118.2903720000001, 33.75360999912772], [-118.28855583008492, 33.75439558011875], [-118.28790001851205, 33.75411298018742], [-118.28805801259786, 33.75340697864352], [-118.28792400962196, 33.75297598045831], [-118.28345997959048, 33.75424898242231], [-118.28324100810036, 33.75360101200624], [-118.28170499833266, 33.754068996485735], [-118.28138201275415, 33.75360101200621], [-118.28036002303895, 33.75323399011415], [-118.28008601930975, 33.753301017908015], [-118.27983300780195, 33.75374101275956], [-118.27932698478605, 33.75370802498331], [-118.27906497661203, 33.75412397611272], [-118.27854101287576, 33.75395498610175], [-118.27779502614881, 33.75531500845122], [-118.27768301502365, 33.75527802215692], [-118.27843200063958, 33.75392499721427], [-118.27790798429132, 33.75374401164819], [-118.27760599093405, 33.7542770246626], [-118.27715300089808, 33.75412697500149], [-118.27703599162516, 33.75434399984455], [-118.27688699420571, 33.75429001984719], [-118.27701100088564, 33.75405400204216], [-118.27581002486345, 33.75369697644597], [-118.27403699766106, 33.7511680188329], [-118.27417899767363, 33.75070497988892], [-118.27361699540131, 33.75012798317296], [-118.27364498502955, 33.749768011300105], [-118.27409597580625, 33.749424980518015], [-118.27451297917752, 33.74845402452332], [-118.27772999761399, 33.74948601053433], [-118.27841900545502, 33.74862501379348], [-118.27498301552822, 33.746797006964485], [-118.2771919864517, 33.742835001430144], [-118.27792197910547, 33.7408230101463], [-118.27838301879018, 33.74096800904742], [-118.27794502319792, 33.74075198383395], [-118.27805098393333, 33.7404240001076], [-118.2785959925028, 33.74017198822924], [-118.27850297433966, 33.738958017022746], [-118.27825701285103, 33.73898100850287], [-118.27820697875994, 33.73882201478775], [-118.27857500028159, 33.73875698625285], [-118.27823602062985, 33.73856200587275], [-118.27869300918412, 33.73822397323848], [-118.27807097652497, 33.73536697928694], [-118.27717299348969, 33.733899996572404], [-118.27694602496294, 33.733963972865425], [-118.27676298752561, 33.73362199432498], [-118.2770429890322, 33.73335598763238], [-118.27690698679723, 33.73311097316123], [-118.2766559745485, 33.733203991324224], [-118.27608097709177, 33.73238297976669], [-118.27622597599292, 33.73232700051011], [-118.27604698968595, 33.732012011968244], [-118.27583901412122, 33.73208098640935], [-118.27556700965137, 33.731618000077574], [-118.27579897632597, 33.73153297895118], [-118.2753729762887, 33.73097497519719], [-118.27474399883461, 33.72947200581793], [-118.27434898731427, 33.729521987296685], [-118.27414900878604, 33.729124976517284], [-118.27425802102248, 33.72893099576671], [-118.27442701103358, 33.7289080042864], [-118.27476299179662, 33.729152019127945], [-118.2747040136514, 33.729237987271894], [-118.2787649825139, 33.73179898564382], [-118.27866901807411, 33.7313589907921], [-118.27788299355186, 33.73042302183298], [-118.27403199951323, 33.72778799826014], [-118.27341201872534, 33.725817991418495], [-118.27322698202879, 33.725492006951335], [-118.2729850190584, 33.72558197361342], [-118.27256201790989, 33.724632009840164], [-118.27234099454843, 33.72404601645787], [-118.2725510219845, 33.72397299088643], [-118.27118300259832, 33.720309979821025], [-118.27238897676835, 33.72002498016662], [-118.2730020127613, 33.71965501199781], [-118.27319299462305, 33.72048601985126], [-118.27549498370954, 33.72655498147937], [-118.27661798862452, 33.726084997740465], [-118.27342901242824, 33.71773198774641], [-118.2730220053529, 33.71654200764966], [-118.27324297610208, 33.716484976151534], [-118.27277599125206, 33.71550102497226], [-118.27401600543985, 33.713888990744536], [-118.27647498898241, 33.715374019403534], [-118.27664597825259, 33.7165000232073], [-118.27553802039358, 33.71965701125703], [-118.27703199310682, 33.72381099828258], [-118.27718798793339, 33.72377101309923], [-118.27827700544263, 33.72055599392193], [-118.28010801116059, 33.72512598468875], [-118.28389197740516, 33.7241720223969], [-118.28305902290477, 33.721807004035256], [-118.28148497460086, 33.72221601036951], [-118.28131298570105, 33.7217610210744], [-118.28117598383652, 33.72131597546305], [-118.28274498138029, 33.72094100914627], [-118.2818599935297, 33.71822501557761], [-118.28038701303751, 33.718537005230786], [-118.28005097966232, 33.71769800034074], [-118.28167700870434, 33.71718897843626], [-118.28197200465459, 33.71665801729295], [-118.28264701768158, 33.71684899915487], [-118.28330998254137, 33.716779025084385], [-118.28436501264486, 33.71518098567049], [-118.28457498746874, 33.71363697886625], [-118.28481700305129, 33.71377398073065], [-118.2849610023229, 33.714530016365785], [-118.28478801379352, 33.71506597565674], [-118.28533102310364, 33.71522402235455], [-118.28535601384328, 33.713752988509434], [-118.28519302160959, 33.71360499071955], [-118.28393801297801, 33.71352202146441], [-118.28391302223855, 33.71329400069598], [-118.282871986949, 33.71301299955993], [-118.28316298438108, 33.712300000609], [-118.28319402551013, 33.71172200426349], [-118.28304097696018, 33.71060199823735], [-118.28277402325023, 33.70993298298785], [-118.28009001782813, 33.70953197369003], [-118.27813100691185, 33.70869701993046], [-118.27668901493666, 33.707790987246504], [-118.27730999535416, 33.70784801874464], [-118.27772999761399, 33.70771001725044], [-118.27924101664233, 33.70861799658145], [-118.28048997488426, 33.70897602180736], [-118.28183500279015, 33.709160006262145], [-118.28336101626206, 33.70914001367057], [-118.28491701862137, 33.70866297991281], [-118.28602797536915, 33.706848020879995], [-118.2869360073125, 33.706514986393636], [-118.28803901963582, 33.70577599707366], [-118.28987502350165, 33.70530601333488], [-118.29269897706499, 33.70524198442968], [-118.29362300308141, 33.7050040199776], [-118.29412497496678, 33.70455697510701], [-118.2944079753621, 33.70453798214501], [-118.29469702614703, 33.704920998110424], [-118.29483397539948, 33.70548599927131], [-118.29480198725291, 33.70647200232178], [-118.29500701654098, 33.70690499976615], [-118.29475000651465, 33.70770601873212], [-118.29493399096941, 33.70819999358082], [-118.29746600008345, 33.71016300301544], [-118.29949698432948, 33.7104070178572], [-118.29990499103444, 33.71023997449319], [-118.30080702520003, 33.71019898968037], [-118.30263098089894, 33.71113001310388], [-118.30354401098991, 33.711261017190864], [-118.30424001623805, 33.711674022043645], [-118.30534497520841, 33.71198401243748], [-118.30744898502591, 33.71227201098073], [-118.30871498958284, 33.71285300621505], [-118.31020801527872, 33.7131579984611], [-118.31170898539888, 33.7140970189213], [-118.3134980066746, 33.714735992671166], [-118.31493699976099, 33.7147579845218], [-118.31735199960194, 33.71395701816789], [-118.3178019907491, 33.715062976767875], [-118.31830901339457, 33.71540100940237], [-118.3194029764396, 33.71570400238907], [-118.31969197461238, 33.7161330013153], [-118.31988900686379, 33.716933020651624], [-118.32063699285001, 33.71755899921705], [-118.3211079762185, 33.717677008119395], [-118.32195597777472, 33.71754100588454], [-118.32253297449067, 33.718243008910115], [-118.3233629827146, 33.718750978573084], [-118.32568901552281, 33.718865988586614], [-118.32963397474205, 33.720315977598425], [-118.33061398001499, 33.720442983167125], [-118.3315330078836, 33.72113399026748], [-118.33301780682159, 33.721927852189424], [-118.328472, 33.729421999128], [-118.32101, 33.72939699912787], [-118.320908, 33.7310559991279], [-118.32012500000012, 33.73142599912794], [-118.319823, 33.731989999127904], [-118.3185310000001, 33.731986999128], [-118.31851, 33.73525099912781], [-118.31873700000013, 33.735180999127905], [-118.319913, 33.735505999127874], [-118.320301, 33.735445999128004], [-118.32037300000013, 33.73576999912791], [-118.31998500000014, 33.735829999127844], [-118.32005, 33.73612199912798], [-118.318924, 33.73659799912792], [-118.318505, 33.73633899912791], [-118.3185, 33.73763299912783], [-118.318751, 33.73836699912787], [-118.31868, 33.73924899912775], [-118.318876, 33.740314999127854], [-118.319012, 33.740534999127796], [-118.319841, 33.74100199912782], [-118.320029, 33.741491999127796], [-118.319607, 33.74262999912782], [-118.318477, 33.74261699912774], [-118.318449, 33.74684199912776], [-118.312176, 33.74680499912788], [-118.312174, 33.747301999127735], [-118.311103, 33.747293999127685], [-118.311107, 33.74679899912771], [-118.309614, 33.74679099912772], [-118.308866, 33.75213199912773], [-118.308837, 33.75375899912767], [-118.309, 33.754651999127695], [-118.309734, 33.75615199912766], [-118.309089, 33.75712799912761], [-118.309087, 33.757727999127454], [-118.301, 33.75772099912764], [-118.301878, 33.7605109991276], [-118.309038, 33.76051499912755], [-118.30903500000011, 33.762677999127554], [-118.311606, 33.76305099912758], [-118.308833, 33.77225399912735], [-118.30868500000012, 33.773304999127376], [-118.30885, 33.774963999127465], [-118.306427, 33.77495799912737], [-118.307662, 33.77921899912738], [-118.30792769968308, 33.779179105043106], [-118.30800500000011, 33.77941699912729], [-118.298605, 33.78081699912723], [-118.297705, 33.78221699912727], [-118.29640400000011, 33.780316999127294]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "San Pedro", "population": 0.8011248978970946, "cases": 452.0, "resource_uri": "/1.0/boundary/san-pedro-la-county-neighborhood-current/", "external_id": "san-pedro", "slug": "san-pedro-la-county-neighborhood-current", "metadata": {"sqmi": 12.0587181952, "type": "segment-of-a-city", "name": "San Pedro", "slug": "san-pedro"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.52471200012155, 34.47721299913417], [-118.5242329999654, 34.47707899890972], [-118.52493900011234, 34.474843998950526], [-118.52479799985802, 34.47304899908684], [-118.52521500004092, 34.470884999240425], [-118.52513600008895, 34.46894299920654], [-118.52444999976905, 34.46653099895966], [-118.5289870000937, 34.466448999190014], [-118.52894899985269, 34.45931499911647], [-118.5263649997683, 34.459202999334025], [-118.52327999993258, 34.45934399902175], [-118.52120100020137, 34.45904299925324], [-118.51997800022224, 34.45917999902405], [-118.51743599987877, 34.45978499905485], [-118.51170800022373, 34.459739999211244], [-118.51172800008008, 34.45662299915066], [-118.51058399998287, 34.45656499916411], [-118.51104800002352, 34.453514999343554], [-118.51073599991189, 34.453461999238385], [-118.51045600014027, 34.452206999328055], [-118.50678499985601, 34.45231699933829], [-118.50683900007228, 34.453652999063394], [-118.50433900017295, 34.45378199896149], [-118.50402799992312, 34.453784999272024], [-118.50419899990612, 34.452445998955824], [-118.50303500004507, 34.45235799902395], [-118.50300199975217, 34.46018599894208], [-118.50316299985177, 34.46088699920572], [-118.50653600009387, 34.46147899934362], [-118.50349799982935, 34.46112899931636], [-118.50082700008993, 34.46034699926009], [-118.50031299987559, 34.46036099911658], [-118.49794199992772, 34.46102499913102], [-118.49789299985126, 34.46381799909109], [-118.49248300017146, 34.463981998899], [-118.49282199994357, 34.461588999211], [-118.49197100005692, 34.46072899915712], [-118.49209799984982, 34.459922998976865], [-118.49157800002206, 34.46005199903386], [-118.49062699979233, 34.45982799933215], [-118.49038999981775, 34.45924899934428], [-118.49049300012832, 34.456441999119896], [-118.49219900004441, 34.45323999933825], [-118.49198100024184, 34.45213499889892], [-118.49046999990188, 34.45113499902413], [-118.49083600017147, 34.45082099893525], [-118.49125499978231, 34.45075999922301], [-118.49204999994006, 34.45135199924835], [-118.4910760001492, 34.45007299902389], [-118.4918900000334, 34.45011899928676], [-118.49173099972825, 34.44910599913495], [-118.49091000018957, 34.44889999915062], [-118.49116100026885, 34.44801099898749], [-118.48976900016808, 34.44729999917813], [-118.4895880001236, 34.444892999023104], [-118.49226999993877, 34.445036999028815], [-118.49871199976793, 34.44501199911448], [-118.49864699976992, 34.438485998953524], [-118.4903490000083, 34.43859999906496], [-118.49040499989793, 34.4417159993341], [-118.48196099977918, 34.44171399910175], [-118.48203299978351, 34.43867299905614], [-118.47618399982456, 34.43872899891848], [-118.4676089997804, 34.43906299923827], [-118.46771499990837, 34.44138199933184], [-118.46310700026955, 34.44139199889575], [-118.46325300014978, 34.43741399905821], [-118.46307699985634, 34.431044999229265], [-118.45752500000464, 34.431078999235396], [-118.45745500018545, 34.42705199893768], [-118.44821900022154, 34.42725499915522], [-118.44778400016308, 34.42766399934329], [-118.44840399998213, 34.42814899897571], [-118.44807999999261, 34.42854899914163], [-118.44725900020653, 34.428520999117495], [-118.44721099979938, 34.428926999262295], [-118.44613700025496, 34.429874998991565], [-118.44609600022636, 34.43382799901333], [-118.43674500022831, 34.43395199891723], [-118.43685299978077, 34.43785599910029], [-118.4303899997512, 34.43769399919797], [-118.42747600018411, 34.43693199918722], [-118.42738400023053, 34.43406699903277], [-118.4189489998056, 34.43431499904227], [-118.41897000026138, 34.43328999925724], [-118.42036299977627, 34.431902998961476], [-118.42070800004862, 34.43105999917021], [-118.41568400003077, 34.43308899910534], [-118.4149380001268, 34.43493499919126], [-118.41477600006448, 34.437639999337755], [-118.41630600026711, 34.43747999929234], [-118.41754200021772, 34.437544999252516], [-118.41773800026013, 34.439257998936576], [-118.41502700023995, 34.43929999898234], [-118.4150950002277, 34.444999999094286], [-118.40579799982066, 34.444654999248066], [-118.40576000000361, 34.4464419993237], [-118.40474200003673, 34.44614799915695], [-118.40408200020725, 34.445436999179755], [-118.40348999998861, 34.44657699911896], [-118.40286099988349, 34.44672199900751], [-118.40248400014111, 34.44654199915759], [-118.40202699981799, 34.44708299906642], [-118.40259799997384, 34.44936399916946], [-118.39999900000186, 34.449645999161866], [-118.399229999759, 34.44964999932579], [-118.3990719998798, 34.4488039989848], [-118.39825600016272, 34.44916199906953], [-118.39709200015675, 34.44916199890266], [-118.39715599992145, 34.44844499905105], [-118.39748899987838, 34.44839899897662], [-118.39781599982116, 34.4479219993323], [-118.398165000141, 34.44781099898188], [-118.39766399983174, 34.447670998996344], [-118.3961459998988, 34.44653999895804], [-118.39467999981754, 34.44708099915361], [-118.39580499987406, 34.44940899919628], [-118.39725700005386, 34.44940899899572], [-118.39732999980683, 34.45383999934333], [-118.3935730002427, 34.45364299921155], [-118.39412000020768, 34.45405899905091], [-118.39364000010622, 34.454410998903725], [-118.3932109997541, 34.45423099914611], [-118.39237600021038, 34.454674999022345], [-118.39244599981303, 34.45504199897705], [-118.39428599974168, 34.45507899915295], [-118.39433200019262, 34.4553429989259], [-118.39417799976431, 34.45535299926034], [-118.39398400026205, 34.4556989990752], [-118.39451900004362, 34.456110998965315], [-118.39437500012254, 34.45637199904076], [-118.39342599976912, 34.456000999005916], [-118.3928940001647, 34.457200999169814], [-118.39207199975756, 34.457193998994654], [-118.39219399986453, 34.45792299928444], [-118.39215400012823, 34.46113399920949], [-118.38757300008992, 34.46100299927855], [-118.38770800009947, 34.45309799913162], [-118.38870800019961, 34.45309099907054], [-118.38872600012638, 34.45168999900747], [-118.38843000026259, 34.45168199911893], [-118.38853399975017, 34.44961599893743], [-118.38809299976059, 34.449835999282925], [-118.38857899975109, 34.44938299929581], [-118.38780600010496, 34.449073999286384], [-118.38833599983498, 34.44834999895961], [-118.38659599977207, 34.44725499924566], [-118.38645900006661, 34.44889299929075], [-118.37694899978649, 34.44890899926914], [-118.37607100027003, 34.43730999908717], [-118.37689900003079, 34.43838499929264], [-118.37759700004375, 34.43857899918094], [-118.38080099993546, 34.438610999009406], [-118.38164500008403, 34.43844999925281], [-118.38144599992305, 34.4371019992037], [-118.38114499978425, 34.437127998974006], [-118.38061400000016, 34.43503399911953], [-118.3844600000001, 34.43411899911951], [-118.3857930000001, 34.434476999119376], [-118.38644600000012, 34.43439599911944], [-118.38746300000017, 34.43501999911954], [-118.388448, 34.43535799911947], [-118.39057200000015, 34.435522999119435], [-118.39054700000013, 34.433826999119376], [-118.392348, 34.4334289991194], [-118.40245600000014, 34.42893899911961], [-118.40567000000016, 34.42803199911949], [-118.40663800000011, 34.42704899911934], [-118.41516800000018, 34.42709299911954], [-118.41521900000018, 34.4249069991196], [-118.40396900000012, 34.424823999119496], [-118.40419600000021, 34.42416499911952], [-118.405108, 34.423607999119454], [-118.4037680000002, 34.42341899911951], [-118.40421800000018, 34.423192999119586], [-118.40356500000013, 34.420771999119665], [-118.401987, 34.42128999911949], [-118.401755, 34.416403999119616], [-118.39777900000017, 34.41618799911966], [-118.39733400000027, 34.40757099911976], [-118.3970670000001, 34.39803199911995], [-118.399046, 34.399454999119705], [-118.40001, 34.40165599911987], [-118.4000960000002, 34.40313799911996], [-118.40063800000013, 34.40358799911968], [-118.40058400000017, 34.404103999119705], [-118.403813, 34.40833199911974], [-118.40633100000012, 34.40714799911988], [-118.407799, 34.40542399911973], [-118.407721, 34.40501299911987], [-118.40849400000018, 34.403496999119675], [-118.40726500000015, 34.402704999119734], [-118.40487500000012, 34.40054299911983], [-118.40321300000019, 34.40064099911973], [-118.40350700000018, 34.3995649991199], [-118.401974, 34.39914399911972], [-118.40262900000019, 34.398223999119715], [-118.403351, 34.398581999119955], [-118.40383300000012, 34.39779199911997], [-118.4022460000001, 34.39698499911982], [-118.403113, 34.39621899911988], [-118.40309900000014, 34.39458099911992], [-118.39710200000015, 34.39457699911988], [-118.39720400000029, 34.38425799911986], [-118.40529600000012, 34.38418099911994], [-118.405275, 34.380620999120005], [-118.40597299995761, 34.38086699930525], [-118.40837399980411, 34.380468998944835], [-118.40954800013877, 34.37972199928681], [-118.41090300013799, 34.37932499914333], [-118.41217499979942, 34.379246998995804], [-118.41272400016229, 34.37943099934418], [-118.41306099977069, 34.379879998948255], [-118.41334799983096, 34.38118399895417], [-118.41677899998301, 34.381097999285736], [-118.41690000024562, 34.38089499891711], [-118.41718850351506, 34.38109676225239], [-118.41747613065853, 34.381061999998025], [-118.41998429179631, 34.3799700713258], [-118.42486023586561, 34.37683940048882], [-118.42646400686871, 34.37645901028025], [-118.4299299998897, 34.37640546315197], [-118.4299360000084, 34.3737649992303], [-118.4321370000645, 34.37378899925459], [-118.43218300005084, 34.37464199899897], [-118.43363399983836, 34.37464399902595], [-118.43360899980286, 34.37580599898546], [-118.43562299988348, 34.37584799892859], [-118.4356460001784, 34.37668099895955], [-118.43882999987697, 34.37676399896186], [-118.43882700025028, 34.37381299899842], [-118.44070900022277, 34.373860999267876], [-118.44064000025627, 34.37825299899645], [-118.44254899990624, 34.378152998907716], [-118.4425100000478, 34.380472999215804], [-118.44686199998634, 34.38073499897324], [-118.44679700008241, 34.38380999922592], [-118.46303099996447, 34.383981998947526], [-118.46299100022868, 34.39137299915362], [-118.46657300023978, 34.391352999264015], [-118.47675800022387, 34.390066998979904], [-118.47821999992843, 34.389156999256706], [-118.4823300000855, 34.385879998946], [-118.48617900017238, 34.383780999297], [-118.48734399984085, 34.38293599924731], [-118.4977839999434, 34.37386099895677], [-118.49904500017428, 34.37258599933283], [-118.5006089998833, 34.37011599915023], [-118.49795299992037, 34.37009599893804], [-118.49794100004594, 34.36753199913016], [-118.49347300004403, 34.36752199922366], [-118.49347300006448, 34.3695149990751], [-118.48999300002843, 34.36949599890267], [-118.48998599990233, 34.370481999227515], [-118.48333299973285, 34.37048199898687], [-118.48335900004551, 34.36664399892958], [-118.48299900004142, 34.366636999035464], [-118.48299300014396, 34.3662259991438], [-118.47493099988286, 34.36607199921298], [-118.474673000102, 34.35607599895378], [-118.4900459999162, 34.35699699924776], [-118.49017499978919, 34.359502998987665], [-118.50017699994548, 34.359901999021446], [-118.50025700007185, 34.36046299919282], [-118.50582699985874, 34.36052099908643], [-118.50623800014988, 34.359142999064744], [-118.50625500007239, 34.35706299894666], [-118.50399599981799, 34.35015199916871], [-118.5037009999425, 34.34813099901921], [-118.50387000025304, 34.34633699914414], [-118.50439999986219, 34.344802999234865], [-118.50556799987176, 34.341924999143714], [-118.5065070000739, 34.340497999161535], [-118.51062099995532, 34.34049999919027], [-118.5108009997405, 34.34403799931823], [-118.51605300025173, 34.343941999123395], [-118.51602700010974, 34.34697099891459], [-118.52036000015683, 34.346928999187526], [-118.52027599979137, 34.35060899892529], [-118.52326000002293, 34.35174499897153], [-118.52903500019818, 34.35174999914612], [-118.53149800002655, 34.352448999171365], [-118.53341199999824, 34.35240599909913], [-118.5333899998764, 34.35310099901058], [-118.53404200023685, 34.3535889992548], [-118.54140800021912, 34.350643998907714], [-118.54287678763194, 34.350549967212075], [-118.5453555757438, 34.3514648613479], [-118.54771444538366, 34.35278199579622], [-118.55150389046801, 34.35617157468149], [-118.55180506824371, 34.356174329299016], [-118.55286263129004, 34.357154192514805], [-118.55359258048257, 34.35805253082429], [-118.55425306067004, 34.359215637770795], [-118.55523642906192, 34.361979020822005], [-118.55553400019036, 34.3616549991047], [-118.55550300005045, 34.36075099899768], [-118.55500200024318, 34.35927899898982], [-118.55485900018891, 34.35828399923786], [-118.55418899995622, 34.35681599897318], [-118.55428399999461, 34.35677199916756], [-118.55605000005399, 34.356241999280776], [-118.55808700012344, 34.35616299909139], [-118.55773299989586, 34.35706399922718], [-118.55703199991441, 34.35726099933404], [-118.555305999822, 34.358164998977934], [-118.55506000005796, 34.35843599925428], [-118.55511899974057, 34.35860799922307], [-118.55623100008427, 34.35830299901989], [-118.55688399991642, 34.35770199899212], [-118.55776399981876, 34.35738499922349], [-118.55832100022421, 34.35616399925799], [-118.55922800007762, 34.35587899920018], [-118.55966600014526, 34.355481999278034], [-118.56022299982712, 34.35590199928859], [-118.56072599974081, 34.355816999210525], [-118.56171699992174, 34.35601299904859], [-118.5620420000427, 34.35641599895883], [-118.56201199975763, 34.35728399909091], [-118.56234600001574, 34.357367999035624], [-118.56560899996688, 34.35690199928181], [-118.56630200025903, 34.35709599916212], [-118.56673300021617, 34.35773999907129], [-118.56611600001582, 34.358164999006256], [-118.56610499994036, 34.35898699892043], [-118.56541000019666, 34.35940399915909], [-118.5648579997816, 34.35943299904659], [-118.56418900002576, 34.358958999118016], [-118.56383600006676, 34.35891299900394], [-118.56237799976286, 34.35898599907446], [-118.56200800011004, 34.35913699897354], [-118.56200600000784, 34.35938499895862], [-118.56169500009419, 34.35937599895759], [-118.56158099998059, 34.35906199904637], [-118.56101899985094, 34.358827999158976], [-118.5602199998601, 34.359208999117016], [-118.5598969999707, 34.358223999303384], [-118.56000100024998, 34.357582998996854], [-118.55974499984448, 34.35756199905629], [-118.55976899989338, 34.358377998985056], [-118.55907099998896, 34.35879099912092], [-118.55914000004374, 34.35932499921076], [-118.55659200020969, 34.35921999902553], [-118.55641999986072, 34.360985998903296], [-118.55535275119598, 34.362355471508614], [-118.55639707474671, 34.364952040260434], [-118.56006831113974, 34.36982879190007], [-118.56681020934205, 34.38050946434611], [-118.57001975471539, 34.388446851274736], [-118.57302818860664, 34.40031151953872], [-118.57653199981732, 34.40825699904514], [-118.57647899986021, 34.409095998951734], [-118.57784499979428, 34.41200299896766], [-118.57923800010822, 34.41563699890285], [-118.58103699984073, 34.419237999054616], [-118.58495210234196, 34.42669004995673], [-118.5852204656333, 34.426539096176306], [-118.58663444802067, 34.429167068886215], [-118.58800913529716, 34.43082393120668], [-118.59665754226572, 34.438142279234704], [-118.597902663968, 34.43902750964606], [-118.60882231147954, 34.444809276435535], [-118.60991202443778, 34.445525869443124], [-118.61131951733142, 34.446797439797834], [-118.61345287894427, 34.44957175031619], [-118.61056800017137, 34.45064999903674], [-118.60986199987869, 34.451275999205265], [-118.60967899987062, 34.45127599923941], [-118.60900999987139, 34.45101799911742], [-118.60840599992086, 34.45049299924871], [-118.60820100013528, 34.45015399902307], [-118.60821999985028, 34.44926899932666], [-118.6076770002042, 34.44917799899871], [-118.60574299977952, 34.449516999034415], [-118.60518999992875, 34.44914999921349], [-118.60510000002516, 34.448638999332104], [-118.6042930000123, 34.44809599902275], [-118.60379099977735, 34.44732999903122], [-118.60231699998997, 34.44760399928417], [-118.60074700017917, 34.447508999267285], [-118.59971900015803, 34.448197998916214], [-118.5992439997384, 34.447943999192546], [-118.5985960000907, 34.44836099897693], [-118.59756600019907, 34.448040999058506], [-118.59635000019242, 34.44692299900114], [-118.58894499975786, 34.448391999002865], [-118.5876860001129, 34.4478769990016], [-118.58130399991107, 34.447738999005104], [-118.58442400009277, 34.45368899932942], [-118.58861700018763, 34.45688099928315], [-118.58559600012165, 34.46119399898555], [-118.57915099993228, 34.4618579991989], [-118.57901700008297, 34.46041999917838], [-118.57753999986602, 34.459921999164195], [-118.57686799990776, 34.45931399926346], [-118.57619699987015, 34.45744399894557], [-118.57566000001901, 34.45483499893632], [-118.57458599987586, 34.45428199893181], [-118.57498899995605, 34.45323099892643], [-118.5750560000918, 34.45201499930475], [-118.57478699989905, 34.45124099890679], [-118.57431699997139, 34.45090899905936], [-118.57513600016894, 34.44920699899951], [-118.57439499994696, 34.44685199902914], [-118.57420300019388, 34.44483699898004], [-118.57250700023697, 34.44605599932538], [-118.5682500002423, 34.447425999100275], [-118.5667499997978, 34.4461369990563], [-118.56514900004186, 34.445280998899655], [-118.56340900001823, 34.444760999205855], [-118.56131699978981, 34.4445359992724], [-118.56141700001618, 34.44317399908657], [-118.55749399978953, 34.44297699898953], [-118.5534570000833, 34.444251999337766], [-118.55836499980325, 34.4462569991892], [-118.55824700016231, 34.44650999892386], [-118.55830000013148, 34.44864899913958], [-118.55697300014529, 34.45081199912216], [-118.55684300005743, 34.4522079993117], [-118.55639299991113, 34.45345899915286], [-118.55665200018662, 34.455301999322245], [-118.55656100006884, 34.45562999914401], [-118.55385700026213, 34.459406999037135], [-118.55354699996073, 34.46080199926151], [-118.55299000010794, 34.46148899916295], [-118.55186500000286, 34.4624349990882], [-118.55002799982957, 34.46223899890055], [-118.54983000026367, 34.46279099913907], [-118.54926000025293, 34.462980998921864], [-118.54918800002268, 34.4645839992203], [-118.5489150001035, 34.4655099993345], [-118.54808400021393, 34.46700599897765], [-118.54448300007573, 34.4668549992049], [-118.54360499973535, 34.46591099915634], [-118.54327400020576, 34.46462099914132], [-118.54130199996901, 34.46434499904257], [-118.54084300018685, 34.465096999019686], [-118.54098700002412, 34.46520399928838], [-118.54081499983019, 34.46598899930662], [-118.539750999967, 34.46595699893057], [-118.53690899988403, 34.463429999104854], [-118.53692299988414, 34.46546999923075], [-118.53741300016164, 34.47218999927361], [-118.5364269997861, 34.47214899897536], [-118.53564800026112, 34.473069999101035], [-118.53556699981796, 34.473994998896124], [-118.53521800020644, 34.473989999226426], [-118.53470000021325, 34.473582999341524], [-118.53470499980351, 34.47443499917798], [-118.53351899998228, 34.4744139990619], [-118.53326399981181, 34.47512499910245], [-118.53227799996452, 34.475124998986985], [-118.53217600024813, 34.47525499917215], [-118.53195499983862, 34.47493699909666], [-118.53145499993659, 34.474701999316004], [-118.53050700024545, 34.475418999244134], [-118.5301660000293, 34.47546899909057], [-118.52989499986788, 34.475301998904676], [-118.5296679999523, 34.47718199909437], [-118.52471200012155, 34.47721299913417]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Santa Clarita", "population": 2.3137756153652056, "cases": 393.0, "resource_uri": "/1.0/boundary/santa-clarita-la-county-neighborhood-current/", "external_id": "santa-clarita", "slug": "santa-clarita-la-county-neighborhood-current", "metadata": {"sqmi": 57.3513787685, "type": "standalone-city", "name": "Santa Clarita", "slug": "santa-clarita"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.0735209925438, 33.975071999867204], [-118.0730499865836, 33.97419200382496], [-118.07247299191192, 33.974469998611205], [-118.072381, 33.97396399912493], [-118.07183498648065, 33.97401199812378], [-118.07134900000021, 33.97385899912495], [-118.07147198606417, 33.97309300021643], [-118.07117999268938, 33.9730700040221], [-118.07109998660312, 33.97237099930068], [-118.07070399188083, 33.97228000539485], [-118.07084198644569, 33.97182899951024], [-118.05531999059158, 33.968263001295625], [-118.05460400000021, 33.96613499912518], [-118.05536200000019, 33.96600499912509], [-118.05485800000012, 33.96173199912517], [-118.05577500000018, 33.96143299912509], [-118.05227300000026, 33.959739999125155], [-118.0507170000001, 33.95877299912509], [-118.0528340000001, 33.95667799912524], [-118.047142, 33.955719999125144], [-118.05365300000017, 33.94929799912534], [-118.05065499030296, 33.94719300542261], [-118.0484859965001, 33.94952098854347], [-118.0482109893021, 33.947995006105636], [-118.04741898705507, 33.94877899616522], [-118.04604800000013, 33.94795499912532], [-118.04640600000016, 33.947159999125304], [-118.0479989873589, 33.94561300307877], [-118.0482979870152, 33.94543500427605], [-118.04886098147968, 33.94576099982304], [-118.04928300000016, 33.94536399912546], [-118.049028, 33.94518899912537], [-118.05023898912138, 33.9440500057219], [-118.0513929815131, 33.94480099952734], [-118.05205500000011, 33.94414399912528], [-118.05145198582996, 33.94332400208347], [-118.05087799190814, 33.94332000533501], [-118.04985700000015, 33.94267199912532], [-118.04891998645004, 33.94172999947471], [-118.04768898729533, 33.94102000449716], [-118.04574298950077, 33.94220599771319], [-118.04233699188276, 33.94002099856348], [-118.04452298756556, 33.93887900467377], [-118.04587198086126, 33.9398109989578], [-118.04618898654797, 33.939408999338724], [-118.0457439919399, 33.93931100528986], [-118.04574699297777, 33.93885200300209], [-118.04641298588619, 33.9388410001107], [-118.04640599296019, 33.93622600083285], [-118.04884498583364, 33.93568900157486], [-118.04881598592186, 33.9326780005943], [-118.04755499288481, 33.93265100339845], [-118.04759898579627, 33.93231300137047], [-118.04713099307199, 33.93235400223363], [-118.04714398587554, 33.931737000777474], [-118.04641399283959, 33.931739003552046], [-118.04642099305941, 33.9278690024151], [-118.04710998572281, 33.92782600060361], [-118.04725698579296, 33.92671600148905], [-118.04641599307824, 33.92680400203586], [-118.04641199899744, 33.92542802647698], [-118.04794697176861, 33.92665300559369], [-118.04811497176777, 33.929912005598005], [-118.04769897176661, 33.931213005599616], [-118.0477909859014, 33.93140700389876], [-118.04882098586621, 33.931395000826576], [-118.04881698587579, 33.931741004017205], [-118.05206298575723, 33.931735000001915], [-118.05189400072581, 33.929587024300595], [-118.05288898620661, 33.93003500187553], [-118.0552049858512, 33.93005400049894], [-118.05519698640248, 33.917042999547554], [-118.05188898587694, 33.91688500240322], [-118.03644799058202, 33.91700000129196], [-118.03643100000014, 33.91541299912571], [-118.03794700000017, 33.91541499912565], [-118.037849, 33.90416599912587], [-118.03679800000022, 33.904212999125846], [-118.0356630000002, 33.90356399912592], [-118.03441300000021, 33.904140999125815], [-118.034308, 33.902489999125905], [-118.02911500000016, 33.9025259991258], [-118.02889000000019, 33.882797999126105], [-118.03326400000023, 33.88492099912605], [-118.03884300000023, 33.88790999912599], [-118.055385, 33.88778899912604], [-118.055357, 33.89506099912602], [-118.06274100000023, 33.89506199912593], [-118.06276100000015, 33.89576399912595], [-118.06396900000021, 33.89568499912587], [-118.0639550000001, 33.90227099912588], [-118.06175200000015, 33.90227299912586], [-118.05893500000013, 33.90034299912586], [-118.05827200000016, 33.90014599912597], [-118.04650500000028, 33.89378299912596], [-118.04652900000019, 33.895165999125915], [-118.04227000000014, 33.895203999125926], [-118.04207800000017, 33.89693099912586], [-118.04224800000023, 33.89886499912586], [-118.044293, 33.89891799912606], [-118.04431100000022, 33.902434999125866], [-118.0537970000002, 33.902311999125885], [-118.0537980000002, 33.90321399912587], [-118.05290700000025, 33.90320999912578], [-118.0530980000001, 33.90621399912582], [-118.05037500000013, 33.906071999125786], [-118.04979200000017, 33.90693899912574], [-118.04978800000015, 33.90923799912574], [-118.055209, 33.91227399912574], [-118.05520700000025, 33.91251799912573], [-118.05539800000014, 33.91251399912577], [-118.05539500000016, 33.91237799912574], [-118.0574640000002, 33.913641999125744], [-118.0594350000002, 33.9155359991257], [-118.06041600000019, 33.91709399912568], [-118.0638160000002, 33.91708799912567], [-118.06395800000023, 33.93041499912552], [-118.06847800000014, 33.9304139991255], [-118.06825100000017, 33.92759499912558], [-118.06868400000026, 33.92790099912559], [-118.072587, 33.9278959991255], [-118.0726800000002, 33.931700999125475], [-118.08225900000012, 33.9316829991254], [-118.08215900000023, 33.93394899912554], [-118.08380700000014, 33.934025999125495], [-118.08848400000011, 33.929551999125565], [-118.094055, 33.937463999125384], [-118.09847000000013, 33.94413699912536], [-118.0982870000002, 33.94490199912536], [-118.09767400000015, 33.945907999125176], [-118.09361100000015, 33.95045999912529], [-118.09336900000011, 33.950361999125356], [-118.09314200000019, 33.95096099912527], [-118.09189100000017, 33.95229799912524], [-118.08951100000023, 33.95537099912513], [-118.087111, 33.959477999125156], [-118.08673600000022, 33.96092999912525], [-118.08686100000013, 33.96177599912516], [-118.08903200000012, 33.96681999912507], [-118.08847000000013, 33.966650999125], [-118.08771500000012, 33.96669799912506], [-118.07832900000012, 33.96376499912519], [-118.07596400000021, 33.96250399912505], [-118.07594200000018, 33.9622909991251], [-118.0742179859578, 33.96085600052536], [-118.07088699261612, 33.96049400418768], [-118.07098398589474, 33.96002200075453], [-118.0701969858942, 33.96002200401292], [-118.07031698577362, 33.96129400142698], [-118.06832298597757, 33.96157500296062], [-118.06851098586242, 33.96248800224], [-118.06810498591325, 33.96257600248156], [-118.0681719858083, 33.96383800175106], [-118.06739898592362, 33.96394200386214], [-118.0674619859055, 33.96413800395404], [-118.07051398587986, 33.96411100081815], [-118.07059198568831, 33.964679999678296], [-118.0662949858444, 33.964572004195865], [-118.06539998568074, 33.967213004650944], [-118.06691698609745, 33.96735200012949], [-118.066930986294, 33.96770399929021], [-118.0664929856542, 33.96767600549683], [-118.06644897177975, 33.96945300565346], [-118.06623598557404, 33.969993004877104], [-118.06846598677257, 33.970275998710335], [-118.06857699609625, 33.969698011607036], [-118.06962598085127, 33.97028299846577], [-118.070530988607, 33.96905700665573], [-118.07194797178745, 33.96946600565486], [-118.07128097178621, 33.970356005655894], [-118.07197598578854, 33.97061700202527], [-118.07273398599924, 33.97039900275609], [-118.07285799770992, 33.96995400734412], [-118.07363997178966, 33.97014500565599], [-118.07348197178936, 33.97031300565626], [-118.07354297178932, 33.97045900565655], [-118.07458197179024, 33.97215300565897], [-118.07425598821271, 33.97258299825693], [-118.07395198529319, 33.972521005341385], [-118.07488098602572, 33.974666002830716], [-118.0735209925438, 33.975071999867204]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Santa Fe Springs", "population": 0.18363449390333483, "cases": 25.0, "resource_uri": "/1.0/boundary/santa-fe-springs-la-county-neighborhood-current/", "external_id": "santa-fe-springs", "slug": "santa-fe-springs-la-county-neighborhood-current", "metadata": {"sqmi": 8.85545159124, "type": "standalone-city", "name": "Santa Fe Springs", "slug": "santa-fe-springs"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.48398100000011, 34.04163499912409], [-118.4837660000001, 34.04142999912412], [-118.48194000000014, 34.04287299912418], [-118.48001500000021, 34.04445599912408], [-118.48016100000018, 34.04452899912418], [-118.47974500000021, 34.044702999124084], [-118.479647, 34.04510699912413], [-118.47913600000017, 34.04518899912399], [-118.4790150000002, 34.04568699912399], [-118.47843800000012, 34.04562899912405], [-118.47834800000025, 34.04626499912408], [-118.47728300000011, 34.0466989991241], [-118.4743820000002, 34.04420799912416], [-118.47427800000011, 34.04431399912402], [-118.47372100000022, 34.044035999124084], [-118.47127500000015, 34.041941999124], [-118.47151300000016, 34.04174899912419], [-118.45917500000012, 34.0313279991243], [-118.4576150000002, 34.03165699912424], [-118.45706800000019, 34.02979899912426], [-118.45290500000021, 34.02803699912447], [-118.445927, 34.019419999124395], [-118.44342600000012, 34.01662499912448], [-118.455935, 34.01002299912449], [-118.45599000000014, 34.0098789991245], [-118.45698000000014, 34.00965599912458], [-118.45710600000018, 34.00943399912452], [-118.45784400000015, 34.00903699912461], [-118.4799170000002, 33.997352999124715], [-118.48141100000018, 33.996309999124726], [-118.48173700000028, 33.996448999124716], [-118.48216500000011, 33.99628099912471], [-118.48334400000019, 33.99550999912476], [-118.48145200000013, 33.993160999124726], [-118.48396646263491, 33.99346275589136], [-118.48476201722735, 33.99411299379274], [-118.48770397969315, 33.9978119915232], [-118.4897220213668, 34.000002022096425], [-118.49084502628179, 34.00094298920367], [-118.49254097678228, 34.00454602249443], [-118.4934210190971, 34.00542501256776], [-118.49542701260386, 34.00724102384203], [-118.49719698830523, 34.008368974292665], [-118.49789599244205, 34.00789299277643], [-118.49854401547023, 34.00837902320059], [-118.4994230055436, 34.00769201461879], [-118.49935097960167, 34.00758100312335], [-118.4996850137176, 34.007308998653365], [-118.50009801857047, 34.007554013124604], [-118.49990198594863, 34.0078100235213], [-118.49951802296563, 34.00775799017097], [-118.49807497874897, 34.008984009544726], [-118.50096901160722, 34.01147997938178], [-118.5041909755795, 34.01467100744915], [-118.50678801322825, 34.0168040065245], [-118.51330501935648, 34.02180299621747], [-118.51770742009602, 34.024823468267016], [-118.51524100000013, 34.02693999912433], [-118.514711, 34.027872999124284], [-118.5126410000002, 34.029928999124266], [-118.510697, 34.031413999124254], [-118.50947300000017, 34.032701999124264], [-118.5085930000002, 34.03306299912425], [-118.50880200000017, 34.03335799912429], [-118.50870400000014, 34.03396199912426], [-118.50768800000021, 34.0362689991242], [-118.50808500000018, 34.03809899912429], [-118.50821700000014, 34.0380909991242], [-118.508263, 34.03834999912416], [-118.50811600000013, 34.039076999124156], [-118.50832300000013, 34.039204999124145], [-118.5080960000002, 34.03912999912418], [-118.506589, 34.04039799912411], [-118.50577400000017, 34.04069399912415], [-118.50507600000019, 34.04091099912418], [-118.50402400000016, 34.040628999124124], [-118.49540500000012, 34.04958999912401], [-118.49464100000029, 34.05016199912409], [-118.49446800000015, 34.0505599991241], [-118.48398100000011, 34.04163499912409]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Santa Monica", "population": 0.9522732982759196, "cases": 161.0, "resource_uri": "/1.0/boundary/santa-monica-la-county-neighborhood-current/", "external_id": "santa-monica", "slug": "santa-monica-la-county-neighborhood-current", "metadata": {"sqmi": 8.56505645013, "type": "standalone-city", "name": "Santa Monica", "slug": "santa-monica"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.443912, 34.04720899912407], [-118.434793, 34.0366589991241], [-118.43460800000013, 34.03625899912408], [-118.434618, 34.03564399912414], [-118.434397, 34.035327999124206], [-118.4308350000001, 34.03100699912419], [-118.431313, 34.03052499912426], [-118.43145300000012, 34.02992799912413], [-118.430611, 34.027909999124276], [-118.430775, 34.02743399912434], [-118.43029800000014, 34.026819999124214], [-118.44101200000013, 34.02150999912428], [-118.44281200000013, 34.020709999124385], [-118.44481200000011, 34.02010999912427], [-118.44435838165448, 34.01772957160596], [-118.445927, 34.01941999912436], [-118.45290500000013, 34.028036999124446], [-118.457068, 34.02979899912421], [-118.4576150000001, 34.03165699912417], [-118.459175, 34.03132799912427], [-118.47088419517723, 34.041330746500584], [-118.45922941167468, 34.05079463890208], [-118.45684100000013, 34.048023999123984], [-118.454243, 34.04941699912403], [-118.4522220000001, 34.04705999912404], [-118.448175, 34.04957799912402], [-118.449095, 34.05199599912397], [-118.44839542983966, 34.052404993912], [-118.443912, 34.04720899912407]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Sawtelle", "population": null, "cases": null, "resource_uri": "/1.0/boundary/sawtelle-la-county-neighborhood-current/", "external_id": "sawtelle", "slug": "sawtelle-la-county-neighborhood-current", "metadata": {"sqmi": 2.69118094473, "type": "segment-of-a-city", "name": "Sawtelle", "slug": "sawtelle"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.483716, 34.18660399912227], [-118.483716, 34.18620399912227], [-118.474716, 34.18580499912218], [-118.470116, 34.18110499912245], [-118.466216, 34.18040499912237], [-118.466115, 34.17910499912237], [-118.46956600000016, 34.17923799912231], [-118.46828200000014, 34.1775929991223], [-118.467833, 34.17641899912238], [-118.46761500000011, 34.174404999122366], [-118.467646, 34.170805999122486], [-118.467971, 34.16913399912252], [-118.4690300000001, 34.168052999122516], [-118.46961, 34.1669919991226], [-118.46993000000015, 34.16567099912264], [-118.46996, 34.163774999122545], [-118.470332, 34.16315099912252], [-118.47079, 34.16276399912256], [-118.47138000000011, 34.162597999122504], [-118.472061, 34.16263999912253], [-118.474749, 34.16458599912259], [-118.47551600000016, 34.16490499912251], [-118.476605, 34.165070999122555], [-118.49008900000011, 34.165112999122584], [-118.492516, 34.16530499912248], [-118.49251900000012, 34.16662499912253], [-118.49437800000018, 34.1669159991226], [-118.495663, 34.167606999122455], [-118.49629700000011, 34.16833799912247], [-118.498065, 34.17113999912251], [-118.498916, 34.17192199912239], [-118.49966200000013, 34.17210799912244], [-118.50593400000012, 34.172127999122345], [-118.505817, 34.17950499912237], [-118.507617, 34.17950499912239], [-118.507617, 34.17990499912238], [-118.509917, 34.18000499912242], [-118.51851800000011, 34.18000199912236], [-118.518517, 34.18090499912231], [-118.516417, 34.18090499912246], [-118.516417, 34.1824049991224], [-118.518517, 34.182504999122315], [-118.518417, 34.186403999122305], [-118.486211, 34.18644199912232], [-118.483716, 34.18660399912227]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Sepulveda Basin", "population": null, "cases": null, "resource_uri": "/1.0/boundary/sepulveda-basin-la-county-neighborhood-current/", "external_id": "sepulveda-basin", "slug": "sepulveda-basin-la-county-neighborhood-current", "metadata": {"sqmi": 3.13655865329, "type": "segment-of-a-city", "name": "Sepulveda Basin", "slug": "sepulveda-basin"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.34065600000012, 34.27235399912129], [-118.33775900000015, 34.271464999121264], [-118.336437, 34.26817399912149], [-118.335876, 34.26715499912135], [-118.335106, 34.26646399912126], [-118.33301200000011, 34.265101999121256], [-118.333512, 34.264501999121336], [-118.33431200000015, 34.264201999121376], [-118.329352, 34.25807399912148], [-118.325808, 34.252776999121465], [-118.325206, 34.251490999121465], [-118.324811, 34.2501019991216], [-118.323718, 34.24348699912155], [-118.322947, 34.24218799912148], [-118.32143500000011, 34.24090199912174], [-118.32040200000012, 34.24030099912171], [-118.31823600000013, 34.23938399912177], [-118.314707, 34.23830599912177], [-118.313731, 34.23783099912165], [-118.311857, 34.23647399912166], [-118.309275, 34.233902999121646], [-118.307827, 34.233247999121815], [-118.305741, 34.232770999121726], [-118.30283800000011, 34.2326339991218], [-118.29482100000011, 34.23336799912179], [-118.291206, 34.23393999912167], [-118.286987, 34.233718999121685], [-118.28264900000018, 34.233722999121674], [-118.280011, 34.23333699912169], [-118.278402, 34.233313999121606], [-118.271809, 34.23380299912176], [-118.271693, 34.23347499912174], [-118.27060900000012, 34.23280299912177], [-118.272018, 34.23159299912171], [-118.26680734947294, 34.23062818193326], [-118.266871, 34.22184599912191], [-118.337462, 34.22131199912199], [-118.335128, 34.21675299912204], [-118.334845, 34.21551399912196], [-118.336417, 34.21456799912195], [-118.336032, 34.21430899912198], [-118.33770600000013, 34.21258899912199], [-118.337737, 34.21127099912203], [-118.339806, 34.21119399912203], [-118.33993000000011, 34.206502999122215], [-118.34131942576883, 34.20652653043827], [-118.342812, 34.207403999122086], [-118.346974, 34.211814999121984], [-118.351212, 34.215703999122056], [-118.35461200000017, 34.21840399912194], [-118.357687, 34.22167799912188], [-118.358619, 34.22186299912187], [-118.35901200000015, 34.22210599912174], [-118.361613, 34.2250029991218], [-118.366614, 34.23003099912181], [-118.38381400000011, 34.246602999121585], [-118.39001400000011, 34.2523019991214], [-118.387514, 34.25670199912138], [-118.390814, 34.25720199912151], [-118.3861140000001, 34.26060199912139], [-118.38021400000014, 34.25950199912142], [-118.373313, 34.26030199912133], [-118.372113, 34.26130199912136], [-118.37111300000012, 34.26320199912134], [-118.37100700000015, 34.260447999121446], [-118.36551300000012, 34.26610199912149], [-118.359879, 34.26603899912123], [-118.359996, 34.26724699912138], [-118.35629300000012, 34.26716999912133], [-118.35716700000017, 34.26873499912136], [-118.355857, 34.268945999121335], [-118.35483300000011, 34.269809999121335], [-118.35224100000013, 34.27024199912127], [-118.35145700000011, 34.27060999912127], [-118.348928, 34.2707859991213], [-118.34736000000015, 34.27116999912124], [-118.34667200000015, 34.27102599912139], [-118.34577600000011, 34.27132999912121], [-118.345456, 34.27161799912123], [-118.344, 34.272033999121305], [-118.3425280000001, 34.27204999912126], [-118.34065600000012, 34.27235399912129]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Shadow Hills", "population": 0.04442031489067667, "cases": 9.0, "resource_uri": "/1.0/boundary/shadow-hills-la-county-neighborhood-current/", "external_id": "shadow-hills", "slug": "shadow-hills-la-county-neighborhood-current", "metadata": {"sqmi": 12.8068716307, "type": "segment-of-a-city", "name": "Shadow Hills", "slug": "shadow-hills"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.41431400000012, 34.17200499912246], [-118.413666, 34.17200299912243], [-118.41404500000012, 34.171685999122396], [-118.4141570000001, 34.17131899912242], [-118.413922, 34.169681999122496], [-118.413813, 34.154005999122596], [-118.41821300000014, 34.154005999122596], [-118.41811300000015, 34.14790599912288], [-118.419317, 34.14810699912278], [-118.42261200000014, 34.1499089991227], [-118.42261400000014, 34.14650099912281], [-118.4186250000001, 34.145875999122815], [-118.4189130000001, 34.14420599912277], [-118.41691300000011, 34.14360599912279], [-118.415913, 34.143605999122734], [-118.414913, 34.143105999122824], [-118.413713, 34.14060599912274], [-118.41351, 34.139185999122915], [-118.41321300000016, 34.1383059991228], [-118.41214600000013, 34.136727999123], [-118.41231300000014, 34.13620599912284], [-118.414368, 34.134010999122836], [-118.414359, 34.133717999122986], [-118.41391300000014, 34.13360699912287], [-118.412993, 34.1344439991229], [-118.41248800000012, 34.1346049991229], [-118.41222200000013, 34.13452399912297], [-118.412257, 34.1339959991229], [-118.41163700000011, 34.1322869991229], [-118.41128200000016, 34.13211899912302], [-118.41093300000013, 34.13217799912308], [-118.410569, 34.13311699912286], [-118.4102500000001, 34.133116999123025], [-118.409913, 34.13257399912293], [-118.409328, 34.13244899912297], [-118.4091240000001, 34.13225899912294], [-118.40907900000012, 34.13178199912291], [-118.40878700000015, 34.131575999122944], [-118.408698, 34.131143999122955], [-118.408441, 34.13088699912291], [-118.40837600000012, 34.129853999123], [-118.4071710000001, 34.129574999122994], [-118.406913, 34.12890699912307], [-118.40911300000013, 34.1294069991229], [-118.412013, 34.1294069991229], [-118.41321300000016, 34.12880699912298], [-118.414213, 34.12900699912305], [-118.414013, 34.12800699912292], [-118.4156130000001, 34.12620699912292], [-118.417213, 34.12720699912302], [-118.41841300000014, 34.12700699912298], [-118.41961300000015, 34.12770699912296], [-118.42081300000011, 34.12850699912306], [-118.42121300000011, 34.129606999122984], [-118.422413, 34.12970699912293], [-118.423213, 34.13020699912299], [-118.423713, 34.13030699912297], [-118.424313, 34.13020699912291], [-118.42641300000011, 34.131006999123045], [-118.43111300000012, 34.132006999122936], [-118.432713, 34.13170699912294], [-118.4339130000001, 34.13070699912293], [-118.43541400000014, 34.130406999123096], [-118.438414, 34.13150599912304], [-118.439314, 34.13110599912288], [-118.44061400000017, 34.13150599912293], [-118.442014, 34.131005999123], [-118.44251400000017, 34.13050599912295], [-118.443414, 34.130005999123064], [-118.44811400000012, 34.130705999122924], [-118.4498140000001, 34.13190599912297], [-118.45121400000014, 34.131505999122986], [-118.45321400000012, 34.13180599912284], [-118.454914, 34.132905999123004], [-118.455914, 34.13260599912286], [-118.459614, 34.13040599912301], [-118.463114, 34.13080599912306], [-118.464114, 34.12980599912294], [-118.465514, 34.12990599912287], [-118.46641400000011, 34.129705999123], [-118.467415, 34.12920599912294], [-118.469015, 34.12950599912302], [-118.471615, 34.13090599912296], [-118.473215, 34.1293059991229], [-118.474815, 34.126305999122934], [-118.476115, 34.126005999122974], [-118.474133, 34.129844999122966], [-118.472559, 34.13386299912297], [-118.47171600000011, 34.13762299912291], [-118.47131600000016, 34.14462999912281], [-118.47078100000016, 34.14645799912285], [-118.469134, 34.14983099912269], [-118.4685230000001, 34.15165799912272], [-118.468524, 34.15293399912268], [-118.46887800000016, 34.15510299912261], [-118.469944, 34.15894699912256], [-118.469967, 34.16519799912247], [-118.469458, 34.167369999122535], [-118.4690300000001, 34.168052999122516], [-118.468138, 34.168882999122445], [-118.467834, 34.16943399912245], [-118.46761500000011, 34.1719049991225], [-118.41431400000012, 34.17200499912246]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Sherman Oaks", "population": 0.8725635071423544, "cases": 124.0, "resource_uri": "/1.0/boundary/sherman-oaks-la-county-neighborhood-current/", "external_id": "sherman-oaks", "slug": "sherman-oaks-la-county-neighborhood-current", "metadata": {"sqmi": 9.14693779041, "type": "segment-of-a-city", "name": "Sherman Oaks", "slug": "sherman-oaks"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.0656512891506, 34.17940499912253], [-118.03002948656096, 34.179402556498324], [-118.030139, 34.1794019991225], [-118.03022600000013, 34.17095199912257], [-118.030007, 34.17077199912252], [-118.0303540000001, 34.17036799912258], [-118.029619, 34.169994999122586], [-118.03014100000014, 34.16982099912254], [-118.03014100000014, 34.168927999122594], [-118.029473, 34.16783199912259], [-118.029668, 34.16685399912255], [-118.038473, 34.1668809991226], [-118.038412, 34.15725899912279], [-118.06795800000019, 34.15682099912275], [-118.0682000000001, 34.17300899912259], [-118.06547900000018, 34.17260999912255], [-118.06587700000013, 34.17530599912254], [-118.06567700000018, 34.17595099912251], [-118.066001, 34.17940499912253], [-118.0656512891506, 34.17940499912253]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Sierra Madre", "population": 0.10989010989010989, "cases": 5.0, "resource_uri": "/1.0/boundary/sierra-madre-la-county-neighborhood-current/", "external_id": "sierra-madre", "slug": "sierra-madre-la-county-neighborhood-current", "metadata": {"sqmi": 2.96879374235, "type": "standalone-city", "name": "Sierra Madre", "slug": "sierra-madre"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.17409300000014, 33.818794999126915], [-118.171971, 33.81880599912689], [-118.17196800000016, 33.815293999126894], [-118.17425500000017, 33.81532299912688], [-118.17428600000014, 33.81371299912692], [-118.17878700000013, 33.81352799912702], [-118.1787920000002, 33.811629999127035], [-118.18066200000024, 33.81164099912698], [-118.18064600000022, 33.80422999912706], [-118.17631100000027, 33.80424399912702], [-118.17630200000015, 33.81164699912699], [-118.16326900000011, 33.81167799912699], [-118.16324900000023, 33.80913399912701], [-118.16145200000027, 33.80907599912709], [-118.16154800000015, 33.81011599912697], [-118.15891300000017, 33.81013199912693], [-118.15887700000029, 33.80244899912701], [-118.15685900000014, 33.80412799912704], [-118.1568570000002, 33.804421999127], [-118.15134600000017, 33.804426999127095], [-118.15138600000016, 33.797118999127164], [-118.15888800000022, 33.797118999127164], [-118.15889700000015, 33.796268999127236], [-118.15631, 33.79635099912723], [-118.1545650000003, 33.796809999127184], [-118.15457000000012, 33.79346999912717], [-118.15222600000011, 33.79346399912723], [-118.15171200000019, 33.79284699912714], [-118.15174900000014, 33.79242599912727], [-118.151001, 33.79122299912726], [-118.14942600000016, 33.78983599912719], [-118.16611100000011, 33.78985299912735], [-118.1665320000003, 33.7900799991273], [-118.16697100000015, 33.79055599912728], [-118.16690300000013, 33.790795999127255], [-118.16764500000016, 33.7914079991272], [-118.1717520000002, 33.793881999127215], [-118.17849300000016, 33.798514999127136], [-118.18210100000017, 33.80071699912709], [-118.18200100000014, 33.802116999127165], [-118.182134, 33.80259999912714], [-118.18172700000022, 33.80348899912711], [-118.18173400000026, 33.80423099912705], [-118.18489100000019, 33.80439599912707], [-118.18490700000018, 33.81163499912698], [-118.18467100000011, 33.81457899912699], [-118.18480500000015, 33.816403999126905], [-118.18395700000023, 33.81619399912694], [-118.18392300000018, 33.817055999126836], [-118.18480700000016, 33.817094999126816], [-118.18480200000015, 33.818615999126884], [-118.17526800000022, 33.81871599912694], [-118.17527300000017, 33.818909999126916], [-118.17409600000015, 33.81891599912689], [-118.17409300000014, 33.818794999126915]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Signal Hill", "population": 0.11796427367711493, "cases": 7.0, "resource_uri": "/1.0/boundary/signal-hill-la-county-neighborhood-current/", "external_id": "signal-hill", "slug": "signal-hill-la-county-neighborhood-current", "metadata": {"sqmi": 2.22339551786, "type": "standalone-city", "name": "Signal Hill", "slug": "signal-hill"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.25880800000016, 34.109008999123176], [-118.256407, 34.1085089991233], [-118.25350700000016, 34.1085089991233], [-118.25650700000011, 34.10590899912326], [-118.255807, 34.10540899912328], [-118.253407, 34.10430899912336], [-118.252507, 34.103408999123296], [-118.250607, 34.101008999123444], [-118.25180700000011, 34.09860899912342], [-118.253607, 34.095708999123396], [-118.254507, 34.094609999123485], [-118.258507, 34.09160999912347], [-118.25920700000013, 34.08990999912353], [-118.25990700000013, 34.08580999912346], [-118.263408, 34.08730999912355], [-118.2645080000001, 34.08560999912344], [-118.26610800000012, 34.08640999912353], [-118.266708, 34.08650999912349], [-118.269808, 34.08140999912357], [-118.27190800000012, 34.079209999123485], [-118.274408, 34.07530999912364], [-118.2772190000001, 34.07613999912361], [-118.28450800000012, 34.07790999912354], [-118.284808, 34.09590899912351], [-118.276608, 34.09590899912338], [-118.275508, 34.097608999123324], [-118.274008, 34.099008999123264], [-118.27330800000011, 34.101108999123376], [-118.273508, 34.104108999123284], [-118.271508, 34.10910899912317], [-118.26910800000012, 34.11160899912317], [-118.26630800000014, 34.11260899912315], [-118.265408, 34.11340899912305], [-118.265408, 34.113608999123244], [-118.263208, 34.11140899912329], [-118.262172, 34.11088899912317], [-118.261208, 34.11010899912324], [-118.25880800000016, 34.109008999123176]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Silver Lake", "population": 0.44083798228845633, "cases": 113.0, "resource_uri": "/1.0/boundary/silver-lake-la-county-neighborhood-current/", "external_id": "silver-lake", "slug": "silver-lake-la-county-neighborhood-current", "metadata": {"sqmi": 2.74910600903, "type": "segment-of-a-city", "name": "Silver Lake", "slug": "silver-lake"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.80288891942033, 33.97554637168849], [-117.8026910000003, 33.968312999125004], [-117.79379100000027, 33.96811299912501], [-117.79389000000043, 33.95401299912521], [-117.78340600000038, 33.946495999125275], [-117.84219200000022, 33.94661299912539], [-117.86877869440288, 33.94556915478152], [-117.86839712505662, 33.945950726402316], [-117.8687089767349, 33.94593326592307], [-117.86693553767877, 33.94772298697796], [-117.86590039337976, 33.94900276641749], [-117.86128747225256, 33.95640114904498], [-117.86062160982925, 33.95725084017893], [-117.85845498625667, 33.95914313183329], [-117.85649051254849, 33.960026547454646], [-117.85646600000028, 33.95921799912522], [-117.85550900000018, 33.95932899912515], [-117.84778200000027, 33.96116699912515], [-117.83847200000028, 33.95881999912515], [-117.83820500000022, 33.960782999125186], [-117.83291700000039, 33.95937199912514], [-117.83124500000022, 33.96047199912516], [-117.83094000000021, 33.961067999125135], [-117.8235420000003, 33.96610299912512], [-117.81980400000025, 33.968981999125106], [-117.81495900000023, 33.97313699912499], [-117.81444900000025, 33.97508099912499], [-117.81318300000025, 33.975466999124976], [-117.80562800000033, 33.97561899912499], [-117.80357800000019, 33.975927999125055], [-117.80276600000026, 33.975817999124935], [-117.80288891942033, 33.97554637168849]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "South Diamond Bar", "population": null, "cases": null, "resource_uri": "/1.0/boundary/south-diamond-bar-la-county-neighborhood-current/", "external_id": "south-diamond-bar", "slug": "south-diamond-bar-la-county-neighborhood-current", "metadata": {"sqmi": 5.34934511005, "type": "unincorporated-area", "name": "South Diamond Bar", "slug": "south-diamond-bar"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.16137800000027, 34.562604999117966], [-118.1567030000002, 34.56273099911797], [-118.15402500000023, 34.561300999117954], [-118.15258800000032, 34.560925999117785], [-118.15168600000027, 34.56085899911798], [-118.15167400000017, 34.56482399911791], [-118.14666100000022, 34.564735999117914], [-118.14276458163249, 34.56486660666097], [-118.14271634722712, 34.558024682331144], [-118.13889200000021, 34.55796099911798], [-118.13889005496881, 34.555393733642], [-118.13783478388078, 34.555392053289744], [-118.13785461721984, 34.55795312651196], [-118.13055660866338, 34.55789135079911], [-118.13147969897176, 34.55815642397885], [-118.13189819970906, 34.55888099335345], [-118.1293532142886, 34.55887713292801], [-118.12936082110686, 34.557923548128024], [-118.13028800000029, 34.557919999117935], [-118.13035987682751, 34.55740107300051], [-118.13176900000035, 34.555331999117975], [-118.13149700000024, 34.55211099911805], [-118.12965100000027, 34.55224299911806], [-118.12994915463133, 34.55309833830829], [-118.12920142225823, 34.55309885299716], [-118.12969092474155, 34.554024990691964], [-118.12932500000032, 34.55460499911807], [-118.12669300000022, 34.55713899911803], [-118.12379956940049, 34.556603915984994], [-118.12378996331506, 34.5579093968929], [-118.11482545884685, 34.55794793469714], [-118.11474100000021, 34.55714699911801], [-118.11412300000029, 34.55529399911807], [-118.11395800000022, 34.55258199911806], [-118.11342075257622, 34.55111079526171], [-118.10681652355288, 34.54187172222791], [-118.10641371441318, 34.54108894577499], [-118.10632500000027, 34.54049099911824], [-118.10264000000025, 34.535825999118266], [-118.10221800000026, 34.53594399911827], [-118.10241700000024, 34.536610999118196], [-118.1020720000003, 34.536685999118255], [-118.10184200000033, 34.536382999118246], [-118.10060000000018, 34.536458999118196], [-118.09901300000031, 34.53604299911828], [-118.09793200000028, 34.535076999118125], [-118.09808700000023, 34.53410199911831], [-118.09783500000026, 34.53372599911825], [-118.09740200000023, 34.5336389991183], [-118.09602700000023, 34.53383699911834], [-118.0938680000003, 34.534691999118245], [-118.0931650000003, 34.534798999118244], [-118.08919800000028, 34.5343039991183], [-118.08815800000026, 34.53367599911831], [-118.08623400000027, 34.53442599911828], [-118.08539700000024, 34.53501699911815], [-118.08467500000029, 34.53444299911827], [-118.08446400000024, 34.53365599911828], [-118.08247600000021, 34.53435499911828], [-118.08091100000028, 34.53429799911823], [-118.08071400000027, 34.53412999911828], [-118.08082800000014, 34.53380099911828], [-118.07982200000028, 34.52986299911833], [-118.07966900000027, 34.527639999118335], [-118.07962138342754, 34.513573585846636], [-118.05938636298923, 34.51370517154493], [-118.05939194447689, 34.511867917715726], [-118.05993969090177, 34.5118664324256], [-118.05986700000018, 34.50981299911853], [-118.05391607564441, 34.51006393050791], [-118.05390502297362, 34.51372217891754], [-118.04513380462856, 34.51374889864882], [-118.04518964196265, 34.52181816134811], [-118.04629600000021, 34.522371999118405], [-118.04881100000033, 34.524156999118375], [-118.05251800000016, 34.525816999118355], [-118.05513800000021, 34.527339999118276], [-118.05701400000025, 34.527993999118344], [-118.05910963726399, 34.52822218830865], [-118.07150273880848, 34.52812121316139], [-118.07164420623832, 34.53425037870532], [-118.0731001403282, 34.53454491113389], [-118.07416546425925, 34.53511311055919], [-118.07186384586868, 34.535428451570134], [-118.06284925072644, 34.53546784079713], [-118.06273600000013, 34.53261399911832], [-118.05993300000031, 34.532917999118304], [-118.05866300000025, 34.532904999118294], [-118.05616800000028, 34.5323359991183], [-118.05539500000026, 34.53232699911814], [-118.0551500006471, 34.532388668225195], [-118.05515135018564, 34.53293391928594], [-118.05492600000024, 34.532930999118285], [-118.0548780000003, 34.53219099911832], [-118.0539760000003, 34.53191299911834], [-118.05372800000029, 34.53152799911834], [-118.05170400000033, 34.53105799911824], [-118.05085300000026, 34.5310389991183], [-118.04982400000034, 34.53127499911826], [-118.04979535170851, 34.53183395220228], [-118.04961556884778, 34.53183339133174], [-118.04962687590849, 34.53384875856745], [-118.05014318339192, 34.53384583295244], [-118.05014387623956, 34.53397196767794], [-118.04977600000028, 34.53400399911828], [-118.04963536361002, 34.53545789879191], [-118.0495092851139, 34.5354575175196], [-118.04988013968101, 34.536633915471754], [-118.04868800000018, 34.537770999118194], [-118.04958952753921, 34.53896733427525], [-118.04962498401963, 34.542708640276956], [-118.034292668264, 34.54270865257515], [-118.034288123994, 34.540829526382566], [-118.02771608208447, 34.540781348234084], [-118.02770154105546, 34.53550652252174], [-118.02020661317995, 34.53546062229386], [-118.01492300437202, 34.53163612329391], [-118.01385216857163, 34.530655459247605], [-118.01003176029782, 34.525038281526626], [-118.0100402605208, 34.52458574525863], [-118.0097779931879, 34.52458435652428], [-118.00834171749294, 34.52271835909609], [-118.00602682454135, 34.52160653220509], [-118.00417367912011, 34.5211049377857], [-118.00249782000294, 34.52101328191479], [-118.00249499706062, 34.51921271763977], [-118.00232900564802, 34.51921774959853], [-118.00232150085641, 34.514364116486426], [-118.00125875863344, 34.514500012558834], [-118.00112640929459, 34.51481150817285], [-117.999002018783, 34.516473563104896], [-117.99727228940442, 34.51737556736781], [-117.99196950161777, 34.517339033762134], [-117.98920298540844, 34.517674796954125], [-117.98775459738636, 34.517533365560205], [-117.98768256833937, 34.51769526095282], [-117.9873576454647, 34.51759682779726], [-117.98742801498548, 34.51743627929158], [-117.9857391659106, 34.51643689811021], [-117.98463409888498, 34.515561441693215], [-117.983859210004, 34.51510726188845], [-117.98344767468154, 34.5150937143725], [-117.97919660057109, 34.51680020643016], [-117.97884050321446, 34.51702450565392], [-117.97894595897041, 34.51720478157359], [-117.97864668747103, 34.51732480969022], [-117.97855606584187, 34.51716791970263], [-117.9774642499146, 34.51749023549079], [-117.97363194710334, 34.519019291692324], [-117.97337220910681, 34.51921498966608], [-117.97347271093973, 34.519388372607175], [-117.97317342413292, 34.519507013298174], [-117.9730729227806, 34.51933363011167], [-117.97273415431692, 34.51937798762481], [-117.96848433835889, 34.521073112172424], [-117.96848383108241, 34.52121249275931], [-117.9402046089326, 34.521186562687525], [-117.93752867125754, 34.52086489031915], [-117.93644353834657, 34.52025568291257], [-117.93440371264468, 34.51819141209493], [-117.92550593537369, 34.508066685356276], [-117.92405570236467, 34.50702732318508], [-117.92242784544091, 34.50658625661475], [-117.90250909090946, 34.506568527594276], [-117.90243031080759, 34.50638628321088], [-117.87500022345944, 34.5063587433702], [-117.85379765876804, 34.50607480320856], [-117.85384082799783, 34.50621212593462], [-117.83760000000036, 34.506213982139606], [-117.81812279075085, 34.50603201723331], [-117.81681276159348, 34.50584879176545], [-117.81605664485338, 34.5055320737923], [-117.80798827373847, 34.49934734588488], [-117.80733701924092, 34.498999632802104], [-117.80644656298851, 34.498777253313534], [-117.76520000000032, 34.49877761850334], [-117.75020906044566, 34.49855993464595], [-117.74104545454581, 34.49859580032175], [-117.73919150008909, 34.49848618022728], [-117.73829195710613, 34.49824512935656], [-117.66005387247745, 34.451960718322624], [-117.65952800000024, 34.45151199911918], [-117.6592240000004, 34.45089299911928], [-117.65833900000027, 34.440196999119344], [-117.65735300000041, 34.42799799911948], [-117.65736600000034, 34.425373999119586], [-117.65376900000024, 34.38227099912002], [-117.65260315823693, 34.366205628436106], [-117.65389005879656, 34.36642961779801], [-117.65671862716184, 34.367538919817534], [-117.65975996394677, 34.36791292002936], [-117.66252043218381, 34.36870938851503], [-117.66542170056613, 34.370378325474874], [-117.66705499079825, 34.37106619254485], [-117.67032082728633, 34.37127596257749], [-117.67573680898006, 34.373002556181234], [-117.67757941891347, 34.37334742379945], [-117.67938226352564, 34.374248010726554], [-117.68286084227513, 34.37448579529497], [-117.68410332742546, 34.374846070890605], [-117.68564223312197, 34.375774144050645], [-117.68928920034622, 34.378675160283485], [-117.69070460893266, 34.379141108143905], [-117.6919823381958, 34.37859340210638], [-117.69305848571844, 34.378423015299674], [-117.69481818181825, 34.37849580032316], [-117.69635520012305, 34.378332163959456], [-117.69769135443462, 34.37889346527191], [-117.698239400279, 34.37889782407848], [-117.6987069158676, 34.378530308490014], [-117.6994905860482, 34.37649723606292], [-117.70032298376476, 34.37573426335807], [-117.70071842060702, 34.37449704170479], [-117.701260085398, 34.37407430503297], [-117.70176109740676, 34.37397761850478], [-117.70217447407647, 34.37404196260199], [-117.70271134275069, 34.374639706657184], [-117.70258835203025, 34.37619955377676], [-117.70371574792786, 34.37822898059223], [-117.70436888133443, 34.37869216352571], [-117.70504930048418, 34.378710345344075], [-117.7058106861697, 34.37817566125684], [-117.70646672980088, 34.37648413247937], [-117.70736061334537, 34.37579063762945], [-117.70816967219565, 34.37443618944093], [-117.71008180394637, 34.37240624862507], [-117.71104349586776, 34.37205970552428], [-117.71180319721981, 34.372282104709264], [-117.71290994771407, 34.37356112072704], [-117.71375935803056, 34.37392175629509], [-117.71735256604197, 34.37394964173999], [-117.71958286619704, 34.37502694754011], [-117.72048642711448, 34.37518656268957], [-117.72149955465669, 34.37506619254488], [-117.72260184731397, 34.37463183741294], [-117.72318829000939, 34.37468936398913], [-117.72436059972141, 34.375670551351234], [-117.72589240252215, 34.37598230605845], [-117.72620255793836, 34.3762093320882], [-117.72639489802738, 34.376777940804075], [-117.72607707279475, 34.37770448109691], [-117.7263346548918, 34.3781206148291], [-117.72785521558846, 34.378345382352855], [-117.72903332699421, 34.37907964226038], [-117.72966363636391, 34.37925943668684], [-117.73048566412061, 34.379146708980315], [-117.7310484569501, 34.37879391061558], [-117.73123892069745, 34.37847228104952], [-117.73141041638355, 34.37738745504904], [-117.73182742717144, 34.376963004228735], [-117.73321336924265, 34.376776301749466], [-117.73421511338967, 34.37645967096876], [-117.73565882378809, 34.3765399381131], [-117.73749371384372, 34.37589591040183], [-117.73858709845048, 34.37600198369225], [-117.73943741165154, 34.37646331117641], [-117.7403967100895, 34.37674717678926], [-117.74103938665525, 34.37796336490215], [-117.74205026712143, 34.37869448356763], [-117.74267167925815, 34.37864512935804], [-117.74407551184119, 34.37786557028638], [-117.74530448197697, 34.37789565359853], [-117.74598077016711, 34.377736038449086], [-117.74636345820448, 34.377468989340166], [-117.74648671029398, 34.377081817301914], [-117.74611326643726, 34.37587934702387], [-117.74599626571464, 34.374448338186774], [-117.74610271779055, 34.373356453177934], [-117.7465169903614, 34.37283419914502], [-117.74718884859554, 34.37244881166539], [-117.74787755175325, 34.37238670941402], [-117.74898303550968, 34.37255748873709], [-117.75078196433023, 34.37352248677989], [-117.75336765207899, 34.37325943668687], [-117.75651832796652, 34.37424066859807], [-117.75893539668476, 34.37392334987945], [-117.76208181818217, 34.37435034577773], [-117.76315067115652, 34.37416033646264], [-117.76380797922648, 34.37336218778341], [-117.76514637874145, 34.372644394733065], [-117.76618882736942, 34.3725405707712], [-117.76669580365811, 34.37270689115987], [-117.76724505378843, 34.37314196680855], [-117.76742520411798, 34.374483103624065], [-117.76795499780508, 34.37543298062556], [-117.76884117621243, 34.37582175629486], [-117.7709315510609, 34.37587630174973], [-117.7725621369034, 34.37499601152122], [-117.77322101503219, 34.375065058933586], [-117.77424589988907, 34.37558437436298], [-117.77470800695292, 34.3755589673081], [-117.77620342174897, 34.37466806359041], [-117.7785165171424, 34.37463559100091], [-117.77923553790853, 34.375333791805886], [-117.77929519805397, 34.37707062699436], [-117.7799038535965, 34.37750076536735], [-117.78068162561677, 34.37755887863301], [-117.78288061655057, 34.38252696926119], [-117.87590644792355, 34.38105273044494], [-117.92231951502197, 34.38071149252826], [-117.93246546941081, 34.38086126956004], [-117.932578, 34.3811019991202], [-117.935442, 34.38246199912022], [-117.936066, 34.383901999120084], [-117.93645, 34.38422199912013], [-117.937122, 34.38393399912022], [-117.937602, 34.38402999912017], [-117.93869, 34.38466999912016], [-117.939314, 34.38479799912017], [-117.939746, 34.38516599912017], [-117.939778, 34.38607799912008], [-117.940306, 34.38626999912011], [-117.940338, 34.38668599912014], [-117.941554, 34.38684599912016], [-117.942274, 34.38666999912016], [-117.942658, 34.38674999912009], [-117.942946, 34.38705399912011], [-117.942818, 34.38732599912016], [-117.942914, 34.38758199912008], [-117.943378, 34.38782199912016], [-117.943426, 34.38799799912014], [-117.942978, 34.38857399912008], [-117.94253, 34.38871799912008], [-117.941762, 34.38943799912009], [-117.940338, 34.390253999120105], [-117.940226, 34.39065399912001], [-117.940562, 34.39127799912002], [-117.940354, 34.391661999120025], [-117.939954, 34.39182199912005], [-117.939298, 34.39174199912012], [-117.93821, 34.39292599912008], [-117.939682, 34.39438099911998], [-117.939602, 34.39494099912004], [-117.940467, 34.39730899912004], [-117.940835, 34.397756999119984], [-117.940915, 34.39830099912001], [-117.940579, 34.399804999119986], [-117.941315, 34.401868999119955], [-117.943363, 34.401852999119996], [-117.943571, 34.40202899911997], [-117.943699, 34.402156999119875], [-117.943379, 34.40350099911989], [-117.943875, 34.40407699911993], [-117.945171, 34.40463699911986], [-117.945427, 34.40494099911989], [-117.945827, 34.405100999119895], [-117.946083, 34.404860999119826], [-117.946819, 34.40537299911991], [-117.947843, 34.40550099911988], [-117.948355, 34.405404999119895], [-117.949283, 34.405692999119836], [-117.950515, 34.40652499911984], [-117.950899, 34.40633299911987], [-117.951715, 34.40628499911986], [-117.952115, 34.40575699911991], [-117.954595, 34.405804999119894], [-117.956035, 34.406444999119884], [-117.956579, 34.40641299911995], [-117.956995, 34.40692499911989], [-117.958019, 34.40710099911988], [-117.959363, 34.40663699911987], [-117.960675, 34.4056129991199], [-117.961027, 34.40554899911994], [-117.963091, 34.406508999119865], [-117.963411, 34.40705299911983], [-117.964243, 34.407100999119926], [-117.965091, 34.406668999119844], [-117.965459, 34.40674899911991], [-117.966131, 34.40748499911987], [-117.967075, 34.40759699911985], [-117.967859, 34.408508999119874], [-117.967955, 34.40921299911986], [-117.968292, 34.40956499911981], [-117.969092, 34.40998099911987], [-117.96866, 34.411116999119876], [-117.96874, 34.41138899911979], [-117.969332, 34.41198099911984], [-117.969444, 34.412412999119816], [-117.971188, 34.41354899911977], [-117.970884, 34.4142199991198], [-117.970948, 34.414603999119755], [-117.971412, 34.41508399911981], [-117.97226, 34.41557999911979], [-117.972644, 34.41553199911976], [-117.973092, 34.41588399911978], [-117.973188, 34.416379999119826], [-117.97306, 34.41717999911971], [-117.973284, 34.417579999119766], [-117.974052, 34.41788399911979], [-117.974564, 34.417275999119774], [-117.974916, 34.4174359991197], [-117.975108, 34.41788399911979], [-117.975092, 34.418363999119705], [-117.975764, 34.4193399991197], [-117.976564, 34.41943599911977], [-117.978004, 34.42029999911972], [-117.979172, 34.42039599911965], [-117.97978, 34.42098799911969], [-117.980484, 34.421179999119694], [-117.980356, 34.4215159991197], [-117.980644, 34.42201199911965], [-117.980644, 34.422395999119665], [-117.981252, 34.42295599911976], [-117.9821, 34.42485999911965], [-117.982548, 34.425179999119685], [-117.983252, 34.42511599911963], [-117.984004, 34.42529199911972], [-117.984228, 34.42548399911966], [-117.984196, 34.42612399911963], [-117.984324, 34.42633199911971], [-117.98482, 34.42663599911962], [-117.985924, 34.4267959991196], [-117.986324, 34.42713199911962], [-117.987428, 34.42725999911961], [-117.988068, 34.42791599911961], [-117.988676, 34.42818799911967], [-117.988836, 34.42844399911962], [-117.988836, 34.42892399911958], [-117.988564, 34.42929199911956], [-117.989316, 34.42962799911958], [-117.99018, 34.43034799911955], [-117.990228, 34.43127599911963], [-117.990628, 34.431131999119636], [-117.99098, 34.43137199911967], [-117.990548, 34.43193199911957], [-117.991012, 34.43220399911953], [-117.991636, 34.433467999119586], [-117.992325, 34.433851999119526], [-117.993797, 34.43407599911963], [-117.994357, 34.434331999119564], [-117.995013, 34.43468399911959], [-117.995173, 34.43522799911952], [-117.996005, 34.43521199911951], [-117.996421, 34.43554799911951], [-117.997109, 34.43569099911955], [-117.998229, 34.43727499911953], [-117.998677, 34.43709899911949], [-117.999221, 34.43721099911952], [-118.000325, 34.43693899911947], [-118.000645, 34.43714699911955], [-118.002053, 34.437258999119486], [-118.002949, 34.43764299911955], [-118.003493, 34.43807499911952], [-118.004341, 34.438330999119586], [-118.004645, 34.43825099911949], [-118.004997, 34.43860299911948], [-118.006421, 34.439066999119454], [-118.007141, 34.43964299911945], [-118.007429, 34.440442999119504], [-118.008517, 34.441098999119454], [-118.009765, 34.44330699911946], [-118.010533, 34.443162999119416], [-118.01110636074138, 34.442702572947034], [-118.01111992998806, 34.470137708399236], [-118.04492629305284, 34.47033813707821], [-118.07958590889226, 34.470140728368804], [-118.07985085316027, 34.48084042740588], [-118.07970439167389, 34.49536813309862], [-118.12099588531962, 34.49508309698031], [-118.12209634940832, 34.4965295572172], [-118.12209828447689, 34.49683022396537], [-118.12274394249323, 34.4972209172346], [-118.12246490434278, 34.497537010677036], [-118.12277940488678, 34.498399398663054], [-118.12242053861624, 34.49878438140744], [-118.12284845735702, 34.49878370216131], [-118.12342857629446, 34.500365923139725], [-118.1315149885402, 34.50797105874297], [-118.13292042712894, 34.5079196554126], [-118.14243635370282, 34.51687554873165], [-118.14300391540229, 34.51688741100935], [-118.14301598797277, 34.51742182339587], [-118.1478640542421, 34.521983357228365], [-118.14850638270086, 34.52199529568578], [-118.14850508010561, 34.52258602710374], [-118.15033449729292, 34.52430740894222], [-118.1506441823148, 34.524313334147], [-118.15063530637566, 34.52459083233748], [-118.15365520720269, 34.527429379780635], [-118.15402725922898, 34.527320039393956], [-118.1542679776641, 34.52778986108284], [-118.16298888279478, 34.52758691891819], [-118.16294026595283, 34.523716853632315], [-118.16702561365966, 34.52351227823281], [-118.17618930843811, 34.52380318562459], [-118.17601577983017, 34.531354702430015], [-118.18516440876347, 34.53124651970553], [-118.18512483634102, 34.53482956044709], [-118.18950400422953, 34.5349457732411], [-118.18946958918569, 34.5385546636616], [-118.20702192802953, 34.53901218566977], [-118.20700462090129, 34.540982193511866], [-118.19869300000035, 34.54099799911827], [-118.198685147727, 34.54112488629631], [-118.19842447138704, 34.541120285321895], [-118.19837467183665, 34.54521774112049], [-118.19449390410202, 34.54515644683802], [-118.19376700000022, 34.55623599911799], [-118.19415428833034, 34.55622642500451], [-118.19413274516116, 34.55692863742748], [-118.20002003023119, 34.557095414362415], [-118.20006170835204, 34.55830488627751], [-118.19583980550837, 34.558291888060275], [-118.18527600000027, 34.55777399911786], [-118.1852740000002, 34.55767199911803], [-118.1805880000003, 34.558010999118046], [-118.1785850000002, 34.55787399911796], [-118.17715800000028, 34.55813499911795], [-118.16819500000031, 34.558077999117955], [-118.16811600000017, 34.565965999117886], [-118.16671900000024, 34.56542899911789], [-118.16553900000018, 34.56434099911792], [-118.16459800000023, 34.563715999117946], [-118.16305800000025, 34.56296399911798], [-118.16137800000027, 34.562604999117966]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Southeast Antelope Valley", "population": 0.048661085273901554, "cases": 7.0, "resource_uri": "/1.0/boundary/southeast-antelope-valley-la-county-neighborhood-current/", "external_id": "southeast-antelope-valley", "slug": "southeast-antelope-valley-la-county-neighborhood-current", "metadata": {"sqmi": 192.960465064, "type": "unincorporated-area", "name": "Southeast Antelope Valley", "slug": "southeast-antelope-valley"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.06059900000015, 34.064402999123836], [-118.06062800000014, 34.06403599912383], [-118.06035800000016, 34.064044999123894], [-118.06037200000011, 34.063873999123885], [-118.06014600000016, 34.06387699912389], [-118.06014400000018, 34.06365599912389], [-118.05974900000017, 34.06366499912392], [-118.05965900000018, 34.0638129991239], [-118.05964500000015, 34.0636129991239], [-118.05924500000015, 34.06362299912391], [-118.05910300000022, 34.063807999123796], [-118.05736900000015, 34.06388299912387], [-118.057374, 34.06360799912387], [-118.05679400000017, 34.06360799912403], [-118.05678600000016, 34.06402999912381], [-118.05655200000015, 34.06403399912391], [-118.05654300000022, 34.06363399912385], [-118.05580700000013, 34.06370899912383], [-118.05580300000024, 34.06338199912385], [-118.05540500000025, 34.063390999123854], [-118.05534900000028, 34.06239299912382], [-118.05567100000013, 34.06241399912389], [-118.0556690000002, 34.06218899912384], [-118.0563920000001, 34.06218399912387], [-118.05640400000013, 34.06171299912395], [-118.05692500000018, 34.061690999123805], [-118.05689200000018, 34.06077799912393], [-118.05784800000016, 34.06070999912387], [-118.057843, 34.05949999912394], [-118.05813800000021, 34.05944599912396], [-118.05815700000014, 34.05859699912393], [-118.05785600000011, 34.05859699912393], [-118.05784100000017, 34.059088999123894], [-118.05655800000022, 34.0590249991239], [-118.05632700000018, 34.056760999123945], [-118.05564000000028, 34.056746999123995], [-118.05564000000028, 34.05603899912395], [-118.054793, 34.05599199912393], [-118.05486500000018, 34.05717899912397], [-118.05350000000017, 34.05730999912396], [-118.05359700000012, 34.05908799912389], [-118.05092800000013, 34.05910399912388], [-118.045163, 34.0590839991239], [-118.04393400000018, 34.058631999123946], [-118.0410550000002, 34.0586079991239], [-118.041029, 34.05803699912395], [-118.04010200000022, 34.05803699912395], [-118.0401200000003, 34.05860199912393], [-118.03814100000015, 34.05859599912385], [-118.03815200000017, 34.057411999124], [-118.03730000000019, 34.0574099991239], [-118.037299, 34.056789999123936], [-118.03619900000018, 34.056758999123986], [-118.03629800000012, 34.0560349991239], [-118.034604, 34.056025999123975], [-118.03440700000017, 34.053822999124016], [-118.033868, 34.05378599912396], [-118.03381400000015, 34.053199999123976], [-118.03427600000016, 34.05325499912397], [-118.034308, 34.052207999124064], [-118.03472000000022, 34.051856999124105], [-118.03426400000016, 34.05153599912398], [-118.03371800000029, 34.051903999124036], [-118.03122200000027, 34.04949899912402], [-118.02825700000012, 34.04704599912404], [-118.0278020000002, 34.0474149991241], [-118.026544, 34.04645799912405], [-118.02632300000026, 34.046650999124026], [-118.0258870000002, 34.04620999912398], [-118.02847800000013, 34.0445439991241], [-118.02877900000018, 34.04479799912405], [-118.030308, 34.04356999912407], [-118.03002500000012, 34.04328299912411], [-118.03156000000011, 34.041987999124096], [-118.02783900000023, 34.03874699912412], [-118.03805298198328, 34.0343190050345], [-118.04188428556975, 34.035369053588084], [-118.04339588260241, 34.03561408512836], [-118.0445884374089, 34.03525052768196], [-118.04432800000016, 34.03508299912424], [-118.04515978151133, 34.034638640127575], [-118.04572127026921, 34.03365625533586], [-118.04657070407677, 34.033305691240486], [-118.04876876994082, 34.03302019793961], [-118.04720000000012, 34.03391299912429], [-118.04742652701437, 34.03410322346579], [-118.04734506517593, 34.034271204419525], [-118.04535726361144, 34.036537200184505], [-118.04532865840494, 34.036919628339255], [-118.04557012490184, 34.03715537632347], [-118.0472460000001, 34.03615099912419], [-118.04763700000017, 34.0362409991242], [-118.0481983491889, 34.036704281197785], [-118.04889879883146, 34.03611206315977], [-118.05012790413367, 34.03712395280939], [-118.04946200000013, 34.037758999124236], [-118.04982221419176, 34.03805967378], [-118.053076, 34.035348999124224], [-118.05352700000014, 34.0358829991242], [-118.05439000000013, 34.03526299912429], [-118.0546703700573, 34.03615896430696], [-118.0555122715035, 34.03761452686348], [-118.05517089344349, 34.037758462953754], [-118.05510900000012, 34.038130999124164], [-118.05174341273393, 34.03913616964479], [-118.05143697086702, 34.0394089221453], [-118.04960730636338, 34.03928430879342], [-118.05049000000012, 34.03985599912411], [-118.0508284615072, 34.040253059414205], [-118.05070312899991, 34.04067313436358], [-118.05219900000012, 34.041916999124076], [-118.05168729850757, 34.04216844554718], [-118.05251247726333, 34.04257683208203], [-118.05251019161145, 34.042769189175466], [-118.05343427013571, 34.042762442439376], [-118.05343721146167, 34.04343963078359], [-118.05560713540156, 34.04347966949241], [-118.05562100000024, 34.04304999912412], [-118.0570070000002, 34.04311399912414], [-118.05679635024975, 34.04456975702355], [-118.05780240416996, 34.04456876287442], [-118.05783964602358, 34.045296164342915], [-118.06008195238762, 34.04529242113075], [-118.05993980505527, 34.04594357779363], [-118.06028000000013, 34.04599699912413], [-118.05998400000018, 34.046415999124086], [-118.05998757554434, 34.04679233514523], [-118.0606440815639, 34.04679060804789], [-118.06064446830175, 34.04709589989576], [-118.06107368660653, 34.04716115450024], [-118.06113894736998, 34.05030664566093], [-118.06217251052094, 34.05030442667766], [-118.06217360941062, 34.05075713528082], [-118.06420116492056, 34.050749297085716], [-118.06426784342109, 34.050546348133516], [-118.06504584473565, 34.05054502463829], [-118.06506700000018, 34.05154199912403], [-118.06621310247667, 34.05154237828154], [-118.06621500000014, 34.05110499912395], [-118.06653322341451, 34.05110175194644], [-118.06653206779386, 34.050858106046626], [-118.06694637620204, 34.05085696562916], [-118.06694728550677, 34.051090532841876], [-118.06757290642369, 34.05108914402368], [-118.06757426064024, 34.051785584915024], [-118.06872600000015, 34.05177999912398], [-118.068722, 34.05241599912394], [-118.06957879362679, 34.05309740416138], [-118.07021500000013, 34.05404599912397], [-118.07117700000019, 34.057210999124045], [-118.070673, 34.05974999912389], [-118.07024400000012, 34.0606019991239], [-118.0676110000002, 34.06268899912387], [-118.06895800000015, 34.06268899912387], [-118.06861400000032, 34.06411199912383], [-118.06834300000018, 34.06431799912383], [-118.0665270000002, 34.06419699912382], [-118.06553100000032, 34.063088999123885], [-118.06509600000017, 34.063417999123935], [-118.06475300000014, 34.06326799912388], [-118.06400100000019, 34.063305999123905], [-118.06397200000026, 34.06366499912392], [-118.06355200000017, 34.06371399912383], [-118.06354600000017, 34.06404899912394], [-118.06314900000018, 34.06409999912388], [-118.06315100000026, 34.06360699912392], [-118.06142600000021, 34.06359699912392], [-118.06143900000016, 34.064437999123925], [-118.06059900000015, 34.064402999123836]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "South El Monte", "population": 0.22679103154837627, "cases": 25.0, "resource_uri": "/1.0/boundary/south-el-monte-la-county-neighborhood-current/", "external_id": "south-el-monte", "slug": "south-el-monte-la-county-neighborhood-current", "metadata": {"sqmi": 2.927779691, "type": "standalone-city", "name": "South El Monte", "slug": "south-el-monte"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.189746, 33.95937799912517], [-118.18506400000011, 33.95563699912526], [-118.1785030000001, 33.95497399912516], [-118.1769380000003, 33.95663599912516], [-118.17967500000017, 33.95698199912524], [-118.17952200000026, 33.9579179991252], [-118.17733200000018, 33.957687999125206], [-118.17742700000016, 33.95700599912516], [-118.17262500000021, 33.95651499912527], [-118.17296500000016, 33.954301999125185], [-118.17038000000022, 33.95402799912513], [-118.17044900000022, 33.954373999125075], [-118.16396000000017, 33.95335999912523], [-118.15831700000022, 33.95199699912517], [-118.15611900000016, 33.95102599912522], [-118.15810500000016, 33.94844099912525], [-118.16210300000014, 33.94201399912535], [-118.1639420000001, 33.94086899912542], [-118.16446500000016, 33.94029599912544], [-118.164697, 33.93925499912548], [-118.1646480000002, 33.93877799912539], [-118.16588200000017, 33.93587299912546], [-118.16491600000016, 33.93319599912546], [-118.16377300000018, 33.93333399912542], [-118.162567, 33.93015699912553], [-118.16274300000028, 33.92919899912546], [-118.16178700000013, 33.928923999125516], [-118.16272000000014, 33.92662599912542], [-118.1642120000002, 33.926472999125465], [-118.16505300000017, 33.92685399912552], [-118.165349, 33.927455999125534], [-118.16631900000014, 33.926830999125556], [-118.16673300000025, 33.92743399912553], [-118.16688800000017, 33.927433999125554], [-118.16767400000029, 33.92695599912557], [-118.1676270000002, 33.92592799912558], [-118.167768, 33.92572199912562], [-118.17058400000016, 33.92368399912556], [-118.156126, 33.91699099912562], [-118.15841100000017, 33.913897999125645], [-118.15784900000021, 33.91361699912568], [-118.158072, 33.91279699912572], [-118.15837900000017, 33.9126139991257], [-118.15858800000011, 33.91122999912566], [-118.15900700000016, 33.9099639991257], [-118.16015000000017, 33.910469999125716], [-118.16020600000014, 33.91123799912566], [-118.16095800000022, 33.91169699912576], [-118.16238900000025, 33.91235099912571], [-118.163402, 33.9123439991257], [-118.16386300000012, 33.912601999125755], [-118.16386400000017, 33.91232399912575], [-118.1641080000002, 33.91234799912572], [-118.16814700000018, 33.91423199912569], [-118.16815200000022, 33.9140659991257], [-118.168386, 33.91404699912572], [-118.16819800000027, 33.91228299912573], [-118.1705510000002, 33.91226199912569], [-118.17051400000011, 33.91183999912574], [-118.17330600000011, 33.91182199912567], [-118.17330200000019, 33.912815999125684], [-118.17276400000016, 33.91282999912564], [-118.1728030000002, 33.91311499912572], [-118.17047000000017, 33.91311499912572], [-118.17047000000017, 33.913674999125654], [-118.17067000000014, 33.91381599912577], [-118.17035400000017, 33.914286999125714], [-118.16960800000014, 33.913954999125664], [-118.16966400000018, 33.91451699912572], [-118.169459, 33.91485499912573], [-118.17518800000015, 33.91749599912567], [-118.17665300000014, 33.918312999125654], [-118.17532900000022, 33.930476999125474], [-118.18007700000032, 33.9309419991256], [-118.18282400000024, 33.93079099912547], [-118.18189100000022, 33.933274999125445], [-118.18174000000013, 33.934362999125376], [-118.18235600000023, 33.93428599912552], [-118.18961100000016, 33.93508199912544], [-118.19850700000016, 33.935704999125484], [-118.19955600000011, 33.935920999125386], [-118.21086200000026, 33.9370149991254], [-118.21053200000023, 33.93982699912538], [-118.21370200000014, 33.94024499912532], [-118.21322400000017, 33.94418699912533], [-118.21291600000016, 33.945020999125326], [-118.21676800000016, 33.945440999125296], [-118.21683400000019, 33.945019999125286], [-118.21654900000016, 33.94498099912532], [-118.21623000000024, 33.94389599912535], [-118.21608, 33.943932999125344], [-118.21629700000013, 33.94251599912541], [-118.21540400000019, 33.94231499912535], [-118.215521, 33.94135099912539], [-118.21511400000011, 33.94120599912533], [-118.2150620000002, 33.940204999125314], [-118.214708, 33.940102999125415], [-118.21482, 33.939857999125415], [-118.21441900000016, 33.93885399912539], [-118.21452800000013, 33.93844399912543], [-118.214219, 33.93840499912537], [-118.21424100000017, 33.937414999125416], [-118.21401000000027, 33.93737499912542], [-118.21392200000022, 33.9368929991254], [-118.22324600000017, 33.9378419991254], [-118.22302200000013, 33.93975699912536], [-118.22690600000014, 33.94016699912537], [-118.23085697201141, 33.95857700567782], [-118.23150498589119, 33.961014001923964], [-118.2295429860847, 33.96138000283287], [-118.2278599860034, 33.96036000240228], [-118.22589098564556, 33.95962100233974], [-118.2229029720002, 33.95921800567679], [-118.22456397200169, 33.96163100568034], [-118.22543597200234, 33.96337800568265], [-118.2258159859686, 33.96553400136419], [-118.22519998609287, 33.96561700308991], [-118.22520298606265, 33.96635299924446], [-118.22451799278855, 33.966307003916704], [-118.22446297937418, 33.96577300051303], [-118.22412299262592, 33.965737004297495], [-118.22412297916645, 33.96541000101665], [-118.21187799047651, 33.964311003321804], [-118.212021, 33.963629999125246], [-118.19254100000023, 33.961596999125064], [-118.189746, 33.95937799912517]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "South Gate", "population": 0.9815358622631642, "cases": 244.0, "resource_uri": "/1.0/boundary/south-gate-la-county-neighborhood-current/", "external_id": "south-gate", "slug": "south-gate-la-county-neighborhood-current", "metadata": {"sqmi": 7.44837311533, "type": "standalone-city", "name": "South Gate", "slug": "south-gate"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.256407, 34.00381399912452], [-118.256506, 33.98921399912467], [-118.280507, 33.989013999124694], [-118.280507, 33.99501399912465], [-118.281107, 34.003712999124524], [-118.265207, 34.00381399912453], [-118.263907, 34.00371399912455], [-118.260707, 34.00391399912448], [-118.256407, 34.00381399912452]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "South Park", "population": 0.3796043107608171, "cases": 118.0, "resource_uri": "/1.0/boundary/south-park-la-county-neighborhood-current/", "external_id": "south-park", "slug": "south-park-la-county-neighborhood-current", "metadata": {"sqmi": 1.4093517611, "type": "segment-of-a-city", "name": "South Park", "slug": "south-park"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.14782200000013, 34.12505599912308], [-118.146058, 34.12363399912309], [-118.14575700000016, 34.12360499912312], [-118.14597300000023, 34.124487999123154], [-118.14434300000013, 34.12261699912307], [-118.1443480000002, 34.1218109991231], [-118.143702, 34.12158299912317], [-118.14384100000017, 34.1213089991232], [-118.14345400000013, 34.12149799912305], [-118.14370700000018, 34.120998999123195], [-118.14331200000014, 34.1202259991232], [-118.14216300000017, 34.11948399912316], [-118.14077400000025, 34.11642199912322], [-118.13990900000016, 34.11396499912327], [-118.13836800000013, 34.112559999123164], [-118.13953500000014, 34.11251999912313], [-118.13639600000022, 34.107791999123314], [-118.134478, 34.10544899912337], [-118.13448900000016, 34.10416299912345], [-118.13469400000025, 34.10408499912339], [-118.13469400000015, 34.10391999912342], [-118.13902900000019, 34.10387299912341], [-118.140045, 34.10407199912336], [-118.14183100000021, 34.103971999123424], [-118.141783, 34.09868199912348], [-118.17799400000028, 34.098594999123456], [-118.17799500000012, 34.110243999123284], [-118.17720700000014, 34.1103919991234], [-118.177333, 34.11084699912331], [-118.177021, 34.110927999123355], [-118.17688600000014, 34.11205699912329], [-118.17699300000021, 34.112197999123275], [-118.1755350000002, 34.11222399912324], [-118.17595000000016, 34.1125259991233], [-118.17563100000017, 34.11262699912328], [-118.17542200000015, 34.1132509991233], [-118.1727580000002, 34.11362699912321], [-118.16886600000014, 34.11784299912324], [-118.168833, 34.118667999123176], [-118.16899900000023, 34.1193409991232], [-118.16889000000016, 34.119923999123195], [-118.16828900000014, 34.12018299912317], [-118.16757, 34.1214559991232], [-118.16803900000012, 34.123111999123125], [-118.1680530000002, 34.12392299912321], [-118.16580200000016, 34.12404399912313], [-118.16546600000018, 34.12401099912314], [-118.16554000000016, 34.123694999123174], [-118.16321100000029, 34.123594999123135], [-118.163195, 34.124023999123125], [-118.15962600000015, 34.1240039991231], [-118.15993600000014, 34.1237529991231], [-118.15166400000015, 34.12387499912306], [-118.15027100000015, 34.1240369991231], [-118.14913800000015, 34.12574299912308], [-118.14782200000013, 34.12505599912308]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "South Pasadena", "population": 0.2605297438124186, "cases": 78.0, "resource_uri": "/1.0/boundary/south-pasadena-la-county-neighborhood-current/", "external_id": "south-pasadena", "slug": "south-pasadena-la-county-neighborhood-current", "metadata": {"sqmi": 3.41641890402, "type": "standalone-city", "name": "South Pasadena", "slug": "south-pasadena"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.09406098589538, 34.05448200244639], [-118.09107198542462, 34.0539880052196], [-118.09100598589608, 34.05302500245939], [-118.09254198589174, 34.05266700241822], [-118.09253198590737, 34.052148000730874], [-118.09049098546384, 34.0518650051545], [-118.09048798582909, 34.05161900112895], [-118.08839398595424, 34.05171900376655], [-118.08830298598055, 34.04989400047003], [-118.08616898590516, 34.04986300403631], [-118.08617198607453, 34.0483720002153], [-118.08419998570504, 34.048209004668934], [-118.08402997177821, 34.04697900575833], [-118.08436697177898, 34.04586500575687], [-118.08432798592496, 34.04441900064493], [-118.08309798585391, 34.044395004234026], [-118.08298598580487, 34.04368400131661], [-118.08182498597233, 34.04377100356113], [-118.08182798589176, 34.04317400408113], [-118.08378098635764, 34.04316999997349], [-118.08386698541628, 34.04286900492414], [-118.0843489858901, 34.042869000781316], [-118.08443600000037, 34.043166999124246], [-118.08430500000262, 34.04386400242946], [-118.08574998570847, 34.0438629999605], [-118.08563197178184, 34.04279100575307], [-118.08593598914487, 34.042510005404914], [-118.08901598589212, 34.04380399722184], [-118.09006197178836, 34.042086005753255], [-118.0897169717878, 34.04193600575292], [-118.09012598342397, 34.04120100687777], [-118.09026898678412, 34.041246997926336], [-118.09077898546549, 34.04045000284032], [-118.09104998603482, 34.040481000324185], [-118.09225400000025, 34.04201799912415], [-118.09380300000022, 34.04271999912423], [-118.09237900000029, 34.04521699912401], [-118.09452198639052, 34.046178997253115], [-118.09554897179507, 34.0447130057579], [-118.09399197179312, 34.04394500575661], [-118.09464798231316, 34.043084007143875], [-118.0968740000002, 34.04473099912417], [-118.09748198613262, 34.04485300172993], [-118.1002719907198, 34.04476199946909], [-118.10268100000029, 34.047397999124044], [-118.10255900003514, 34.04762699928014], [-118.10552898432874, 34.047076999888915], [-118.10620198745204, 34.04661100481472], [-118.10661798586473, 34.046525002249126], [-118.10667899306613, 34.04672400144924], [-118.10704798582945, 34.04666100200012], [-118.10757700000018, 34.04730899912406], [-118.10788100000026, 34.047410999124075], [-118.10798400000031, 34.04942499912406], [-118.10819000000029, 34.04989799912404], [-118.10803000000033, 34.051971999124014], [-118.10810400000025, 34.053357999124], [-118.10846500000021, 34.05350599912398], [-118.10837300000023, 34.05466699912402], [-118.10803299114495, 34.0553379995447], [-118.10599298589004, 34.05534100416489], [-118.10501298626875, 34.0543849998457], [-118.10474298553595, 34.05434700505094], [-118.10482597180444, 34.05420900577239], [-118.1043979718042, 34.05364500577161], [-118.10340199284231, 34.053410006281936], [-118.10300198700041, 34.05380999816018], [-118.10198099637634, 34.053587007142674], [-118.10142098705742, 34.05442999984995], [-118.1005249929206, 34.0544200033965], [-118.10049798593604, 34.05536600006729], [-118.0994569864457, 34.055373001217944], [-118.09406098589538, 34.05448200244639]]], [[[-118.07544000000026, 34.057725999123925], [-118.07149600000031, 34.057443999124], [-118.07121443745866, 34.05723831318806], [-118.07155688772028, 34.05723722056429], [-118.07204137648507, 34.056047383898324], [-118.07245105316235, 34.051741324222796], [-118.07201362464866, 34.047434586672786], [-118.07472435580435, 34.04077935567412], [-118.07529831351394, 34.03795974953298], [-118.0750896434646, 34.03715681561098], [-118.07343653753378, 34.03401461166383], [-118.07125729293914, 34.03105303963076], [-118.07102080108044, 34.03045587621798], [-118.07108202457052, 34.02983122479907], [-118.07279198688651, 34.030999419031765], [-118.07279057613013, 34.03089473931985], [-118.07789400000021, 34.03559999912432], [-118.08069800000018, 34.03932799912418], [-118.07935400000021, 34.03981799912416], [-118.07813200000017, 34.03951299912419], [-118.07783300000023, 34.04027199912422], [-118.07634600000036, 34.040512999124154], [-118.0783030000003, 34.04122299912422], [-118.07932600000031, 34.04234399912422], [-118.07936400000023, 34.04260099912415], [-118.07738500000029, 34.04198999912411], [-118.0773860000004, 34.042294999124145], [-118.07913200000023, 34.042585999124164], [-118.07920300000025, 34.04283199912417], [-118.07970100000028, 34.04291099912415], [-118.07968400000027, 34.04350599912413], [-118.08085900000029, 34.04358699912423], [-118.08091200000027, 34.044030999124175], [-118.0824520000003, 34.04407499912412], [-118.08235800000026, 34.04450999912418], [-118.08183100000026, 34.044473999124136], [-118.08185600000029, 34.049653999124125], [-118.08002100000026, 34.04988099912403], [-118.07999800000032, 34.05171699912406], [-118.07890000000023, 34.05441099912397], [-118.07562900000029, 34.054486999124094], [-118.07544000000026, 34.057725999123925]]], [[[-118.0733220000003, 34.09076799912354], [-118.0733220000003, 34.09055999912358], [-118.07333097787667, 34.09056297992054], [-118.07337559968194, 34.09355585507189], [-118.0733220000003, 34.09076799912354]]], [[[-118.07490289064728, 34.09108696527028], [-118.07483160034182, 34.09106288096245], [-118.08303100000025, 34.093763999123546], [-118.08354415113666, 34.093939693404046], [-118.07490289064728, 34.09108696527028]]], [[[-118.08470466789564, 34.09432592799567], [-118.08442519220833, 34.09423290475713], [-118.08657105537941, 34.09493552006718], [-118.08470466789564, 34.09432592799567]]], [[[-118.07729992168406, 34.10168962182256], [-118.07753228121126, 34.10168906984225], [-118.07752000000026, 34.10181699912349], [-118.07720726619993, 34.10180205961067], [-118.07729992168406, 34.10168962182256]]], [[[-118.07720955993246, 34.10303382829105], [-118.07720852700096, 34.10253510485674], [-118.07721100000019, 34.10315399912344], [-118.07720980048809, 34.10315401865949], [-118.07720955993246, 34.10303382829105]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "South San Gabriel", "population": 0.08847991505928154, "cases": 10.0, "resource_uri": "/1.0/boundary/south-san-gabriel-la-county-neighborhood-current/", "external_id": "south-san-gabriel", "slug": "south-san-gabriel-la-county-neighborhood-current", "metadata": {"sqmi": 1.41900252301, "type": "unincorporated-area", "name": "South San Gabriel", "slug": "south-san-gabriel"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.91112297154568, 34.02519800568951], [-117.91005497154777, 34.014970005675856], [-117.90957798575502, 34.013395000848696], [-117.90289398589704, 34.013709001752815], [-117.89799598567859, 34.01356300276345], [-117.88645698575785, 34.013610004032586], [-117.88682198594336, 34.01017200018053], [-117.88449898584817, 34.01008300321471], [-117.88012998539068, 34.01142500144456], [-117.88081398551842, 34.00416800514986], [-117.88274198567252, 34.004110001331135], [-117.88259899262506, 34.00725600401885], [-117.88716698601057, 34.007564999589285], [-117.88728898561666, 34.00652800449909], [-117.88951298457346, 34.00664299926485], [-117.89027898688002, 34.006192004291584], [-117.89067598588552, 34.00351200237293], [-117.90206198611608, 34.005334999840905], [-117.90201298586686, 34.00594700022027], [-117.90177400000027, 34.00595100239338], [-117.9017439928408, 34.006317003389114], [-117.90239998593799, 34.00632799976576], [-117.90248098528187, 34.00540200661036], [-117.90839498617939, 34.006355999737124], [-117.90840599233569, 34.00678500464753], [-117.90939298614252, 34.006924999803104], [-117.90918899980072, 34.00806900309971], [-117.91054898603936, 34.00813699946229], [-117.91070498525474, 34.00674300647132], [-117.91483398568612, 34.00736900163543], [-117.91462499954528, 34.00911000375116], [-117.91683998599609, 34.009320000108815], [-117.91664499257642, 34.01123400416888], [-117.91891798639203, 34.011542000718045], [-117.92355998570955, 34.01125100121225], [-117.91997600000029, 34.01691899912458], [-117.91937100000011, 34.01840899912447], [-117.91997000000032, 34.01857599912443], [-117.91741698165407, 34.025130000758644], [-117.91551598510048, 34.02470200557267], [-117.91403398625657, 34.02517600305539], [-117.91215498317881, 34.026381999284716], [-117.91112297154568, 34.02519800568951]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "South San Jose Hills", "population": 0.20221473278767454, "cases": 21.0, "resource_uri": "/1.0/boundary/south-san-jose-hills-la-county-neighborhood-current/", "external_id": "south-san-jose-hills", "slug": "south-san-jose-hills-la-county-neighborhood-current", "metadata": {"sqmi": 1.48445028227, "type": "unincorporated-area", "name": "South San Jose Hills", "slug": "south-san-jose-hills"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.03035697173607, 33.951176005621434], [-118.00336597170296, 33.93837900559843], [-118.00349698584557, 33.93654500077173], [-118.00324898585828, 33.936546003949914], [-118.00298598585523, 33.93522400234489], [-118.00082998586531, 33.93523700390813], [-118.00084398580172, 33.92933700217213], [-118.02322698585667, 33.92413100234448], [-118.01445897172502, 33.918615005575504], [-118.01485397172571, 33.918144005575016], [-118.01484198586847, 33.917115003937965], [-118.05030398581619, 33.91688200277041], [-118.05519698640258, 33.91704299954759], [-118.0552049858513, 33.93005400049897], [-118.05288898620674, 33.93003500187559], [-118.05189400072591, 33.92958702430062], [-118.05206298575733, 33.931735000001964], [-118.04881698587592, 33.931741004017226], [-118.04882098586631, 33.931395000826605], [-118.0477909859015, 33.93140700389881], [-118.0476989717667, 33.931213005599616], [-118.04811497176784, 33.929912005598055], [-118.04794697176868, 33.92665300559372], [-118.04641199899754, 33.92542802647703], [-118.04641599307834, 33.92680400203591], [-118.04725698579307, 33.92671600148906], [-118.04710998572291, 33.927826000603645], [-118.04642099305951, 33.92786900241515], [-118.04641399283972, 33.931739003552096], [-118.04714398587564, 33.931737000777524], [-118.04713099307209, 33.93235400223368], [-118.04759898579637, 33.93231300137052], [-118.04755499288491, 33.93265100339851], [-118.04881598592195, 33.932678000594365], [-118.04884498583374, 33.93568900157491], [-118.0464059929603, 33.9362260008329], [-118.04641298588626, 33.938841000110735], [-118.04574699297787, 33.93885200300215], [-118.04574399194, 33.93931100528991], [-118.04618898654807, 33.939408999338774], [-118.04587198086139, 33.93981099895785], [-118.04452298756563, 33.93887900467382], [-118.04233699188286, 33.940020998563526], [-118.04574298950087, 33.94220599771323], [-118.04768898729543, 33.941020004497176], [-118.04891998645014, 33.94172999947476], [-118.04985700000024, 33.942671999125366], [-118.05087799190824, 33.94332000533506], [-118.05145198583006, 33.94332400208349], [-118.05205500000021, 33.94414399912534], [-118.05139298151317, 33.94480099952739], [-118.05023898912148, 33.94405000572192], [-118.0490280000002, 33.94518899912539], [-118.04928300000027, 33.94536399912548], [-118.04886098147978, 33.945760999823065], [-118.0482979870153, 33.9454350042761], [-118.047998987359, 33.94561300307882], [-118.04640600000026, 33.94715999912536], [-118.0460480000002, 33.94795499912534], [-118.04741898705514, 33.94877899616525], [-118.04821098930222, 33.94799500610565], [-118.0484859965002, 33.949520988543526], [-118.05065499030309, 33.94719300542264], [-118.05365300000027, 33.949297999125356], [-118.04940398309536, 33.95348700223427], [-118.04538498929877, 33.95066800609871], [-118.04273500000025, 33.95333799912525], [-118.04588600000024, 33.95550999912525], [-118.03638097174355, 33.953809005626205], [-118.03471497174145, 33.953227005625074], [-118.03035697173607, 33.951176005621434]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "South Whittier", "population": 0.592208753585639, "cases": 64.0, "resource_uri": "/1.0/boundary/south-whittier-la-county-neighborhood-current/", "external_id": "south-whittier", "slug": "south-whittier-la-county-neighborhood-current", "metadata": {"sqmi": 5.37231811994, "type": "unincorporated-area", "name": "South Whittier", "slug": "south-whittier"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.59086420151291, 34.3734646404554], [-118.59127390816597, 34.37221102563942], [-118.5916622339331, 34.37191073561773], [-118.59215897500728, 34.37180421979235], [-118.59241084948545, 34.37044892954441], [-118.5939604143744, 34.37062031845195], [-118.59404745169368, 34.37750353883773], [-118.59281460785274, 34.377533809824925], [-118.59154647644138, 34.377107840885714], [-118.59015816185685, 34.37687498988339], [-118.58767179067, 34.37703152596522], [-118.58615524800594, 34.37753667888219], [-118.58409073440455, 34.378669519317775], [-118.5834721362097, 34.379097998628886], [-118.58383754681991, 34.3796110855955], [-118.5841471691019, 34.37950532575828], [-118.5850239961181, 34.37964613150865], [-118.5854654407727, 34.37931279556391], [-118.5855363673524, 34.380039384423284], [-118.58660379285523, 34.38013064783861], [-118.58758917037221, 34.38104636946716], [-118.58747908192608, 34.38133526842904], [-118.58809365783792, 34.381531264564586], [-118.58849913563132, 34.381910679075304], [-118.58911212934991, 34.38163810482651], [-118.58915902358783, 34.38180148701896], [-118.5901811387616, 34.38169220545479], [-118.59019247816167, 34.38263341800558], [-118.59140195618227, 34.382928805193494], [-118.59239929453214, 34.38352880513721], [-118.59308681198556, 34.38276460345944], [-118.59335848577409, 34.38273516316536], [-118.5936789564591, 34.38294880960359], [-118.59388174224344, 34.382610428635836], [-118.59399336516556, 34.38280940755585], [-118.5943312982324, 34.38274339572596], [-118.59607294727908, 34.38397761353512], [-118.597287433113, 34.38428160032209], [-118.59931981863544, 34.384406218032076], [-118.6004427608482, 34.385052805352835], [-118.6009088625023, 34.38476058166862], [-118.60257421495716, 34.387346671178584], [-118.60362746935837, 34.38737872077135], [-118.60356795601975, 34.38795311038857], [-118.60383383792548, 34.38817920336465], [-118.60407430286658, 34.388232248676424], [-118.60435114806654, 34.387995346452584], [-118.60453385262885, 34.3883837587154], [-118.60422459160327, 34.38885428637249], [-118.60408040105709, 34.38962669916295], [-118.60433024186274, 34.389760788323436], [-118.60379796315794, 34.390188513621624], [-118.60443746858677, 34.39064667392931], [-118.60496202861597, 34.39013995399278], [-118.60556355179186, 34.39007130453382], [-118.6056451700131, 34.392060958385386], [-118.60513405198799, 34.39194851842929], [-118.60465509843428, 34.392987712413785], [-118.60391162469237, 34.3934148973157], [-118.60311705078172, 34.39372620592861], [-118.60168005927719, 34.393791407886035], [-118.60034774635442, 34.39452802098293], [-118.5997868279493, 34.39531958305173], [-118.60001519172971, 34.39565078510308], [-118.5996235490632, 34.39588827281826], [-118.59960506530395, 34.39622193206107], [-118.59906997072294, 34.39609861339837], [-118.59812891510316, 34.39632451990987], [-118.59805905913814, 34.39601388388899], [-118.59727935904745, 34.3958167182695], [-118.59711952907213, 34.39564128989272], [-118.59637699612414, 34.396090206811195], [-118.59515854961545, 34.39495372436187], [-118.59396830608938, 34.39598318275962], [-118.59349848997391, 34.39572448686451], [-118.59203317908243, 34.396755217068694], [-118.59141339437832, 34.39623034114174], [-118.59111899631309, 34.39616088122544], [-118.59057111065142, 34.3962187558536], [-118.59038497615435, 34.39649497499788], [-118.59037590546109, 34.396239381655924], [-118.58959921811604, 34.39644705507831], [-118.58885224593665, 34.39607078695429], [-118.58846465891253, 34.39614579074984], [-118.58808185272133, 34.39643782612406], [-118.58805840993517, 34.39663433249044], [-118.58758289913791, 34.3964168598447], [-118.58684024050048, 34.39663270433587], [-118.58655672122251, 34.3963283174771], [-118.58543796455992, 34.39679745969139], [-118.58816713888662, 34.40130653227246], [-118.59150831785676, 34.40329759665122], [-118.59170096520964, 34.40357876145572], [-118.59223464267981, 34.403440130240284], [-118.5925671685505, 34.40409982329909], [-118.59277127796817, 34.404049686383345], [-118.59757938049118, 34.4068938010981], [-118.58176145572929, 34.41775204343758], [-118.5801302953008, 34.41555650808925], [-118.57913147314474, 34.412968446206065], [-118.57912872369486, 34.411790736966275], [-118.57999310593652, 34.408305841531416], [-118.57985368563646, 34.40689110485275], [-118.57931545915318, 34.405816899179726], [-118.57752012028281, 34.40395988479255], [-118.57687820197141, 34.402832646373966], [-118.57637287143226, 34.400452454335564], [-118.5751704372149, 34.39778720354482], [-118.57525960876411, 34.395112357297194], [-118.57513928500266, 34.394263387238304], [-118.5748583404144, 34.39351281099583], [-118.57453298798063, 34.393118710027885], [-118.57189183179464, 34.384490005285144], [-118.57398489895425, 34.3839644146573], [-118.57493979889975, 34.38348359594917], [-118.57554517541223, 34.38268548029189], [-118.5755824287125, 34.38167166339599], [-118.57344727524999, 34.38158279579113], [-118.57099668498373, 34.380944537606446], [-118.57093185944511, 34.379900007948194], [-118.57056237832155, 34.37913980885302], [-118.56967401723135, 34.37840782303804], [-118.5680180540356, 34.37784482647147], [-118.56838687872, 34.37742442656025], [-118.56666877453239, 34.37573610710823], [-118.56601981915371, 34.37468534527684], [-118.56553945698154, 34.37443895651873], [-118.56564700271065, 34.37408293104512], [-118.56525207315751, 34.37326347985541], [-118.56434635753075, 34.37319237950469], [-118.56426114680836, 34.37293700169004], [-118.56388698872723, 34.37273572732318], [-118.56279068667354, 34.373252976665825], [-118.56261930884287, 34.37298675820877], [-118.56280775205538, 34.372516569063116], [-118.56214729457609, 34.37183771411645], [-118.56211392352155, 34.37142991514537], [-118.56321588225794, 34.37141433070245], [-118.56353238788049, 34.37088309154003], [-118.563812377232, 34.370877062825855], [-118.5645302519005, 34.371352433960624], [-118.56537081620435, 34.37131436075301], [-118.56562512009725, 34.3715276204837], [-118.56585450776225, 34.37151209643016], [-118.56582224746795, 34.371207146461394], [-118.56596626634351, 34.37115742488169], [-118.56655454547973, 34.37120850791298], [-118.56765304670593, 34.37176060343934], [-118.56823609297281, 34.371427888792994], [-118.56851480536218, 34.371555129198654], [-118.56880199221177, 34.37204505182798], [-118.5689806441693, 34.371947157971306], [-118.56940867388354, 34.372140056969926], [-118.57021717456256, 34.37182252822445], [-118.57117761625702, 34.37192097079748], [-118.57042216467035, 34.372542009158124], [-118.57062342424524, 34.37282742132793], [-118.57050012748834, 34.373173824885015], [-118.57103748130778, 34.37394491309124], [-118.57031798194765, 34.37438867886929], [-118.57055158570311, 34.374678115823855], [-118.57208402379509, 34.37431984878814], [-118.57213891189532, 34.37450897569719], [-118.57251087905304, 34.374575422125986], [-118.57251693833514, 34.37500401163837], [-118.57436259915221, 34.37446883758834], [-118.5750221244258, 34.37500468512957], [-118.57487841983924, 34.37575370310087], [-118.575026427, 34.37681951864098], [-118.57534972715082, 34.376882065393296], [-118.5754542264437, 34.37896544320371], [-118.58118477558315, 34.378805875477525], [-118.58109862402358, 34.37595283730581], [-118.58192549946408, 34.3757380245958], [-118.5819341025249, 34.37538954900948], [-118.5827413972625, 34.3754042193721], [-118.58276603668905, 34.37506520132606], [-118.58214006211585, 34.37467105435587], [-118.5821473313626, 34.374539917192735], [-118.58286337586506, 34.37458228389441], [-118.58265533351717, 34.374442508184096], [-118.58270726304717, 34.37407719981763], [-118.5831701800443, 34.373769983868925], [-118.58372342583993, 34.373092379740115], [-118.58413534514904, 34.37366687955808], [-118.5845061460102, 34.373518875619695], [-118.58537154620322, 34.373994979419656], [-118.58589474594807, 34.37323170249076], [-118.58648375086962, 34.37315254326661], [-118.58681560327905, 34.37265572997183], [-118.58767692946387, 34.37273246637654], [-118.58782086196695, 34.37289656057932], [-118.58840941964287, 34.37299983570359], [-118.58840151446823, 34.373387542763666], [-118.58816890653166, 34.373706648309806], [-118.58856014269273, 34.37421778392951], [-118.58947381299234, 34.374213646585915], [-118.58994466011755, 34.37460895081959], [-118.5905924435263, 34.37413277171852], [-118.59086420151291, 34.3734646404554]], [[-118.59086420151291, 34.3734646404554], [-118.5908643043516, 34.373465190016795], [-118.59086444575132, 34.373465710539655], [-118.59086420151291, 34.3734646404554]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Stevenson Ranch", "population": 0.20967107849561, "cases": 16.0, "resource_uri": "/1.0/boundary/stevenson-ranch-la-county-neighborhood-current/", "external_id": "stevenson-ranch", "slug": "stevenson-ranch-la-county-neighborhood-current", "metadata": {"sqmi": 3.11369076044, "type": "unincorporated-area", "name": "Stevenson Ranch", "slug": "stevenson-ranch"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.40830000000012, 34.1566719991227], [-118.40285500000014, 34.156599999122676], [-118.4017780000001, 34.15620399912274], [-118.39951800000016, 34.15481999912266], [-118.398833, 34.15462999912277], [-118.378247, 34.15460599912273], [-118.377796, 34.153480999122635], [-118.37679300000012, 34.15306799912265], [-118.36760900000012, 34.15302299912265], [-118.362911, 34.14510699912275], [-118.360915, 34.142037999122856], [-118.36099400000016, 34.14103999912287], [-118.362342, 34.13869599912297], [-118.36184900000012, 34.13859199912296], [-118.358605, 34.13949599912288], [-118.35234439933073, 34.13433066911443], [-118.352584, 34.13419199912297], [-118.353613, 34.13219699912287], [-118.354411, 34.13250699912291], [-118.35601100000017, 34.13280699912298], [-118.35651100000013, 34.13200699912296], [-118.35721100000012, 34.13270699912295], [-118.35821100000011, 34.133206999122976], [-118.358811, 34.13270699912302], [-118.359611, 34.133006999123054], [-118.360711, 34.13240699912296], [-118.361911, 34.13100699912297], [-118.363311, 34.13180699912287], [-118.361911, 34.13000699912289], [-118.360511, 34.130406999123096], [-118.361211, 34.129906999122866], [-118.362411, 34.12950699912294], [-118.363111, 34.12990699912297], [-118.36271100000013, 34.129206999122935], [-118.361211, 34.129206999122935], [-118.35991100000011, 34.12830699912296], [-118.360511, 34.127306999122986], [-118.361011, 34.12800699912292], [-118.361811, 34.128206999122945], [-118.363111, 34.12810699912294], [-118.36711100000011, 34.12890699912307], [-118.36791100000013, 34.12930699912297], [-118.36981100000014, 34.12930699912292], [-118.370111, 34.12990699912297], [-118.371311, 34.13010699912303], [-118.372611, 34.131106999123], [-118.373612, 34.13090699912306], [-118.372811, 34.129406999123084], [-118.372011, 34.12840699912318], [-118.371511, 34.126906999122994], [-118.37171100000015, 34.126406999123034], [-118.37301100000015, 34.126406999123034], [-118.373611, 34.12670699912286], [-118.374911, 34.12460699912307], [-118.374911, 34.12400699912312], [-118.37541100000013, 34.12340699912316], [-118.37571100000014, 34.12330699912309], [-118.37571100000014, 34.12180699912313], [-118.38101200000011, 34.12300699912299], [-118.38161200000012, 34.122306999123055], [-118.38261200000012, 34.122606999123036], [-118.38321200000011, 34.122006999123116], [-118.385012, 34.122006999123116], [-118.385812, 34.121406999123025], [-118.386912, 34.12180699912304], [-118.38761200000013, 34.12340699912316], [-118.39141200000014, 34.122006999123165], [-118.39351200000013, 34.12000699912309], [-118.394412, 34.11990699912323], [-118.395112, 34.11960699912314], [-118.397412, 34.1191069991231], [-118.398112, 34.11960699912314], [-118.3982120000001, 34.12070699912301], [-118.398912, 34.122306999123076], [-118.4030120000001, 34.125206999122994], [-118.40351200000012, 34.12720699912302], [-118.403912, 34.127906999123056], [-118.40611300000015, 34.12740699912298], [-118.4071710000001, 34.129574999122994], [-118.40837600000012, 34.129853999123], [-118.408441, 34.13088699912291], [-118.408698, 34.131143999122955], [-118.40878700000015, 34.131575999122944], [-118.40907900000012, 34.13178199912291], [-118.409195, 34.13236099912301], [-118.4098070000001, 34.13250099912293], [-118.41036500000013, 34.133152999123006], [-118.41063100000011, 34.133028999123034], [-118.41102100000018, 34.13212699912291], [-118.41148600000015, 34.13218499912287], [-118.411805, 34.13247099912309], [-118.412257, 34.1339959991229], [-118.41222200000013, 34.13452399912297], [-118.41248800000012, 34.1346049991229], [-118.412993, 34.1344439991229], [-118.41391300000014, 34.13360699912287], [-118.414359, 34.133717999122986], [-118.414368, 34.134010999122836], [-118.41231300000014, 34.13620599912284], [-118.41214600000013, 34.136727999123], [-118.41321300000016, 34.1383059991228], [-118.41351, 34.139185999122915], [-118.413713, 34.14060599912274], [-118.414913, 34.143105999122824], [-118.415913, 34.143605999122734], [-118.41691300000011, 34.14360599912279], [-118.4189130000001, 34.14420599912277], [-118.4186250000001, 34.145875999122815], [-118.42261400000014, 34.14650099912281], [-118.42261200000014, 34.1499089991227], [-118.419317, 34.14810699912278], [-118.41811300000015, 34.14790599912288], [-118.41821300000014, 34.154005999122596], [-118.413813, 34.154005999122596], [-118.413808, 34.15667699912267], [-118.40830000000012, 34.1566719991227]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Studio City", "population": 0.22440061414904924, "cases": 38.0, "resource_uri": "/1.0/boundary/studio-city-la-county-neighborhood-current/", "external_id": "studio-city", "slug": "studio-city-la-county-neighborhood-current", "metadata": {"sqmi": 6.30792524254, "type": "segment-of-a-city", "name": "Studio City", "slug": "studio-city"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.286307, 34.29207499912098], [-118.28741, 34.29150099912099], [-118.29011, 34.28920099912104], [-118.29161000000013, 34.28560099912108], [-118.29321000000013, 34.283200999121256], [-118.29581, 34.281000999121105], [-118.29731, 34.27830099912115], [-118.299011, 34.27670099912115], [-118.299511, 34.27540099912129], [-118.299811, 34.275200999121125], [-118.3011110000001, 34.27490099912131], [-118.302411, 34.27420099912127], [-118.303411, 34.27390099912123], [-118.30321100000013, 34.27330099912117], [-118.302311, 34.2728009991212], [-118.302911, 34.272501999121204], [-118.30261100000016, 34.26610199912149], [-118.302711, 34.25240199912149], [-118.304111, 34.25240199912149], [-118.306111, 34.252101999121464], [-118.305511, 34.251001999121506], [-118.30641100000017, 34.2514019991215], [-118.30641100000017, 34.24970199912165], [-118.305311, 34.24850199912149], [-118.306011, 34.24860199912146], [-118.30691100000011, 34.2482029991216], [-118.312311, 34.248901999121486], [-118.31671100000011, 34.24860199912146], [-118.324811, 34.2501019991216], [-118.325206, 34.251490999121465], [-118.3261590000001, 34.253384999121465], [-118.329352, 34.25807399912148], [-118.33431200000015, 34.264201999121376], [-118.333512, 34.264501999121336], [-118.33301200000011, 34.265101999121256], [-118.335106, 34.26646399912126], [-118.335876, 34.26715499912135], [-118.336437, 34.26817399912149], [-118.33775900000015, 34.271464999121264], [-118.33650200000014, 34.271100999121245], [-118.33455800000011, 34.2716349991212], [-118.331248, 34.2719699991212], [-118.330812, 34.2723019991213], [-118.329012, 34.272801999121334], [-118.32771200000012, 34.27380099912115], [-118.32661200000014, 34.27390099912123], [-118.3234110000001, 34.27290099912125], [-118.318474, 34.27309799912121], [-118.315411, 34.274300999121266], [-118.31708100000014, 34.27406799912126], [-118.316998, 34.27446299912122], [-118.316411, 34.27530099912117], [-118.31658100000013, 34.27556199912125], [-118.31778200000012, 34.27529599912127], [-118.318729, 34.275660999121214], [-118.319329, 34.27828099912124], [-118.319411, 34.278900999121205], [-118.31901100000012, 34.27930099912126], [-118.317311, 34.27950099912119], [-118.31701100000012, 34.28030099912117], [-118.316111, 34.280600999121205], [-118.315919, 34.28110499912111], [-118.317455, 34.28372899912106], [-118.31714360651196, 34.28608209854985], [-118.29947800000011, 34.28609599912122], [-118.299395, 34.29325899912108], [-118.290608, 34.29322799912129], [-118.29062000000012, 34.29271899912114], [-118.286286, 34.2926489991209], [-118.286307, 34.29207499912098]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Sunland", "population": 0.20408163265306123, "cases": 98.0, "resource_uri": "/1.0/boundary/sunland-la-county-neighborhood-current/", "external_id": "sunland", "slug": "sunland-la-county-neighborhood-current", "metadata": {"sqmi": 4.00411735528, "type": "segment-of-a-city", "name": "Sunland", "slug": "sunland"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.342812, 34.207403999122086], [-118.34131942576883, 34.20652653043827], [-118.3629870000001, 34.20681799912205], [-118.362171, 34.20141899912221], [-118.362372, 34.20119699912223], [-118.394278, 34.20110899912203], [-118.39471200000015, 34.20093299912205], [-118.413926, 34.20469399912215], [-118.413927, 34.20449499912204], [-118.42731500000016, 34.20700399912202], [-118.4220150000001, 34.22410299912182], [-118.420515, 34.225602999121904], [-118.407114, 34.23520299912159], [-118.403914, 34.23770299912169], [-118.398714, 34.24410299912155], [-118.39001400000011, 34.2523019991214], [-118.38381400000011, 34.246602999121585], [-118.366614, 34.23003099912181], [-118.361613, 34.2250029991218], [-118.35901200000015, 34.22210599912174], [-118.358619, 34.22186299912187], [-118.357687, 34.22167799912188], [-118.35461200000017, 34.21840399912194], [-118.351212, 34.215703999122056], [-118.346974, 34.211814999121984], [-118.342812, 34.207403999122086]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Sun Valley", "population": 0.5248195932648152, "cases": 120.0, "resource_uri": "/1.0/boundary/sun-valley-la-county-neighborhood-current/", "external_id": "sun-valley", "slug": "sun-valley-la-county-neighborhood-current", "metadata": {"sqmi": 9.42392419761, "type": "segment-of-a-city", "name": "Sun Valley", "slug": "sun-valley"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.94288549712603, 34.587222455455056], [-117.94293913422159, 34.58318758759581], [-117.94280623803996, 34.5831899159376], [-117.94281954663191, 34.582824544862376], [-117.94295244222839, 34.58282221740767], [-117.94312679093368, 34.5780521824562], [-117.94299282239419, 34.57805398112628], [-117.94305867764295, 34.57621680773874], [-117.93395544857538, 34.57632157955379], [-117.91644371892811, 34.57611534831157], [-117.9162753534237, 34.558105258292585], [-117.91817574662934, 34.557965314537164], [-117.91817500650063, 34.55810952028969], [-117.92296413276286, 34.55809929620305], [-117.92317805176253, 34.55782264418524], [-117.9231494330535, 34.55644464854932], [-117.9242470903966, 34.55644415601838], [-117.92425265863356, 34.556712071583355], [-117.93193453338232, 34.55670293397731], [-117.93194160895118, 34.55702464658875], [-117.93380298204336, 34.55702309888124], [-117.93435933286653, 34.556775464431134], [-117.93545861809412, 34.556909680344894], [-117.93881211191355, 34.5569087228953], [-117.93875449509805, 34.553773262586525], [-117.93840276983565, 34.5537715471362], [-117.9383450506126, 34.55049759715506], [-117.93874341171623, 34.54994364376247], [-117.9384581481104, 34.549803224659016], [-117.93831208363703, 34.549406776913244], [-117.93826879832281, 34.543025509589704], [-117.94645392276608, 34.543027909446444], [-117.94887170545987, 34.54330062829034], [-117.94920893056201, 34.543577672646656], [-117.95150240968196, 34.54383907164991], [-117.95359464593317, 34.543873261574596], [-117.95800510239246, 34.543240819278786], [-117.95826656880179, 34.5428011203135], [-117.95827236826389, 34.52831400859094], [-117.99679768207069, 34.52817092930965], [-117.99692128784555, 34.53546059085963], [-117.99473901109047, 34.535471839191096], [-117.99474719230197, 34.53737107963609], [-117.99256403614956, 34.53738154489764], [-117.99256697947776, 34.53788437015701], [-117.99125710759817, 34.53829151034286], [-117.99049706097925, 34.53945301506767], [-117.98951010909086, 34.540479246514074], [-117.98856639956497, 34.54103298502218], [-117.98806712696519, 34.541036047236986], [-117.98814906910494, 34.54466548753067], [-117.98593427197572, 34.54467577556491], [-117.9859207479447, 34.546490491893366], [-117.9837108168266, 34.54650073995974], [-117.98369910384757, 34.54831548389702], [-117.9814866321343, 34.54832577320131], [-117.98145150336615, 34.55395534202726], [-117.97924462834742, 34.553964382440405], [-117.97922368161878, 34.55777937133976], [-117.97827549978615, 34.557783217236214], [-117.97830985470026, 34.561428426812654], [-117.97505232420936, 34.561434479137894], [-117.97508119363488, 34.565073559518815], [-117.97393691911883, 34.565073374455515], [-117.97409586406702, 34.57220303335683], [-117.973547220202, 34.58711414907378], [-117.94288549712603, 34.587222455455056]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Sun Village", "population": 0.06035731530661516, "cases": 5.0, "resource_uri": "/1.0/boundary/sun-village-la-county-neighborhood-current/", "external_id": "sun-village", "slug": "sun-village-la-county-neighborhood-current", "metadata": {"sqmi": 10.2290764366, "type": "unincorporated-area", "name": "Sun Village", "slug": "sun-village"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.4362838207196, 34.32989899914581], [-118.41998299985605, 34.32987899915675], [-118.41998499976465, 34.329163999008024], [-118.41946399976666, 34.32916299908672], [-118.41946199993683, 34.32987999902711], [-118.4190099998884, 34.329880999283844], [-118.4186370000701, 34.32943299907969], [-118.4182129998899, 34.329489998986915], [-118.41945600026196, 34.32792599930385], [-118.42074100005104, 34.32772299928926], [-118.42075100009882, 34.32557299898474], [-118.4190509997857, 34.32565599912163], [-118.41589400023113, 34.32448699925774], [-118.41434999993285, 34.32444099931936], [-118.41434899990155, 34.32469199897632], [-118.41359099982436, 34.32468999910854], [-118.41359099980166, 34.32510299920556], [-118.41220700007383, 34.325903999037564], [-118.41358500010786, 34.32740799897797], [-118.41357900011018, 34.32988099930787], [-118.405202, 34.329810999120674], [-118.404912, 34.32207699912088], [-118.40272, 34.32129899912073], [-118.400663, 34.3195419991207], [-118.39626, 34.31985999912074], [-118.39627800000014, 34.318069999120716], [-118.396524, 34.318070999120856], [-118.39653, 34.31741899912073], [-118.397279, 34.31711499912065], [-118.39753800000011, 34.31828999912089], [-118.39866, 34.31810999912079], [-118.399716, 34.317593999120916], [-118.40076, 34.31757699912088], [-118.40090400000014, 34.31002699912082], [-118.401079, 34.30972199912073], [-118.401836, 34.309876999120846], [-118.402446, 34.309607999120914], [-118.402479, 34.309428999120875], [-118.403016, 34.309388999120976], [-118.403324, 34.310023999120936], [-118.403881, 34.310049999120935], [-118.404114, 34.309037999120946], [-118.403566, 34.308969999120784], [-118.403751, 34.30791699912087], [-118.405469, 34.30791199912088], [-118.4056, 34.300725999120964], [-118.401052, 34.30066999912094], [-118.401205, 34.297064999120856], [-118.40346, 34.29710599912108], [-118.403508, 34.29351299912106], [-118.409072, 34.29365899912113], [-118.40896, 34.291807999120984], [-118.410217, 34.29184299912106], [-118.41034800000016, 34.29196799912106], [-118.41019269089901, 34.290837665060394], [-118.41042300000012, 34.29093699912096], [-118.411615, 34.290000999120984], [-118.41582319720133, 34.29381818342135], [-118.415667, 34.29393199912115], [-118.41843700000011, 34.29654099912097], [-118.42140100000015, 34.29437499912103], [-118.429321, 34.30183699912096], [-118.4325690000001, 34.30468699912098], [-118.442473, 34.295855999121066], [-118.443473, 34.29515599912099], [-118.4435720000001, 34.29487499912094], [-118.444697, 34.29387099912113], [-118.44478100000015, 34.293802999120935], [-118.44550000000012, 34.294405999121096], [-118.44926, 34.29106599912113], [-118.45000200000013, 34.29040399912106], [-118.449441, 34.28969899912104], [-118.45631000000012, 34.28466999912117], [-118.455491, 34.28441599912126], [-118.45232934689139, 34.28143687637829], [-118.45441600000014, 34.27990099912114], [-118.4552160000001, 34.27950099912121], [-118.456964, 34.282206999121144], [-118.457826, 34.283147999121226], [-118.462966, 34.2859019991212], [-118.46420300000015, 34.28694999912104], [-118.46554200000016, 34.288344999121065], [-118.466989, 34.29067399912097], [-118.46819000000016, 34.29214099912104], [-118.472817, 34.295800999121], [-118.48141700000012, 34.30479999912089], [-118.49015600000016, 34.31499299912082], [-118.4923500000001, 34.31552199912069], [-118.49467600000014, 34.31867699912072], [-118.4974160000001, 34.31978799912066], [-118.503347, 34.323789999120535], [-118.5036960000001, 34.32429999912059], [-118.50375100000015, 34.32471399912053], [-118.50333000000013, 34.325946999120646], [-118.50343600000012, 34.32671799912063], [-118.50637, 34.33303499912057], [-118.50784013232494, 34.33426630318251], [-118.50380937790983, 34.3373067180371], [-118.49292925136501, 34.330770499236905], [-118.48440213799347, 34.330281885533125], [-118.4362838207196, 34.32989899914581]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Sylmar", "population": 0.8239738356615876, "cases": 325.0, "resource_uri": "/1.0/boundary/sylmar-la-county-neighborhood-current/", "external_id": "sylmar", "slug": "sylmar-la-county-neighborhood-current", "metadata": {"sqmi": 12.4563875325, "type": "segment-of-a-city", "name": "Sylmar", "slug": "sylmar"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.558518, 34.186503999122344], [-118.527317, 34.186492999122315], [-118.527317, 34.15850499912255], [-118.528717, 34.15450499912269], [-118.5258970000001, 34.15445599912262], [-118.525504, 34.15416999912268], [-118.525207, 34.153526999122704], [-118.52571500000012, 34.15230599912272], [-118.52574400000012, 34.15113999912266], [-118.526484, 34.1505059991227], [-118.52654500000014, 34.148284999122794], [-118.526717, 34.147892999122654], [-118.527117, 34.147704999122745], [-118.52738100000015, 34.14831299912267], [-118.527745, 34.14859299912272], [-118.527559, 34.149349999122734], [-118.527968, 34.1498259991227], [-118.52974, 34.14992799912278], [-118.530286, 34.14980499912269], [-118.53045600000011, 34.149606999122724], [-118.530477, 34.148912999122736], [-118.53022900000013, 34.14858599912274], [-118.53045400000013, 34.14825199912279], [-118.53030600000011, 34.14540999912273], [-118.530017, 34.14480599912281], [-118.52815300000012, 34.14415199912272], [-118.528302, 34.143476999122775], [-118.52961400000015, 34.14345399912275], [-118.528283, 34.14201399912289], [-118.527879, 34.14217999912288], [-118.527131, 34.14320899912283], [-118.5271510000001, 34.14415599912281], [-118.526317, 34.14420599912277], [-118.526325, 34.14478199912276], [-118.526148, 34.14515799912282], [-118.52581800000014, 34.145491999122775], [-118.52413600000011, 34.146400999122775], [-118.523808, 34.14730799912282], [-118.523512, 34.14756899912277], [-118.522825, 34.14767299912274], [-118.52145900000014, 34.14699899912286], [-118.52126, 34.14544199912285], [-118.52135700000017, 34.14316999912286], [-118.525955, 34.13381899912295], [-118.526381, 34.13256099912293], [-118.52711600000013, 34.12910599912314], [-118.52978000000012, 34.12947799912296], [-118.531636, 34.12896599912297], [-118.53243600000013, 34.12894999912295], [-118.534196, 34.12824599912297], [-118.53482, 34.12834199912302], [-118.536277, 34.12912599912299], [-118.53686900000012, 34.129189999122886], [-118.538469, 34.127973999123], [-118.53987700000012, 34.128293999123], [-118.54301700000013, 34.127105999123145], [-118.54931700000012, 34.1264059991231], [-118.554717, 34.12700599912304], [-118.55351700000011, 34.12860599912305], [-118.55551700000011, 34.128205999123004], [-118.55641700000012, 34.12660599912295], [-118.55731700000013, 34.126805999122936], [-118.559917, 34.12990599912287], [-118.561017, 34.130505999122995], [-118.563517, 34.13090599912291], [-118.5652170000001, 34.13440599912281], [-118.56631700000014, 34.13770599912282], [-118.567918, 34.13790599912288], [-118.5675180000001, 34.14390499912275], [-118.56791800000015, 34.14500499912283], [-118.567299, 34.14820799912272], [-118.567299, 34.14953899912274], [-118.56682300000013, 34.15071099912267], [-118.566836, 34.152329999122685], [-118.566024, 34.15358699912274], [-118.565033, 34.155695999122656], [-118.563165, 34.15714399912263], [-118.56314, 34.15791099912272], [-118.56369500000018, 34.1587729991226], [-118.563197, 34.159702999122544], [-118.56306900000014, 34.16086799912264], [-118.562459, 34.1613009991226], [-118.562281, 34.16181899912252], [-118.5622800000001, 34.162910999122566], [-118.56375500000016, 34.16357799912253], [-118.56591800000015, 34.16360499912251], [-118.5659220000001, 34.17045999912247], [-118.56313100000013, 34.170536999122454], [-118.562318, 34.17040499912242], [-118.5623180000001, 34.18650399912217], [-118.558518, 34.186503999122344]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Tarzana", "population": 0.3087548242941296, "cases": 76.0, "resource_uri": "/1.0/boundary/tarzana-la-county-neighborhood-current/", "external_id": "tarzana", "slug": "tarzana-la-county-neighborhood-current", "metadata": {"sqmi": 8.79090161634, "type": "segment-of-a-city", "name": "Tarzana", "slug": "tarzana"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.063067, 34.117565999123336], [-118.0630370000002, 34.11741399912313], [-118.05657600000019, 34.11833699912317], [-118.055682, 34.113860999123276], [-118.054696, 34.11399299912325], [-118.05463100000019, 34.11363599912327], [-118.054209, 34.11369399912324], [-118.054027, 34.112801999123306], [-118.0541780000001, 34.112780999123224], [-118.054067, 34.11223299912332], [-118.05417500000014, 34.11221799912326], [-118.054012, 34.11141299912331], [-118.053701, 34.111456999123284], [-118.053293, 34.1095679991232], [-118.05259700000013, 34.10966399912342], [-118.052472, 34.109032999123315], [-118.05315800000017, 34.10894199912329], [-118.053044, 34.1084059991232], [-118.052843, 34.10843299912339], [-118.05273500000013, 34.10794299912328], [-118.05367100000011, 34.10767999912329], [-118.053496, 34.10678799912326], [-118.052778, 34.1068879991233], [-118.052244, 34.10420199912337], [-118.03893800000017, 34.10615199912335], [-118.03874100000013, 34.10517899912334], [-118.037972, 34.10528999912339], [-118.03807500000012, 34.10577899912332], [-118.036213, 34.10604799912332], [-118.03621900000012, 34.10660599912335], [-118.034824, 34.106804999123256], [-118.0346990000001, 34.10620699912329], [-118.0337320000001, 34.1063449991234], [-118.033622, 34.105813999123384], [-118.032748, 34.10593799912336], [-118.03282700000015, 34.10632999912328], [-118.03269100000013, 34.10615799912335], [-118.031018, 34.10640099912339], [-118.0312040000001, 34.107260999123326], [-118.030813, 34.107315999123195], [-118.03022000000013, 34.105557999123334], [-118.0297560000002, 34.103368999123326], [-118.02854970765776, 34.10352501459612], [-118.02842053188208, 34.10304215332902], [-118.02963451391138, 34.10285753229248], [-118.02854502972912, 34.097089231202155], [-118.03322100000021, 34.096399999123356], [-118.03290100000017, 34.09407699912349], [-118.03344300000018, 34.094122999123485], [-118.03428800000016, 34.09389699912351], [-118.03491400000021, 34.09399299912354], [-118.0347680000002, 34.093597999123524], [-118.03624900000013, 34.0933409991235], [-118.03621900000012, 34.09254899912353], [-118.0386440000002, 34.092189999123505], [-118.03870400000014, 34.09248599912351], [-118.04001400000023, 34.09231999912351], [-118.03996000000016, 34.0920009991235], [-118.04221000000021, 34.09166199912352], [-118.042423, 34.092536999123475], [-118.04297300000017, 34.0924239991234], [-118.04278, 34.09157599912347], [-118.05170600000022, 34.090336999123615], [-118.05184200000028, 34.09101699912355], [-118.05210500000015, 34.09098199912354], [-118.051951, 34.090302999123544], [-118.05679100000023, 34.08955599912358], [-118.05657600000012, 34.089155999123626], [-118.05581500000011, 34.089302999123646], [-118.055562, 34.08963699912356], [-118.05502500000017, 34.08945499912353], [-118.05594200000023, 34.08721399912358], [-118.056189, 34.08707099912355], [-118.0561780000002, 34.0866719991236], [-118.05665700000013, 34.085358999123706], [-118.05836100000018, 34.08619499912359], [-118.05864600000011, 34.08571699912358], [-118.0733220000002, 34.09055999912355], [-118.07344500000016, 34.097096999123494], [-118.07503900000025, 34.09800999912351], [-118.07534200000015, 34.09842699912341], [-118.0756890000003, 34.09842199912363], [-118.075773, 34.10022999912339], [-118.07629000000018, 34.103168999123426], [-118.0772110000001, 34.1031539991234], [-118.07722000000015, 34.10495999912331], [-118.07781900000018, 34.105596999123414], [-118.0812730000002, 34.10560399912331], [-118.08137799058365, 34.11351300136584], [-118.08046398588424, 34.11351900412583], [-118.0804749858574, 34.11377600230534], [-118.07988598590045, 34.113906002599386], [-118.07992598536968, 34.11403300013007], [-118.07946000004755, 34.11404000227076], [-118.07937898587453, 34.11352400080333], [-118.0735869858706, 34.11354900416235], [-118.07312698595761, 34.11692000304783], [-118.07387798584752, 34.11675700238245], [-118.07415998536727, 34.11744000079973], [-118.07392098595625, 34.117458003627576], [-118.07412598725415, 34.11785700457206], [-118.0728779858922, 34.11866400204578], [-118.06832398592017, 34.11956300276049], [-118.06804697924493, 34.120399002448224], [-118.06374900000021, 34.1209959991231], [-118.063067, 34.117565999123336]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Temple City", "population": 0.3645562086154304, "cases": 49.0, "resource_uri": "/1.0/boundary/temple-city-la-county-neighborhood-current/", "external_id": "temple-city", "slug": "temple-city-la-county-neighborhood-current", "metadata": {"sqmi": 3.9799922816, "type": "standalone-city", "name": "Temple City", "slug": "temple-city"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.35715792241231, 34.16480619022097], [-118.35715100000014, 34.16128699912271], [-118.353103, 34.16128899912271], [-118.345949, 34.14457299912282], [-118.34566500000014, 34.142366999122856], [-118.347522, 34.14217999912288], [-118.35416000000014, 34.1432109991228], [-118.35796700000013, 34.14334799912287], [-118.36133973253521, 34.14266944146496], [-118.365011, 34.14880599912272], [-118.366612, 34.151205999122666], [-118.370237, 34.15761299912263], [-118.361601, 34.15761299912263], [-118.361612, 34.16480599912259], [-118.35715792241231, 34.16480619022097]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Toluca Lake", "population": 0.10562107231857462, "cases": 12.0, "resource_uri": "/1.0/boundary/toluca-lake-la-county-neighborhood-current/", "external_id": "toluca-lake", "slug": "toluca-lake-la-county-neighborhood-current", "metadata": {"sqmi": 1.21722776833, "type": "segment-of-a-city", "name": "Toluca Lake", "slug": "toluca-lake"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.60023833051604, 34.14366473498124], [-118.56475200000023, 34.130167999123096], [-118.59920399648777, 34.07433699810346], [-118.57039478100278, 34.069346496438435], [-118.57010700000036, 34.047116999124114], [-118.56707066298713, 34.041327315655536], [-118.56945410872031, 34.041602655318925], [-118.5717257792163, 34.04156023747734], [-118.57360435688392, 34.04090288509785], [-118.57547098330424, 34.039613975176195], [-118.57600515265837, 34.039513173038344], [-118.57827267351553, 34.03968892465534], [-118.57971169173022, 34.03952501344745], [-118.58060409030715, 34.03924870152832], [-118.5813313794412, 34.03850035188154], [-118.58218221445298, 34.03830361380712], [-118.58282209210321, 34.037853767530535], [-118.58442457361313, 34.037837306390045], [-118.58773400000024, 34.04557999912414], [-118.59587006070798, 34.045545692816766], [-118.59567163868823, 34.04559803151119], [-118.60201209870043, 34.054024585652726], [-118.60276946564643, 34.05455431527332], [-118.60331117068169, 34.05471452455955], [-118.60415804361593, 34.054230062818604], [-118.6048218142155, 34.05405840040738], [-118.60681315719592, 34.05495863264803], [-118.60706494487059, 34.05543545679007], [-118.60936913968361, 34.05806370442283], [-118.6098498053315, 34.05813236398256], [-118.61230652425154, 34.05775088513277], [-118.61341281487948, 34.05775469127182], [-118.61390874812719, 34.05817429504756], [-118.6156101497249, 34.05833831062431], [-118.61590008682566, 34.05890287062284], [-118.61621290535794, 34.05914700347119], [-118.61679275666508, 34.05926906604175], [-118.61696824468787, 34.0595856774226], [-118.61686906620812, 34.0598832177297], [-118.61754811843137, 34.06070716878385], [-118.61750236227648, 34.06167226556288], [-118.61681572461389, 34.062778507669684], [-118.61665553611729, 34.064247134177506], [-118.61645717359673, 34.06455611898255], [-118.61714386222472, 34.065731014081614], [-118.6175406415846, 34.06754295105894], [-118.61802895705455, 34.068523302345234], [-118.61766274987798, 34.069072609036645], [-118.61780010917708, 34.07026276632473], [-118.61858597268193, 34.071006610087935], [-118.61895982603612, 34.07112486093532], [-118.61966937524133, 34.07103712039528], [-118.62134026995768, 34.07167033412169], [-118.62156918105188, 34.07272316559453], [-118.62192015477288, 34.07327246736539], [-118.62320958077852, 34.074428285935895], [-118.62388098942748, 34.07464189955389], [-118.62674971154482, 34.07443589221415], [-118.62752030544546, 34.07468383644721], [-118.62855792864727, 34.07466094247816], [-118.62880207849116, 34.07479445195646], [-118.62890126977922, 34.07505766024675], [-118.62873343529523, 34.075812954705206], [-118.6289699595722, 34.076148638254324], [-118.62906152943776, 34.0767971220853], [-118.62977109216978, 34.07725105675113], [-118.63001525224374, 34.07788046636002], [-118.63038147749224, 34.078097896485986], [-118.63072481241595, 34.07824666428433], [-118.63254827357694, 34.077750753549395], [-118.63282294305723, 34.07793003796994], [-118.63324259228496, 34.07890276182482], [-118.63337233700504, 34.08077573720824], [-118.63344863686878, 34.080962652306425], [-118.63456257068711, 34.081553910958], [-118.63488304834713, 34.08310264169285], [-118.63572231268239, 34.08352987407452], [-118.6362945470571, 34.08423175899757], [-118.63681336388498, 34.084418672762986], [-118.63773654000364, 34.084258452814105], [-118.6383469156412, 34.084597950247854], [-118.63849952330372, 34.08534561324932], [-118.63830117074376, 34.0860589482564], [-118.63740091726791, 34.087794602643704], [-118.63719494063305, 34.088786403434526], [-118.63602768459872, 34.09194872603298], [-118.63814876712672, 34.09446254522686], [-118.63912536379783, 34.09488977678234], [-118.63962129852507, 34.09539330342545], [-118.63980442089924, 34.095942606666135], [-118.64024694914852, 34.09648809393924], [-118.64296310474714, 34.097422660774484], [-118.64391683309516, 34.09876158617443], [-118.64564877241664, 34.099741932899455], [-118.64729677775435, 34.1003904095606], [-118.64830387608195, 34.10001657196739], [-118.64874639431241, 34.100123378770135], [-118.65044784350646, 34.10240069670721], [-118.65047076561636, 34.103854066089006], [-118.65024909205688, 34.1048699588269], [-118.65025727588143, 34.10905353298402], [-118.6515009000933, 34.11009477541991], [-118.65179846448977, 34.110583045068054], [-118.65208843315027, 34.112555200747195], [-118.65109660219858, 34.11326090918519], [-118.65144758303143, 34.114107753300885], [-118.65193593859836, 34.11688097829783], [-118.65149345428064, 34.118292388191385], [-118.65136378612567, 34.11986019652832], [-118.65094418079713, 34.12083674087978], [-118.65020531404731, 34.12153142579457], [-118.6500617613452, 34.1290705368508], [-118.64495519704705, 34.12905448796758], [-118.64483221289659, 34.125322329703714], [-118.61062967278795, 34.12533058044356], [-118.61060906154145, 34.12902239431138], [-118.60624564505909, 34.129001104152685], [-118.60620347078773, 34.139658624116656], [-118.61277600000032, 34.13977299912293], [-118.61280500000024, 34.14064499912296], [-118.61363300000026, 34.141381999122906], [-118.61509400000023, 34.14147899912295], [-118.61531000000029, 34.142832999122966], [-118.61424080146264, 34.143656412310726], [-118.61139440905704, 34.14365265032882], [-118.61102000000025, 34.14524799912292], [-118.6108020000003, 34.14744099912297], [-118.61014600000028, 34.14742999912279], [-118.60023833051604, 34.14366473498124]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Topanga", "population": null, "cases": null, "resource_uri": "/1.0/boundary/topanga-la-county-neighborhood-current/", "external_id": "topanga", "slug": "topanga-la-county-neighborhood-current", "metadata": {"sqmi": 19.2379682469, "type": "unincorporated-area", "name": "Topanga", "slug": "topanga"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.313269, 33.88376799912613], [-118.31311900000017, 33.87301499912619], [-118.30912100000019, 33.87305299912622], [-118.30891700000018, 33.87133999912624], [-118.30895300000012, 33.86569099912635], [-118.30885000000029, 33.86569099912633], [-118.309148, 33.865607999126354], [-118.30915000000023, 33.85834799912637], [-118.3092790000001, 33.85834799912637], [-118.30941200000025, 33.85743899912639], [-118.30921600000016, 33.83810999912672], [-118.30894400000018, 33.830112999126676], [-118.30880400000014, 33.812385999126946], [-118.30863900000013, 33.81086599912693], [-118.30812700000018, 33.809044999127046], [-118.30929600000023, 33.80880499912696], [-118.30882900000022, 33.80679499912706], [-118.30879000000013, 33.80221699912707], [-118.31177100000016, 33.80213199912711], [-118.311705, 33.807515999127055], [-118.31991600000016, 33.807660999127016], [-118.31991900000014, 33.80692199912707], [-118.32794100000015, 33.8068489991271], [-118.32792400000017, 33.80341499912713], [-118.32598300000012, 33.80350299912711], [-118.32612100000019, 33.80108599912704], [-118.328175, 33.80097199912706], [-118.32832100000013, 33.79823999912714], [-118.32807600000021, 33.79678799912713], [-118.32801100000013, 33.79388799912723], [-118.32950500000015, 33.792341999127224], [-118.3294980000001, 33.79201399912721], [-118.32909500000014, 33.79095299912726], [-118.32775, 33.79100099912724], [-118.32819000000012, 33.790302999127185], [-118.32680500000019, 33.79031599912721], [-118.32676100000023, 33.78954599912722], [-118.32622900000025, 33.78954599912722], [-118.32616600000019, 33.7889099991273], [-118.32785100000015, 33.788933999127316], [-118.32780900000024, 33.78923899912725], [-118.328721, 33.78912499912725], [-118.328726, 33.78766299912727], [-118.32890400000015, 33.78719499912737], [-118.32790300000016, 33.787286999127254], [-118.32781700000021, 33.78612799912734], [-118.3280050000002, 33.78611599912734], [-118.3280050000002, 33.7852159991272], [-118.32990500000011, 33.7852159991273], [-118.3300050000002, 33.78041699912738], [-118.33272, 33.78021699912735], [-118.33415000000025, 33.780799999127375], [-118.34048000000026, 33.78613299912744], [-118.340491, 33.78663499912738], [-118.34192200000022, 33.78765099912729], [-118.34565700000022, 33.790951999127365], [-118.35303800000018, 33.79655799912716], [-118.35537200000014, 33.79869299912713], [-118.36104900000018, 33.80339899912706], [-118.36228900000015, 33.8040769991272], [-118.3664750000002, 33.80412599912705], [-118.3675650000002, 33.80399799912696], [-118.37441700000014, 33.80421299912709], [-118.37813800000018, 33.8041179991271], [-118.3940910000001, 33.80428599912713], [-118.3946450000002, 33.803516999127176], [-118.39529476230058, 33.80342630980687], [-118.39498902010992, 33.8035359819217], [-118.39463799229117, 33.80397797603228], [-118.39362699850136, 33.80604200066654], [-118.39327602329453, 33.80716900409966], [-118.39159269545188, 33.81532606283313], [-118.39041600000012, 33.81543699912692], [-118.38903900000025, 33.814856999126974], [-118.38862500000012, 33.8153219991269], [-118.38844100000017, 33.81506299912698], [-118.388117, 33.815257999126906], [-118.3879070000002, 33.81461499912696], [-118.38756100000026, 33.814860999126935], [-118.38642200000015, 33.8150709991269], [-118.38554200000019, 33.816083999126896], [-118.38602600000021, 33.81649299912688], [-118.3849390000003, 33.81753399912697], [-118.38544400000018, 33.818035999126906], [-118.38538000000018, 33.81892099912691], [-118.38458500000014, 33.81887899912694], [-118.38442900000011, 33.81901799912686], [-118.38300500000015, 33.81837999912697], [-118.380452, 33.81675899912696], [-118.37961400000017, 33.81638599912691], [-118.37449200000026, 33.81558199912702], [-118.37434700000011, 33.8163589991269], [-118.37450100000017, 33.81961199912684], [-118.37450700000011, 33.82731499912681], [-118.37445100000019, 33.827557999126846], [-118.37269800000018, 33.82756499912682], [-118.37431500000014, 33.83319499912669], [-118.37493200000021, 33.83610899912668], [-118.37477100000024, 33.83723899912662], [-118.37540600000025, 33.83891399912665], [-118.375439, 33.839873999126624], [-118.37665200000032, 33.84589299912657], [-118.37821900000013, 33.854992999126395], [-118.37537300000018, 33.85589899912636], [-118.3753980000002, 33.85825599912639], [-118.35885400000024, 33.858287999126354], [-118.35349500000028, 33.858129999126334], [-118.353065, 33.8587859991264], [-118.35755800000017, 33.86216099912633], [-118.3581440000002, 33.862837999126384], [-118.35871400000019, 33.864012999126345], [-118.35883200000022, 33.86554499912623], [-118.35246100000016, 33.86552599912633], [-118.35234800000018, 33.87442799912626], [-118.34986, 33.87537599912625], [-118.3264919904622, 33.88291600056766], [-118.31781800000032, 33.88552299912604], [-118.31347600000032, 33.88706099912601], [-118.313269, 33.88376799912613]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Torrance", "population": 1.4927120529181057, "cases": 255.0, "resource_uri": "/1.0/boundary/torrance-la-county-neighborhood-current/", "external_id": "torrance", "slug": "torrance-la-county-neighborhood-current", "metadata": {"sqmi": 20.5832400164, "type": "standalone-city", "name": "Torrance", "slug": "torrance"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.39986218182021, 34.29330168093823], [-118.39987534021171, 34.29327563829819], [-118.399874, 34.293280999121194], [-118.39986218182021, 34.29330168093823]]], [[[-118.25562510291037, 34.50167983601259], [-118.25554467213598, 34.49588389204682], [-118.25991860605343, 34.49590310105854], [-118.25773760650775, 34.48183679264869], [-118.24597834271935, 34.48170943206675], [-118.24607830998299, 34.47811289528655], [-118.24503150669833, 34.47810800546601], [-118.24533641525986, 34.46732248905014], [-118.23702088651507, 34.46740281844628], [-118.23702710197351, 34.46339814249998], [-118.21966646863281, 34.46266753820351], [-118.2196822619058, 34.465710534571], [-118.20799261212717, 34.46605746521052], [-118.20789867089195, 34.46403864877573], [-118.20800446863116, 34.463656896194394], [-118.2078463648407, 34.46286485199525], [-118.20660896333821, 34.462886925156575], [-118.20630231208393, 34.45613571872994], [-118.19810239462436, 34.45584428851268], [-118.19756307757581, 34.45630908760043], [-118.19753094645864, 34.45567158380637], [-118.19726145537918, 34.455802353469466], [-118.19752455957536, 34.45552458355188], [-118.19719472198943, 34.45580246193274], [-118.1847435105529, 34.45570100985002], [-118.18470858752102, 34.45195843862283], [-118.14960678145502, 34.45200987113323], [-118.1496201698695, 34.46643908081293], [-118.1404854110729, 34.466422355307934], [-118.13164148693322, 34.466174605450966], [-118.11872970749987, 34.46616923814347], [-118.11866052023461, 34.47642461898611], [-118.1178503709481, 34.476425875279766], [-118.11823562296836, 34.4770468157905], [-118.11862411128782, 34.47704643673872], [-118.11862856604758, 34.480677896362835], [-118.11786602693842, 34.480711990993775], [-118.11838612402333, 34.478245307516296], [-118.1183298297883, 34.47743680809908], [-118.11794788843623, 34.47658919946509], [-118.11651937850999, 34.4749054939267], [-118.11565520479101, 34.47344878391756], [-118.11111164797006, 34.455682262644764], [-118.11025934740091, 34.45360209851779], [-118.10834518396388, 34.45126665850144], [-118.09247981210001, 34.43840154308602], [-118.08998245773273, 34.436204630770135], [-118.08968563395416, 34.43555132155726], [-118.08971956608714, 34.43489573161883], [-118.09162694841982, 34.430798951104556], [-118.09173201811481, 34.429786426233676], [-118.0913705522311, 34.42864241702248], [-118.08924685215595, 34.42502346329009], [-118.0891411610652, 34.423959803138445], [-118.08932307393053, 34.42228181730144], [-118.08920615923056, 34.42186820142752], [-118.08883027513195, 34.42134245126087], [-118.08822517332898, 34.4208770153552], [-118.08582333959784, 34.42002690418971], [-118.08506723099848, 34.41910902875265], [-118.08478173615985, 34.41860049107133], [-118.08470517161278, 34.41791350646616], [-118.08491953331468, 34.41725858809053], [-118.08582852804209, 34.41615839051276], [-118.08588612402343, 34.41570014526785], [-118.0857069158674, 34.41517878065911], [-118.08502622471246, 34.41462759615451], [-118.08295597132066, 34.41407390066697], [-118.08190217130651, 34.41321545894575], [-118.08054327950391, 34.41003332611371], [-118.07969030547603, 34.40900854650804], [-118.07937055223108, 34.407215144295556], [-118.07810891274983, 34.40541282708168], [-118.07633426423799, 34.40358610626452], [-118.07459928358783, 34.40328282351454], [-118.07434169631996, 34.40265998885327], [-118.07437630262949, 34.40144117533204], [-118.07410606789064, 34.40101845152], [-118.0733433551472, 34.40033156081001], [-118.07095548023099, 34.39921451751962], [-118.07062338043623, 34.39874649122676], [-118.07077281720436, 34.398188398680844], [-118.07121254077994, 34.397919699326145], [-118.0730089447611, 34.39797703223432], [-118.07411515879991, 34.39751791035644], [-118.07464513023808, 34.396544405650424], [-118.07479428083307, 34.39572932632163], [-118.07562709456805, 34.39508717115804], [-118.07588773493691, 34.394269960603246], [-118.07739782495841, 34.392466672126126], [-118.07750357535663, 34.391941175332114], [-118.07711319311247, 34.39082386799923], [-118.0776609126637, 34.39017853239058], [-118.07843389380804, 34.389986486281906], [-118.07895161763768, 34.39008886662922], [-118.08218391758061, 34.39259571015741], [-118.08273188165977, 34.392759289961994], [-118.08334973287883, 34.392703574476634], [-118.08389982184077, 34.39232353479443], [-118.08482703675884, 34.39077146408389], [-118.08463536261235, 34.38928655336052], [-118.08495255387297, 34.38894435914714], [-118.08610882032744, 34.388278794283536], [-118.08690322178673, 34.387312399284035], [-118.08811645858746, 34.3863091159601], [-118.08972097777657, 34.38636437790049], [-118.09084374580071, 34.38740243301062], [-118.09138630015875, 34.38749565359815], [-118.0937474135909, 34.38612135521733], [-118.09492682738393, 34.38606619254468], [-118.09637816768672, 34.38535918380704], [-118.0971933364053, 34.38544601176044], [-118.09774374580078, 34.38595697846529], [-118.09831369984158, 34.38615019905301], [-118.09900497596738, 34.38596955633128], [-118.09941389285565, 34.385552445176124], [-118.09943534938537, 34.38502671252471], [-118.09829517476147, 34.38297391328167], [-118.09697836175113, 34.381557298861466], [-118.09657515005064, 34.38060751130057], [-118.09636014260859, 34.37931165949508], [-118.09731600677674, 34.37831212667155], [-118.09747510110806, 34.377359958577145], [-118.0979728481868, 34.37594382668351], [-118.09858364270605, 34.374906300785035], [-118.10156791469707, 34.37443993811336], [-118.10190243389069, 34.37421988968316], [-118.10207703311437, 34.37365439842655], [-118.10200480194644, 34.3733020985188], [-118.10092635412308, 34.372483800822394], [-118.10059444924836, 34.37198449027034], [-118.10052307393035, 34.371096285048495], [-118.10066783622618, 34.37067278210705], [-118.10329063850935, 34.36892424882926], [-118.10621515879978, 34.36582700126591], [-118.107538472878, 34.3622941542485], [-118.10936663876825, 34.3606575469793], [-118.10980357535678, 34.35994064109011], [-118.10963221952393, 34.35803048653472], [-118.10995871305934, 34.35484723987315], [-118.11061925005396, 34.35348620685588], [-118.1108321648394, 34.352418180938635], [-118.11063892069737, 34.35107317173675], [-118.10988632942788, 34.34890629335588], [-118.1099369483889, 34.34844353390261], [-118.11039580120318, 34.34739999912043], [-118.10981437495627, 34.345668594862616], [-118.11006067827364, 34.34497792516787], [-118.11067964314027, 34.3440393993995], [-118.11082307393038, 34.34347272639326], [-118.11063892069737, 34.34207317173688], [-118.11008428070147, 34.34054390043776], [-118.10979346615196, 34.33858226264617], [-118.10947055223112, 34.337633326114585], [-118.10884125574854, 34.33678757253824], [-118.10929016831486, 34.33616225025201], [-118.11065449054477, 34.33546663377653], [-118.11257808112931, 34.335108911870385], [-118.11413306119537, 34.333118397279726], [-118.11596970425435, 34.331999728539], [-118.11628149387451, 34.33156258746932], [-118.11656169738654, 34.330432249617445], [-118.11705428917656, 34.329967455047125], [-118.11848035053413, 34.32949386497784], [-118.12037167925791, 34.32919058390429], [-118.12589063850928, 34.32635152155702], [-118.12622175717507, 34.3259224592722], [-118.12621849001272, 34.32471905836461], [-118.12739073093157, 34.32402353479536], [-118.12773218248773, 34.32291807920114], [-118.12846607025426, 34.322228980593096], [-118.12888113116723, 34.32125580036169], [-118.13074442084044, 34.31993371761111], [-118.13143174093639, 34.31832922802453], [-118.13270208707578, 34.3174474867761], [-118.13496349021571, 34.31765885041692], [-118.1356006936573, 34.317366734708656], [-118.13593446321536, 34.31702568816384], [-118.13604110902385, 34.316659153507786], [-118.13578671029393, 34.3138406291863], [-118.13599003459447, 34.31283107104667], [-118.13620696795758, 34.31255573254728], [-118.13778717203839, 34.31196345732534], [-118.13839926548985, 34.31095006495728], [-118.14007576391545, 34.310270551352126], [-118.14102284156432, 34.30962883186765], [-118.14219394573357, 34.309306914988355], [-118.1430293952951, 34.30847580702946], [-118.14434849118811, 34.30802509680647], [-118.14596338710241, 34.30711182643584], [-118.14752090838041, 34.30714929537506], [-118.14937733620533, 34.307868380871895], [-118.1503173942329, 34.307714245173806], [-118.15163175470423, 34.3080047445083], [-118.15243936604084, 34.307748456070875], [-118.15328873404928, 34.306593944854384], [-118.15353993899316, 34.30607700472715], [-118.15349058478347, 34.305682865317934], [-118.1514800881067, 34.303656231943904], [-118.15017433392663, 34.30193336184561], [-118.14959697698151, 34.300418451521125], [-118.14853447548627, 34.29967232052743], [-118.14838528096706, 34.29911031936107], [-118.14879129822488, 34.29861258622387], [-118.14935570930436, 34.298460086321185], [-118.15136033918355, 34.29882019813926], [-118.15339230936802, 34.300177119173846], [-118.15517560418304, 34.301064038141064], [-118.15641006478018, 34.300987072276754], [-118.15765499079818, 34.301475283454735], [-118.15835839139312, 34.30148307261774], [-118.15959318335955, 34.30049321170228], [-118.16093426423808, 34.299950255613034], [-118.16128662012822, 34.29957971790435], [-118.16124327950388, 34.29873332611505], [-118.16045862238022, 34.2979215190658], [-118.16045705363699, 34.29756542883566], [-118.16072023995844, 34.2971935976839], [-118.16208230951993, 34.29671140839148], [-118.16296665381712, 34.29658670941497], [-118.16435026712136, 34.297021756295806], [-118.16513111866576, 34.296973981708625], [-118.16562970661796, 34.29657443513864], [-118.16580882880793, 34.295675593163466], [-118.16615856868769, 34.29535309683651], [-118.16784440653055, 34.295217856631915], [-118.16967245669107, 34.29402424882991], [-118.17000876660184, 34.29353531474271], [-118.17010474538766, 34.2929136989627], [-118.1696105354091, 34.29198452169203], [-118.16958617238248, 34.29162295104361], [-118.16996782536532, 34.29111607603198], [-118.17058022082425, 34.29102241989692], [-118.17266363636384, 34.29158670941511], [-118.17500384593869, 34.29110125443593], [-118.17546061334514, 34.29076336490319], [-118.17614665345981, 34.28981770860225], [-118.17723426423795, 34.28946843743136], [-118.17838925286377, 34.288558756282036], [-118.17962121846074, 34.28852509680673], [-118.18069073093166, 34.287723534795916], [-118.18081164797024, 34.28680953537392], [-118.18029704611455, 34.28613766546645], [-118.18015979877593, 34.28554311196212], [-118.18049346615192, 34.28474500832335], [-118.18049346615192, 34.284218626283106], [-118.17972709456812, 34.28304919071938], [-118.1793380723815, 34.28270665613967], [-118.17880000000015, 34.282567834281984], [-118.1773882139543, 34.282726579842596], [-118.17708739883327, 34.282507869822204], [-118.17647443601783, 34.28150665613972], [-118.17487228192937, 34.28099744206051], [-118.17236349021563, 34.28055932964342], [-118.17108375316016, 34.280594618052355], [-118.17053409351979, 34.280457563807744], [-118.1694979006017, 34.27912246990236], [-118.16882712657929, 34.27891387509801], [-118.1678274202215, 34.27892258027725], [-118.16721220386235, 34.27861380826053], [-118.16702195023615, 34.27825934009244], [-118.16686489167849, 34.27674160772852], [-118.16633426423806, 34.27604974262956], [-118.16559955465662, 34.27573380569704], [-118.16443913705227, 34.27565032138294], [-118.1636840152501, 34.2754015476203], [-118.1620979006016, 34.274086106266175], [-118.15974182555173, 34.273294148256845], [-118.15720804289417, 34.27141850524725], [-118.15620460893263, 34.27134070827969], [-118.15510622600294, 34.27161416872128], [-118.15443262299563, 34.27154433551612], [-118.15399596237471, 34.271297673944105], [-118.15344870099253, 34.27024545083419], [-118.15446445793103, 34.269856809106535], [-118.15554996343003, 34.26967756339259], [-118.15753870735062, 34.2696504441573], [-118.15904930048414, 34.269828527163426], [-118.15943027513187, 34.269612092435075], [-118.16035239884782, 34.2685077501139], [-118.16186945146576, 34.26758690352627], [-118.16242235450206, 34.267688458385834], [-118.16367043301264, 34.26864363918635], [-118.1651692211004, 34.268965442278905], [-118.16630524497086, 34.269573981708895], [-118.16799046374747, 34.26972073800076], [-118.16877716542872, 34.26938232968881], [-118.17098194688303, 34.26751757744041], [-118.17273155106079, 34.26746721084165], [-118.17365427487293, 34.26703333973926], [-118.17404902990219, 34.26638609563669], [-118.17425198586045, 34.26395993047393], [-118.17448037913901, 34.26370478923921], [-118.17550699984983, 34.26322750066336], [-118.1762678551221, 34.26303228060039], [-118.17686992293363, 34.26309275842028], [-118.17886888133457, 34.26427398170896], [-118.18023870698119, 34.26453960692404], [-118.18159135443462, 34.26503891981886], [-118.18212246015169, 34.26505811993271], [-118.18274716329047, 34.26478425119393], [-118.18292982978829, 34.2645086446872], [-118.18296721172055, 34.2641229935154], [-118.18268689999239, 34.2630514188748], [-118.18279515106245, 34.26181003548097], [-118.183023320097, 34.26104372584576], [-118.18343598330874, 34.26072747814485], [-118.18402895591694, 34.260650345779084], [-118.1844924387518, 34.26080040872976], [-118.1851638145233, 34.26192353479607], [-118.18607881577746, 34.262884819707814], [-118.18644160860732, 34.263128527163616], [-118.18690448197707, 34.263159289963376], [-118.18749790060158, 34.26294116470424], [-118.18815697934522, 34.26240170786644], [-118.18837747266025, 34.26193175382563], [-118.18829374092749, 34.26089229656988], [-118.18865120324467, 34.260424722965766], [-118.18904657267147, 34.2603323675579], [-118.19153175470426, 34.26059565359971], [-118.19230535385668, 34.26028163914393], [-118.1925224876598, 34.2598998529734], [-118.192507320399, 34.258639485245205], [-118.19311425367376, 34.25809232601585], [-118.19401631709646, 34.258195048299505], [-118.19470302301873, 34.25923609217623], [-118.195291957106, 34.259590583905066], [-118.19585902743144, 34.25967747178181], [-118.19665989931121, 34.259481639143964], [-118.19696146132213, 34.25922121758223], [-118.19713216483949, 34.258536362757944], [-118.19694670986038, 34.257714335001324], [-118.19656009791831, 34.25693783014357], [-118.1966228142201, 34.25657293668463], [-118.19685185438144, 34.256342960918396], [-118.19804073271354, 34.25610965354131], [-118.19910606789068, 34.25503609217638], [-118.19918656356928, 34.25476824441761], [-118.1991411655827, 34.254493007611075], [-118.19875080840212, 34.25406381364472], [-118.19798470010473, 34.253829083753665], [-118.19756507618258, 34.25350418988412], [-118.19749580120323, 34.253082247206144], [-118.19765885129615, 34.25238196345164], [-118.1973906385094, 34.25197574941302], [-118.1969499365225, 34.251758890097996], [-118.19574091086494, 34.25186448677588], [-118.19550100000026, 34.2373909991218], [-118.1976330000003, 34.23757599912185], [-118.1978190000002, 34.23728899912173], [-118.21331100000027, 34.23711899912185], [-118.2174030000003, 34.23728299912193], [-118.21752200000029, 34.233798999121795], [-118.22186700000024, 34.233730999121775], [-118.22247000000016, 34.240050999121785], [-118.22245300000012, 34.2409189991218], [-118.22199500000016, 34.243237999121746], [-118.22269798153613, 34.24323100041292], [-118.22266297190454, 34.24350700604524], [-118.22190597190335, 34.24403300604584], [-118.22161097190047, 34.25156000605537], [-118.23880799072303, 34.25220200343299], [-118.23890300000018, 34.26708399912151], [-118.23878900000018, 34.28158899912135], [-118.27353700000018, 34.28166099912124], [-118.27368000000025, 34.27806699912147], [-118.28669400000027, 34.278336999121315], [-118.28628600000026, 34.29264899912101], [-118.29062000000032, 34.29271899912123], [-118.29060800000019, 34.29322799912136], [-118.29939500000026, 34.29325899912116], [-118.2994780000003, 34.286095999121336], [-118.3269140000002, 34.28605999912132], [-118.32683100000027, 34.28243499912123], [-118.35172900000025, 34.282474999121284], [-118.35173500000022, 34.278832999121384], [-118.35470800000027, 34.27884799912132], [-118.3605160000001, 34.27995999912122], [-118.3613140000002, 34.27972799912125], [-118.36427900000018, 34.280764999121324], [-118.36728100000016, 34.2805889991214], [-118.36740700000028, 34.28036899912119], [-118.36810500000021, 34.282051999121364], [-118.36890000000025, 34.283257999121304], [-118.36951500000025, 34.28346199912122], [-118.37017600000024, 34.28189799912112], [-118.37135000000022, 34.282342999121276], [-118.37053100000033, 34.28360799912131], [-118.37047400000012, 34.28450999912121], [-118.36983800000023, 34.28612699912125], [-118.37351700000019, 34.28614599912126], [-118.37368875452431, 34.28589589133254], [-118.37392, 34.28627199912131], [-118.373775, 34.287457999121315], [-118.373891, 34.288753999121305], [-118.371858, 34.28993699912133], [-118.37147, 34.29044999912129], [-118.371005, 34.29180899912122], [-118.370833, 34.29284899912121], [-118.371025, 34.295072999121174], [-118.370913, 34.295776999121166], [-118.370609, 34.29676899912111], [-118.369665, 34.29868799912116], [-118.368897, 34.29868799912112], [-118.366993, 34.29975999912119], [-118.36657699999988, 34.30028799912119], [-118.366113, 34.30159999912119], [-118.365201, 34.30108799912117], [-118.364385, 34.29995199912116], [-118.363777, 34.29982399912111], [-118.362977, 34.299375999121146], [-118.362833, 34.29879999912114], [-118.362369, 34.298079999121185], [-118.360811, 34.297090999121174], [-118.360913, 34.29760099912118], [-118.360769, 34.298351999121145], [-118.360865, 34.29907199912119], [-118.361265, 34.29971199912108], [-118.361617, 34.300927999121136], [-118.362097, 34.301631999121135], [-118.362097, 34.30204799912107], [-118.361713, 34.30228799912113], [-118.361985, 34.30337599912111], [-118.363473, 34.306639999121124], [-118.363793, 34.30783999912111], [-118.363697, 34.30905599912103], [-118.36350499999989, 34.30959999912104], [-118.365297, 34.31023999912102], [-118.366673, 34.311039999121036], [-118.367633, 34.31014399912103], [-118.368961, 34.310031999121094], [-118.369873, 34.30977599912106], [-118.371825, 34.30983999912099], [-118.371809, 34.31036799912107], [-118.371249, 34.311519999120975], [-118.371441, 34.31190399912099], [-118.371825, 34.31156799912106], [-118.371601, 34.315247999120956], [-118.37044899999987, 34.31718399912094], [-118.370801, 34.31774399912088], [-118.371793, 34.31862399912097], [-118.37364899999987, 34.31862399912097], [-118.373979, 34.31874299912094], [-118.374737, 34.31839999912093], [-118.375281, 34.31849599912095], [-118.375585, 34.31881599912095], [-118.376657, 34.318751999120884], [-118.377906, 34.31814399912093], [-118.3787059999999, 34.31695999912098], [-118.379282, 34.316831999120964], [-118.379826, 34.31718399912094], [-118.380754, 34.3161759991209], [-118.381362, 34.31590399912093], [-118.381506, 34.315519999120966], [-118.382386, 34.31446399912098], [-118.38261, 34.31577599912097], [-118.382898, 34.315183999120926], [-118.385538, 34.31372799912089], [-118.388178, 34.311007999120946], [-118.390658, 34.31262399912098], [-118.391346, 34.31281599912098], [-118.39205, 34.31255999912106], [-118.394706, 34.31076799912101], [-118.39509, 34.311407999121016], [-118.395362, 34.31155199912105], [-118.39581, 34.311471999121], [-118.396306, 34.31110399912101], [-118.396587, 34.311255999120974], [-118.396434, 34.311823999120975], [-118.397042, 34.31227199912102], [-118.39709, 34.31252799912096], [-118.39675399999989, 34.312735999121045], [-118.396866, 34.31342399912099], [-118.3965939999999, 34.31417599912097], [-118.397154, 34.31444799912103], [-118.397581, 34.31440699912099], [-118.397593, 34.31491199912102], [-118.396867, 34.31497199912095], [-118.39687872689846, 34.31727729876774], [-118.3965300000003, 34.3174189991208], [-118.39652400000027, 34.31807099912103], [-118.39627800000032, 34.318069999120794], [-118.39626000000028, 34.3198599991208], [-118.40066300000025, 34.31954199912081], [-118.40272000000014, 34.32129899912086], [-118.40491200000021, 34.32207699912093], [-118.40520200000029, 34.32981099912073], [-118.41357900011039, 34.329880999307946], [-118.41358500010807, 34.327407998978025], [-118.41220700007406, 34.32590399903763], [-118.41359099980184, 34.32510299920567], [-118.41359099982456, 34.32468999910865], [-118.41434899990178, 34.3246919989764], [-118.41434999993305, 34.32444099931942], [-118.41589400023133, 34.32448699925778], [-118.4190509997859, 34.3256559991217], [-118.42075100009902, 34.325572998984825], [-118.42074100005122, 34.32772299928936], [-118.41945600026216, 34.32792599930396], [-118.41821299989009, 34.329489998987015], [-118.4186370000703, 34.32943299907977], [-118.41900999988863, 34.32988099928395], [-118.41946199993703, 34.32987999902718], [-118.41946399976688, 34.32916299908681], [-118.41998499976484, 34.329163999008124], [-118.41998299985624, 34.32987899915683], [-118.47681961362112, 34.330189213779164], [-118.48440213799365, 34.330281885533296], [-118.49292925136521, 34.33077049923694], [-118.50380937791004, 34.3373067180372], [-118.5040379731292, 34.337133651373506], [-118.50611356963583, 34.341095897097695], [-118.50556799987186, 34.34192499914375], [-118.50419200024992, 34.345378999246094], [-118.50387000025317, 34.346336999144164], [-118.5037009999426, 34.34813099901927], [-118.50399599981809, 34.350151999168766], [-118.50625500007249, 34.35706299894676], [-118.50623800014995, 34.35914299906479], [-118.50582699985884, 34.36052099908649], [-118.50025700007193, 34.36046299919286], [-118.50017699994558, 34.359901999021474], [-118.49017499978929, 34.35950299898768], [-118.49004599991632, 34.35699699924781], [-118.47467300010211, 34.35607599895383], [-118.47493099988296, 34.366071999213034], [-118.48299300014406, 34.36622599914385], [-118.48299900004152, 34.36663699903548], [-118.48335900004562, 34.366643998929625], [-118.48333299973295, 34.37048199898691], [-118.48998599990243, 34.370481999227565], [-118.48999300002855, 34.36949599890269], [-118.4934730000646, 34.369514999075136], [-118.49347300004413, 34.3675219992237], [-118.49794100004603, 34.36753199913021], [-118.49795299992047, 34.37009599893807], [-118.50060899988343, 34.37011599915025], [-118.4990450001744, 34.372585999332884], [-118.4977839999435, 34.37386099895679], [-118.48814499987854, 34.382258999342866], [-118.48617900017248, 34.38378099929707], [-118.48233000008557, 34.38587999894602], [-118.4777119997534, 34.38950799923276], [-118.47675800022394, 34.39006699897996], [-118.46657300023985, 34.39135299926404], [-118.46299100022878, 34.39137299915365], [-118.46303099996457, 34.38398199894758], [-118.44679700008253, 34.383809999225974], [-118.44686199998644, 34.38073499897328], [-118.44251000004792, 34.38047299921586], [-118.44254899990634, 34.378152998907865], [-118.44064000025634, 34.37825299899653], [-118.44070900022287, 34.373860999267905], [-118.43882700025038, 34.37381299899844], [-118.43882999987709, 34.37676399896189], [-118.4356460001785, 34.3766809989596], [-118.43562299988359, 34.37584799892865], [-118.43360899980293, 34.37580599898551], [-118.43363399983849, 34.37464399902598], [-118.43218300005094, 34.374641998998996], [-118.4321370000646, 34.37378899925462], [-118.4299360000085, 34.373764999230346], [-118.42992999988981, 34.37640546315205], [-118.42646400686881, 34.37645901028029], [-118.42486023586574, 34.37683940048887], [-118.41998429179641, 34.37997007132582], [-118.41747613065863, 34.38106199999808], [-118.41718850351516, 34.38109676225244], [-118.41690000024572, 34.380894998917135], [-118.41677899998312, 34.381097999285785], [-118.41334799983103, 34.38118399895422], [-118.41306099977076, 34.379879998948255], [-118.41272400016237, 34.37943099934421], [-118.41217499979952, 34.379246998995846], [-118.41090300013809, 34.37932499914338], [-118.40954800013887, 34.37972199928686], [-118.40837399980421, 34.380468998944856], [-118.40597299995771, 34.3808669993053], [-118.40527500000015, 34.38062099912003], [-118.4052960000002, 34.384180999119984], [-118.39720400000037, 34.3842579991199], [-118.39710200000027, 34.39457699911993], [-118.40309900000024, 34.39458099911997], [-118.4031130000002, 34.396218999119895], [-118.4022460000002, 34.39698499911988], [-118.40383300000022, 34.397791999119995], [-118.40335100000014, 34.398581999120005], [-118.40262900000029, 34.39822399911976], [-118.4019740000002, 34.399143999119744], [-118.40350700000027, 34.399564999119946], [-118.40321300000026, 34.40064099911977], [-118.40487500000022, 34.40054299911985], [-118.40726500000025, 34.40270499911978], [-118.40849400000027, 34.40349699911972], [-118.40772100000012, 34.40501299911992], [-118.4077990000002, 34.40542399911979], [-118.40633100000022, 34.407147999119914], [-118.40381300000021, 34.40833199911976], [-118.40058400000025, 34.404103999119755], [-118.40063800000023, 34.40358799911972], [-118.4000960000003, 34.40313799912001], [-118.40001000000017, 34.401655999119896], [-118.3990460000002, 34.399454999119726], [-118.3970670000002, 34.398031999120086], [-118.39733400000037, 34.40757099911976], [-118.39777900000027, 34.416187999119735], [-118.4017550000002, 34.41640399911964], [-118.4019870000002, 34.42128999911952], [-118.40356500000023, 34.42077199911971], [-118.40421800000031, 34.423192999119635], [-118.40376800000027, 34.4234189991196], [-118.4051080000002, 34.423607999119504], [-118.40419600000033, 34.42416499911957], [-118.40396900000025, 34.42482399911952], [-118.41521900000028, 34.42490699911964], [-118.41516800000028, 34.42709299911959], [-118.40663800000021, 34.427048999119364], [-118.40567000000026, 34.42803199911951], [-118.40245600000024, 34.42893899911964], [-118.39234800000013, 34.43342899911946], [-118.39054700000023, 34.433826999119404], [-118.39057200000025, 34.435522999119485], [-118.38879900000019, 34.43543599911948], [-118.38746300000028, 34.435019999119554], [-118.38644600000022, 34.434395999119516], [-118.38609400000033, 34.43451299911941], [-118.38470700000029, 34.434131999119515], [-118.38415900000021, 34.43413799911958], [-118.3813460000002, 34.434810999119364], [-118.37218658491987, 34.43756537018774], [-118.36603596329746, 34.44159713021213], [-118.36517428248405, 34.4425849005869], [-118.36389697678037, 34.4445270010848], [-118.3626653449881, 34.44561152377869], [-118.35417979177228, 34.45016843227362], [-118.35303537961144, 34.45094315367841], [-118.35211740484357, 34.451869906595405], [-118.35135858840404, 34.452935863343164], [-118.35017964296584, 34.45565758126997], [-118.34963974012848, 34.456457169825434], [-118.34846534484105, 34.45753879669202], [-118.34440649867803, 34.45999905271218], [-118.3433097734245, 34.4612423989712], [-118.34330556155025, 34.46022096779477], [-118.34410936041725, 34.45949199096732], [-118.34334431384156, 34.45946599242291], [-118.3434326032265, 34.45164343078068], [-118.33449350049823, 34.45260819866622], [-118.32457920571778, 34.451549965843114], [-118.32479403220262, 34.45872952237763], [-118.32557364264049, 34.4667337008158], [-118.32405069951635, 34.46710783471354], [-118.32306573576233, 34.46755883353657], [-118.31941321756912, 34.47041800624682], [-118.31828825871858, 34.47111098814261], [-118.3169902682283, 34.4716158087797], [-118.31238632140938, 34.472414667854395], [-118.31100104801514, 34.47287305069936], [-118.29783723634789, 34.47934581114602], [-118.29584490977795, 34.47987753494308], [-118.29153076154049, 34.48036033704529], [-118.28941119030785, 34.48122246989989], [-118.28786479733525, 34.48254794021084], [-118.28684555746976, 34.48432886084255], [-118.28651406230853, 34.48823496406879], [-118.28614845568582, 34.489385898025276], [-118.28513411870637, 34.49070523086307], [-118.283360042033, 34.49195690010686], [-118.27131614903509, 34.496814196224356], [-118.2622637825119, 34.49801387509556], [-118.26040524497088, 34.498407834712985], [-118.25811647307349, 34.499479383410105], [-118.25562510291037, 34.50167983601259]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Tujunga Canyons", "population": 0, "cases": 0.0, "resource_uri": "/1.0/boundary/tujunga-canyons-la-county-neighborhood-current/", "external_id": "tujunga-canyons", "slug": "tujunga-canyons-la-county-neighborhood-current", "metadata": {"sqmi": 229.89337376, "type": "unincorporated-area", "name": "Tujunga Canyons", "slug": "tujunga-canyons"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.279608, 34.278189999121345], [-118.27368, 34.278066999121364], [-118.273537, 34.28166099912115], [-118.238789, 34.28158899912125], [-118.238903, 34.26708399912142], [-118.25669, 34.26718999912136], [-118.2565, 34.25226599912151], [-118.265264, 34.2523799991216], [-118.265297, 34.250264999121526], [-118.266672, 34.25077899912161], [-118.26669100000015, 34.2477719991216], [-118.266044, 34.24776799912163], [-118.265999, 34.24389199912163], [-118.266024, 34.24035599912163], [-118.266733, 34.24079599912165], [-118.26680734947294, 34.23062818193326], [-118.272018, 34.23159299912171], [-118.27060900000012, 34.23280299912177], [-118.271693, 34.23347499912174], [-118.271809, 34.23380299912176], [-118.278402, 34.233313999121606], [-118.280011, 34.23333699912169], [-118.28264900000018, 34.233722999121674], [-118.286987, 34.233718999121685], [-118.291206, 34.23393999912167], [-118.29482100000011, 34.23336799912179], [-118.30283800000011, 34.2326339991218], [-118.304638, 34.23264999912175], [-118.306801, 34.23296299912164], [-118.30859400000013, 34.233532999121685], [-118.309275, 34.233902999121646], [-118.311857, 34.23647399912166], [-118.313731, 34.23783099912165], [-118.314707, 34.23830599912177], [-118.31823600000013, 34.23938399912177], [-118.32040200000012, 34.24030099912171], [-118.322176, 34.24141899912162], [-118.322947, 34.24218799912148], [-118.323718, 34.24348699912155], [-118.324811, 34.2501019991216], [-118.31671100000011, 34.24860199912146], [-118.312311, 34.248901999121486], [-118.30691100000011, 34.2482029991216], [-118.306011, 34.24860199912146], [-118.305311, 34.24850199912149], [-118.30641100000017, 34.24970199912165], [-118.30641100000017, 34.2514019991215], [-118.305511, 34.251001999121506], [-118.306111, 34.252101999121464], [-118.304111, 34.25240199912149], [-118.302711, 34.25240199912149], [-118.30261100000016, 34.26610199912149], [-118.302911, 34.272501999121204], [-118.302311, 34.2728009991212], [-118.30321100000013, 34.27330099912117], [-118.303411, 34.27390099912123], [-118.302411, 34.27420099912127], [-118.3011110000001, 34.27490099912131], [-118.299811, 34.275200999121125], [-118.299511, 34.27540099912129], [-118.299011, 34.27670099912115], [-118.29731, 34.27830099912115], [-118.29581, 34.281000999121105], [-118.29321000000013, 34.283200999121256], [-118.29161000000013, 34.28560099912108], [-118.29011, 34.28920099912104], [-118.28741, 34.29150099912099], [-118.28630781880415, 34.29205199819598], [-118.286694, 34.27833699912118], [-118.279608, 34.278189999121345]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Tujunga", "population": 0.27810551154559243, "cases": 66.0, "resource_uri": "/1.0/boundary/tujunga-la-county-neighborhood-current/", "external_id": "tujunga", "slug": "tujunga-la-county-neighborhood-current", "metadata": {"sqmi": 10.0158177057, "type": "segment-of-a-city", "name": "Tujunga", "slug": "tujunga"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.60443198843403, 33.47870998015493], [-118.60380401060958, 33.477981986760426], [-118.60210900712653, 33.47794999861377], [-118.60193301970844, 33.47778800600988], [-118.60191397413438, 33.477431980043086], [-118.60111700629862, 33.47719701447972], [-118.60073399033321, 33.47722500410805], [-118.59927800354411, 33.478003978611135], [-118.59890798276328, 33.47793000602219], [-118.5984859812443, 33.478068007516434], [-118.59798101047012, 33.47752699746524], [-118.5975470133961, 33.47756198450052], [-118.59681502148321, 33.477168025221886], [-118.59503599650338, 33.47677001481278], [-118.59428801051725, 33.47598898843841], [-118.5938430175179, 33.47586997990631], [-118.59342201562833, 33.475395997649144], [-118.59243501294841, 33.475526002106655], [-118.59140197469573, 33.47523900319305], [-118.58816101776131, 33.47503702540575], [-118.58767898585538, 33.47482000056275], [-118.58719700656157, 33.474334022750604], [-118.58621000388165, 33.47386198714056], [-118.58490701303015, 33.47409900457526], [-118.58418801630182, 33.474003987153], [-118.58370998291431, 33.474417991635356], [-118.58297399248308, 33.47468199906864], [-118.58251700392879, 33.474406995710055], [-118.58209700166898, 33.47438500385922], [-118.58078501415129, 33.47476502093588], [-118.5797319833068, 33.4753169743003], [-118.579123998074, 33.47541399098157], [-118.57843299097374, 33.47530897726356], [-118.57774198387366, 33.474809004637464], [-118.57663902416225, 33.47439100163667], [-118.57601599187359, 33.47449701498436], [-118.57515599476228, 33.475094004291876], [-118.57451802064212, 33.47457398646194], [-118.57374998945207, 33.47485598722772], [-118.57314100458953, 33.47449501572523], [-118.57241900897253, 33.4744720242448], [-118.57176598779631, 33.47462901870095], [-118.57099501032978, 33.4751219939201], [-118.56992198689386, 33.47532302468988], [-118.56955101909558, 33.475841990278205], [-118.56904899459803, 33.47508200873687], [-118.56830200824145, 33.47473198054765], [-118.56789500116615, 33.474237006069394], [-118.56742301816817, 33.47396100308108], [-118.56681398069351, 33.47415998197959], [-118.56647999918968, 33.473829998994056], [-118.56596298024856, 33.473681001574576], [-118.56444901494362, 33.47394001085992], [-118.56343102374657, 33.47382400121655], [-118.56110499093815, 33.47413799012896], [-118.5603120216209, 33.473788014551836], [-118.55907900484023, 33.47387498232515], [-118.55832102255809, 33.473403998956776], [-118.55797399325768, 33.47335301784828], [-118.55737600432042, 33.47350901267474], [-118.55739999543044, 33.47368699935202], [-118.55698499131849, 33.473918019009176], [-118.55589802568043, 33.474214014589045], [-118.55587798047684, 33.474421990153736], [-118.556216013111, 33.474645012774246], [-118.55592501567905, 33.47477501723169], [-118.55548402119814, 33.47443198644948], [-118.55331598247547, 33.474122995685114], [-118.55304897615338, 33.473496017490206], [-118.55224501091074, 33.47358098600446], [-118.55168000974972, 33.47317098004046], [-118.55136602083755, 33.47313199448681], [-118.55025201258866, 33.47332197671914], [-118.54914800063578, 33.47378001751507], [-118.54831499352314, 33.47372298601699], [-118.54804398868283, 33.47383999528987], [-118.54776898532435, 33.4744219901537], [-118.5468530089565, 33.474231008291895], [-118.54648798632358, 33.47460797386765], [-118.54571900811615, 33.47488997463341], [-118.54532099770711, 33.47476901945416], [-118.54498801583271, 33.47430298162158], [-118.54428001502977, 33.47412699420346], [-118.54386301165869, 33.47425499940183], [-118.54350798532153, 33.47470499054897], [-118.54280698192566, 33.474604974978924], [-118.54209098408602, 33.474960001316184], [-118.54175400369331, 33.47547202210939], [-118.53990700390206, 33.475369007650464], [-118.5387780012096, 33.47625199624215], [-118.53869198045369, 33.47742698189517], [-118.53850399748055, 33.477611018962044], [-118.53803901188972, 33.4774229833768], [-118.53794199520824, 33.476940004453546], [-118.53774101705064, 33.47673397553595], [-118.53725698588568, 33.476588976634694], [-118.53631301988966, 33.475835992500535], [-118.53612098578617, 33.475453976164935], [-118.53587302503823, 33.47534301728138], [-118.53531802017301, 33.4742320079215], [-118.53378900781244, 33.47387098380691], [-118.53295999921814, 33.47330798190506], [-118.532561988809, 33.47253500517929], [-118.53204602210955, 33.47235801813161], [-118.5320810091448, 33.47190597511305], [-118.53175102615921, 33.47174798102745], [-118.53193301135494, 33.47123001506878], [-118.53145997611524, 33.4702530086846], [-118.53113499127763, 33.47011700644953], [-118.53082999903147, 33.47030398979322], [-118.53033802344198, 33.469897982347405], [-118.53012699637637, 33.469481978606], [-118.53089497495439, 33.46939701009175], [-118.53108401016905, 33.46897800746139], [-118.53087198347392, 33.4681899836799], [-118.53027899268464, 33.46767101809179], [-118.52784599951131, 33.466329988704075], [-118.52582701082012, 33.4656549756773], [-118.52559699079266, 33.46538902159695], [-118.52461398663087, 33.465281008990274], [-118.52387099879269, 33.46564797827019], [-118.5229269801846, 33.4657669868023], [-118.52215500308849, 33.46553002197975], [-118.52206698307339, 33.464324994827216], [-118.52292198203665, 33.46361399513547], [-118.52314000650937, 33.463079982491436], [-118.52306498167863, 33.462342992430585], [-118.52286500315063, 33.461992017223885], [-118.52190698972841, 33.461276019384314], [-118.5202930088536, 33.46128801493918], [-118.51855702055775, 33.4607060200754], [-118.51824097977412, 33.46035299299737], [-118.5184719994313, 33.4597360110982], [-118.51834299460344, 33.459089987329136], [-118.51800001643332, 33.45884702472913], [-118.51650399184878, 33.45880898619303], [-118.51631201035732, 33.4582739739195], [-118.5158269795629, 33.45771202425927], [-118.51585602143278, 33.45711698159873], [-118.51557601992616, 33.45702701493665], [-118.51501001913564, 33.45716101791235], [-118.51294499487173, 33.456566974881525], [-118.51254498520346, 33.45631201672648], [-118.51207600109434, 33.45542097848633], [-118.51092600618063, 33.455715974436465], [-118.51004801573696, 33.45512298364719], [-118.50982099459812, 33.45525898588221], [-118.50947401790971, 33.455192010700316], [-118.50881799784483, 33.45550899850132], [-118.50855199115243, 33.45474002029391], [-118.50762102034102, 33.45422600024151], [-118.50718302474874, 33.454372998401844], [-118.5065779857924, 33.4540660068966], [-118.50585499054579, 33.4540109746577], [-118.50542999013803, 33.45374801946602], [-118.50540799828715, 33.45344097534887], [-118.50517397974136, 33.4533260179471], [-118.50374998109874, 33.45294100272258], [-118.50277497397364, 33.453245994968576], [-118.50210401207714, 33.45295399790707], [-118.50186099686496, 33.453156975324], [-118.50150202462174, 33.45306201051379], [-118.5013740194233, 33.45269198973302], [-118.50161298350513, 33.45248001565007], [-118.50227200245874, 33.452378000820694], [-118.50295301326298, 33.45197499226377], [-118.5031300003108, 33.45138100184496], [-118.5035250118312, 33.45105901589607], [-118.50355300145934, 33.450710986965916], [-118.50329699106277, 33.45036401027763], [-118.50107302569559, 33.44936001389479], [-118.4999780104089, 33.449553994645335], [-118.49959399481396, 33.449003987928094], [-118.49962398370137, 33.44789197893843], [-118.50107702421394, 33.447604980024764], [-118.50126300792797, 33.447447985568814], [-118.50132098644364, 33.447080016659235], [-118.50105597938077, 33.44684099996532], [-118.49999100559356, 33.44679301774553], [-118.4983109965542, 33.44577497393646], [-118.49830100025834, 33.44521302427631], [-118.4986650232618, 33.4444479919751], [-118.49937502332394, 33.443962014163105], [-118.4998080207682, 33.44338901596541], [-118.49910301885403, 33.44237102476846], [-118.49774699502278, 33.44146099356617], [-118.4964410052825, 33.441112017618636], [-118.4933609887106, 33.44110002206365], [-118.49252698196823, 33.44165597394627], [-118.49108199110437, 33.44185400582739], [-118.4907650033035, 33.44217899066493], [-118.4912049981549, 33.44278797552747], [-118.4909140007229, 33.4432929989137], [-118.49031301289716, 33.443244017064316], [-118.48950999467179, 33.44420097824485], [-118.48836999605406, 33.4438989848874], [-118.4880859960293, 33.44404798230698], [-118.48822799604174, 33.444403008644116], [-118.48797798342241, 33.44458599346927], [-118.48656498070515, 33.44413200380375], [-118.48635300662217, 33.443869995629605], [-118.48613798103831, 33.4439540171264], [-118.48572497618557, 33.443576998938426], [-118.48513398465539, 33.44349297744172], [-118.4843989938538, 33.4438679963704], [-118.48391401567117, 33.444455989011864], [-118.48386298195064, 33.44474798607339], [-118.48346302489438, 33.44493502202893], [-118.48351200674378, 33.44507402315267], [-118.48466200165748, 33.445286996865185], [-118.4853440120914, 33.44617798249335], [-118.48515897539494, 33.44644198992672], [-118.48393900641082, 33.44697400331156], [-118.4840970004965, 33.44711700295361], [-118.48313998670378, 33.447185977394646], [-118.48247102406651, 33.44752900817682], [-118.48075797463903, 33.447830001904485], [-118.48012199977786, 33.4478629896807], [-118.47984599678949, 33.447602980765716], [-118.47940300304937, 33.447508015955606], [-118.47849802260711, 33.4479859967311], [-118.47745798694723, 33.448231011202296], [-118.47712000692512, 33.448012986729715], [-118.47701299394785, 33.447662011523114], [-118.47647298352655, 33.4473580189065], [-118.47654600909789, 33.44620802399292], [-118.47619897979733, 33.44608701620176], [-118.47620297831564, 33.4457629783815], [-118.4758879897738, 33.4455490050393], [-118.47572499754017, 33.44468500940979], [-118.47440201409715, 33.44399800082789], [-118.47385300700948, 33.44322097297181], [-118.4726810202451, 33.44219098621984], [-118.47139102457828, 33.44186500175276], [-118.4694440092168, 33.44227500771675], [-118.46757001942709, 33.44166702248378], [-118.46506100179343, 33.44040001829723], [-118.46267998935812, 33.440216980859944], [-118.46220200858261, 33.43961899192281], [-118.46144502593033, 33.43797202327186], [-118.46048701250814, 33.437076986513084], [-118.45930397720615, 33.43658301166437], [-118.45795700265339, 33.43636998533978], [-118.45636801251788, 33.43498097373228], [-118.45545498242679, 33.434460008884955], [-118.45427999677355, 33.433306015453056], [-118.45160298875847, 33.43268898094186], [-118.44943900116634, 33.432496999450315], [-118.44773500101701, 33.43015502518086], [-118.44483702225267, 33.42844397501258], [-118.44269197501036, 33.42789602016645], [-118.43885597541538, 33.428713980223264], [-118.43689401822245, 33.42845102503158], [-118.43625799074918, 33.42824099759564], [-118.43513198694566, 33.42741898640844], [-118.43471698283358, 33.42653000003936], [-118.43426399279758, 33.426287984456884], [-118.43249601635533, 33.42633801854796], [-118.43050201840369, 33.427295979358135], [-118.42899299863458, 33.4277480223765], [-118.4272570103389, 33.42739099678023], [-118.42581601799328, 33.4266290159799], [-118.42515499978059, 33.42667699819972], [-118.42414900413853, 33.42707001046099], [-118.42182102468318, 33.42653199929857], [-118.4208830038526, 33.42671098560537], [-118.420267021583, 33.42623000594118], [-118.41802700953058, 33.42551600736079], [-118.41701501611107, 33.424749975430025], [-118.41667498421758, 33.42415598501124], [-118.41551699226734, 33.42386198869054], [-118.41520300335506, 33.423137993814194], [-118.41400197472092, 33.42310300677909], [-118.41329097502907, 33.42250501784175], [-118.4116739952654, 33.42229698966506], [-118.41032702071243, 33.42158598997338], [-118.40910699911616, 33.42164302147139], [-118.40801898123644, 33.42118398104591], [-118.4054279939774, 33.42171599443074], [-118.40518197987653, 33.42134297476119], [-118.40508201691856, 33.42031798615714], [-118.4041290016443, 33.41958099609636], [-118.40219398183778, 33.4188450056652], [-118.40119298434377, 33.418897986032846], [-118.40014900277767, 33.41853201638236], [-118.39817299815856, 33.418213976339786], [-118.3981170189021, 33.41744399850273], [-118.39736798067422, 33.41701300031751], [-118.39716700251662, 33.41631499581048], [-118.39687100693668, 33.41612101505973], [-118.39610902613643, 33.41598901134312], [-118.39508298529064, 33.41605998504329], [-118.39450398931562, 33.41625901655384], [-118.39388800704596, 33.41680097362239], [-118.39079699454852, 33.41738102183928], [-118.38965199778285, 33.417742992971334], [-118.3891049899542, 33.417680016307784], [-118.38875201548834, 33.41746998887182], [-118.38583299189077, 33.41383002189879], [-118.38410799952034, 33.41248199510423], [-118.38272398606091, 33.41022598897857], [-118.38207701527429, 33.40982697893995], [-118.38089397997253, 33.409591013746955], [-118.3792190216932, 33.40959301300607], [-118.37558599951504, 33.41019699972076], [-118.37274100111846, 33.409967979322786], [-118.37035499053533, 33.409202999633685], [-118.36955002566303, 33.40852898623642], [-118.3691790052526, 33.40755597837053], [-118.36878799225062, 33.407093991668376], [-118.36649000168245, 33.40640298456831], [-118.3661500224011, 33.40598798045634], [-118.36677999948489, 33.40590900971945], [-118.36715801730233, 33.40541498225863], [-118.36817101035138, 33.405071004459046], [-118.36860600705492, 33.404456021819], [-118.36860600705499, 33.403888021769234], [-118.36747900362174, 33.40219801643417], [-118.36716501470944, 33.400860985564925], [-118.36684397577793, 33.40028298921941], [-118.36728502287109, 33.39984699288633], [-118.3673100136105, 33.39922201395052], [-118.36942002120557, 33.39740100452851], [-118.36994898308963, 33.396186980709565], [-118.36996097864449, 33.395744986599006], [-118.36965198788015, 33.39490098356107], [-118.36987301124144, 33.39311101526804], [-118.36941902157604, 33.39110302250231], [-118.36902301042602, 33.39080097653284], [-118.36858801372246, 33.39084801173522], [-118.36831101110465, 33.39071200950026], [-118.36805899922635, 33.38934798863241], [-118.36722799137297, 33.388511982631165], [-118.36652298945859, 33.38815700890598], [-118.36520600379306, 33.388125020759496], [-118.36438799112415, 33.387798983680135], [-118.3615579871713, 33.384585016744474], [-118.35939799809728, 33.3827570099152], [-118.35821301614843, 33.38130802053307], [-118.35614099447744, 33.37830497543868], [-118.3559009781541, 33.37741498944013], [-118.35462197841264, 33.37670998752581], [-118.35444599099448, 33.37565501003437], [-118.3541180072681, 33.3749759984892], [-118.35235297710241, 33.373730986153355], [-118.35092198105278, 33.37337701205791], [-118.34982601874849, 33.37215599083203], [-118.34962998612669, 33.370925972939965], [-118.34921498201473, 33.370503024403526], [-118.34805499080537, 33.36980801878507], [-118.34708398219858, 33.369896985817725], [-118.3420610013955, 33.36492398649382], [-118.33944902191536, 33.363402024152236], [-118.33700797909307, 33.36149499397419], [-118.33418902367768, 33.36021999275108], [-118.33321901470063, 33.359545979353655], [-118.33191902273788, 33.35839198592185], [-118.33067101151326, 33.3564059850068], [-118.33063258886266, 33.35549326754746], [-118.33089300000026, 33.355495999132806], [-118.3308710000003, 33.355701999132805], [-118.33142200000032, 33.3559769991328], [-118.33197900000032, 33.355693999132924], [-118.33209800000029, 33.35480899913284], [-118.33325900000024, 33.3548969991328], [-118.3333190000002, 33.35550199913283], [-118.3342530000002, 33.35547299913287], [-118.33417000000023, 33.354880999132845], [-118.33506400000032, 33.35500499913297], [-118.33502800000026, 33.35543499913279], [-118.3353960000004, 33.35529899913287], [-118.33543300000026, 33.35415199913273], [-118.33526300000015, 33.35394799913287], [-118.3346640000002, 33.35392799913288], [-118.3346910000002, 33.35356699913281], [-118.33445800000023, 33.35336799913292], [-118.33257900000028, 33.35363699913286], [-118.33175300000028, 33.35360899913284], [-118.33108400000022, 33.352859999132974], [-118.33572200000019, 33.34731599913291], [-118.33928000000026, 33.34379799913299], [-118.34249500000028, 33.34034099913301], [-118.34687300000026, 33.32127399913322], [-118.34705100000028, 33.31868299913333], [-118.32709300000026, 33.31793199913347], [-118.32698800000023, 33.33032599913321], [-118.31828400000029, 33.33901099913304], [-118.31831100000016, 33.330598999133265], [-118.31693800000023, 33.327727999133096], [-118.31397600000018, 33.329253999133215], [-118.3110860000003, 33.330342999133116], [-118.30761346955137, 33.33029922693022], [-118.30743598984161, 33.3299969815828], [-118.30721501909227, 33.32723200616473], [-118.30608601639989, 33.32459198444414], [-118.30590897674013, 33.32291597392313], [-118.3035600050635, 33.320318988886534], [-118.30336402505371, 33.31985400329563], [-118.30365402285608, 33.317862004603334], [-118.30347098541867, 33.31683801562876], [-118.30396401325007, 33.314383977622114], [-118.3046470233135, 33.30902601568579], [-118.30488098924742, 33.30832601191945], [-118.30538601263345, 33.307823987422005], [-118.30707301907992, 33.30685297881525], [-118.3097209852251, 33.30600997540684], [-118.31138400056159, 33.305196013868354], [-118.31329897516429, 33.30338700000124], [-118.31424699229059, 33.30207501248359], [-118.31625098653792, 33.30110500350644], [-118.31695298956352, 33.30058198678782], [-118.3204490098772, 33.30019097378584], [-118.32142201774295, 33.29961997484732], [-118.32571600552188, 33.29819197768648], [-118.3274040115977, 33.298318983255214], [-118.32840400946218, 33.298652017741595], [-118.33272198835103, 33.30081000755623], [-118.33523900302126, 33.301145988319234], [-118.33712498836607, 33.3020760121132], [-118.33826898550217, 33.302279989159665], [-118.34011098714555, 33.3029590007047], [-118.34168598246683, 33.30318102369558], [-118.34676999328636, 33.307363000349284], [-118.34734199185438, 33.30763100630107], [-118.34942600908036, 33.307980981878096], [-118.35235297710254, 33.31097897621244], [-118.35546698108023, 33.31350998569682], [-118.35618097966075, 33.31392099129039], [-118.35896000250511, 33.31457501209602], [-118.36028798409592, 33.315042996575755], [-118.36450400076765, 33.3152530240117], [-118.36567498790237, 33.31595697368437], [-118.37000601458767, 33.31736297899453], [-118.37248499072182, 33.318724000973596], [-118.3744499994156, 33.319436000294964], [-118.37971599543063, 33.320245016297704], [-118.3828659860733, 33.320245016297704], [-118.38441699028466, 33.32055500669157], [-118.38594600264544, 33.320137003690874], [-118.38787502467436, 33.31986299996188], [-118.3897270226134, 33.32023402037231], [-118.39146301090923, 33.3202039788728], [-118.39230601431764, 33.31945199436828], [-118.39331200995963, 33.3191320076785], [-118.39514201604798, 33.319872996257615], [-118.39626302170379, 33.31982501403774], [-118.39724902475419, 33.319338983613584], [-118.39813501223458, 33.31967601661842], [-118.39899201045704, 33.31944599659079], [-118.40118598693665, 33.32016899183746], [-118.40669499816391, 33.32071899855483], [-118.40995999882028, 33.32038101853267], [-118.41085998111483, 33.32001299701097], [-118.41250300385971, 33.31986699848022], [-118.41363200655204, 33.31946398992321], [-118.41613297453696, 33.3191719928617], [-118.41716801204888, 33.31837402539648], [-118.42068302532452, 33.31730300121976], [-118.42158300761885, 33.31667602302485], [-118.42251197917109, 33.31652902486445], [-118.42466202456146, 33.317577004948866], [-118.426649025106, 33.31765497605609], [-118.4271989792111, 33.31815600092387], [-118.4280419826195, 33.31853801725968], [-118.42975098091668, 33.31858899836825], [-118.4312440066125, 33.31842200761636], [-118.43337900494691, 33.31907497618049], [-118.43515797731459, 33.318940973204526], [-118.43895199246712, 33.31806698127923], [-118.44120999785203, 33.31811101759283], [-118.44190300421138, 33.3184100120614], [-118.44353197952996, 33.31986899773938], [-118.44441102221538, 33.320287000740024], [-118.44526102303084, 33.32033498295979], [-118.44767502324216, 33.31985700218443], [-118.45069001127955, 33.320187984799475], [-118.45153301468795, 33.32066002040956], [-118.45258299403143, 33.32070800262944], [-118.45737900630782, 33.32180901569363], [-118.4597720142979, 33.323391008421986], [-118.46037899990127, 33.32345098619669], [-118.46119401368156, 33.32395800884208], [-118.46218701413888, 33.32414899070406], [-118.46411598355569, 33.32516398301219], [-118.46552398812508, 33.32557598823537], [-118.46567998295166, 33.32582100270657], [-118.4654009810748, 33.326663006485475], [-118.46543202220373, 33.32718202468584], [-118.46566698776716, 33.32748601730218], [-118.46733899976986, 33.32849501183292], [-118.46714601864875, 33.329510004141234], [-118.46745400978357, 33.33013098455863], [-118.46926102439177, 33.331448022836284], [-118.47029101114352, 33.33169798284335], [-118.47136997974495, 33.332225997709855], [-118.47165597902902, 33.33302001926882], [-118.47281302396176, 33.33359901524401], [-118.47287100247732, 33.33416101751615], [-118.47257000874976, 33.33505900055146], [-118.47305698619132, 33.33648299919413], [-118.47444299891005, 33.33762299781198], [-118.47540101233213, 33.33877799087342], [-118.47640200982627, 33.33901100978969], [-118.47668700948067, 33.33897602275446], [-118.47686599578756, 33.33865898234132], [-118.47757399659072, 33.338865011258974], [-118.47733098137846, 33.3392329801686], [-118.47737401806256, 33.339644985391715], [-118.47815998997281, 33.3414180125941], [-118.47924600859324, 33.34193797781182], [-118.48137600877988, 33.34340701239774], [-118.48229898255471, 33.344726996952055], [-118.48342798524715, 33.34686799306382], [-118.48405701531328, 33.347294992730724], [-118.4840780075344, 33.34899399473213], [-118.48553699321242, 33.350549997091335], [-118.48572297692628, 33.35115298417631], [-118.48620200994357, 33.35188197720057], [-118.48600197880337, 33.35229998020121], [-118.48666699553439, 33.352690993203154], [-118.48671697701343, 33.353366006230075], [-118.48764000340032, 33.35489801747944], [-118.48826198344732, 33.356588022814705], [-118.48826998048403, 33.357513995478115], [-118.48779799748603, 33.35887501745729], [-118.48724699113907, 33.35958901603771], [-118.48679699999185, 33.3607000253977], [-118.48519501467187, 33.36163499472737], [-118.4846729975828, 33.362406024806084], [-118.48463701091791, 33.362732009273195], [-118.48483698944594, 33.36307798633212], [-118.48591001288194, 33.363294011545456], [-118.48588902066078, 33.36381297713378], [-118.48387897602395, 33.3661759962365], [-118.48261302407893, 33.367036992977376], [-118.48216997772663, 33.367654974506166], [-118.48209100698993, 33.36848598235952], [-118.48235501442309, 33.36921697464292], [-118.48299898632104, 33.37020897547082], [-118.48489502057375, 33.37244698826394], [-118.48494500205278, 33.37297500313051], [-118.48478001056009, 33.37310600721759], [-118.48357798229611, 33.37320802204683], [-118.48234701738657, 33.374008988400774], [-118.48115298615944, 33.374221015095856], [-118.48024400719858, 33.37469299809386], [-118.47962802492906, 33.37538000667583], [-118.47937101490278, 33.37592401561552], [-118.47944898601017, 33.376387001947336], [-118.48033702536162, 33.37713398830387], [-118.48123100987863, 33.378809998824906], [-118.48112399690159, 33.37943697701997], [-118.48064501649657, 33.37972097704468], [-118.48048702241081, 33.38034800785172], [-118.4796360219658, 33.38068898676269], [-118.47784800031967, 33.38082698825682], [-118.47723901545723, 33.38114997383524], [-118.47603698719332, 33.3810250201377], [-118.47533598379734, 33.381180015334785], [-118.47381002293757, 33.382161020237206], [-118.47361698920452, 33.38273801695321], [-118.47386700182359, 33.383651994061786], [-118.47437602372818, 33.384494997470085], [-118.47461198892107, 33.38464499451929], [-118.475120011196, 33.38440597782558], [-118.47539201566588, 33.384512990802634], [-118.47520597933998, 33.38508099085238], [-118.47434698185823, 33.38534399865599], [-118.47441800817042, 33.385709021288875], [-118.4748630011698, 33.38617500650941], [-118.47586499829355, 33.38640197503613], [-118.47677397725424, 33.385666984234526], [-118.47731798619402, 33.38547500274301], [-118.4786430215083, 33.3862079942856], [-118.47869300298734, 33.38722998400082], [-118.47985999160372, 33.388727008215014], [-118.48001698605992, 33.38936598196495], [-118.48051101352075, 33.389769990151365], [-118.48071099204874, 33.39039202281051], [-118.48125500098861, 33.39089999247337], [-118.481254001359, 33.39122597694059], [-118.4807970128047, 33.39186600293216], [-118.48088997835569, 33.392404014094524], [-118.4807690231764, 33.39321097822606], [-118.48096200429752, 33.39423501981249], [-118.4814449832208, 33.395045982462214], [-118.48177201992969, 33.39602598773516], [-118.48207901143498, 33.3964499885133], [-118.48283899297608, 33.396772974091746], [-118.48351900415099, 33.39798399902183], [-118.48369799045778, 33.39849202129676], [-118.4837269797156, 33.39951401101201], [-118.48490901538797, 33.40025200070243], [-118.48579600249785, 33.401095004110914], [-118.4857460210188, 33.40158498044124], [-118.48497998908799, 33.401877977132344], [-118.48475102130224, 33.40224299976524], [-118.48508800169473, 33.40273397572522], [-118.48543897690156, 33.40367199655585], [-118.48540299023662, 33.40395999509898], [-118.48417102569746, 33.404945998149365], [-118.48396299752058, 33.40594399675474], [-118.48362701675764, 33.40625498677828], [-118.48362701675762, 33.40656597680176], [-118.48450700646055, 33.40744202059848], [-118.48566799729952, 33.40748400504082], [-118.48659202331591, 33.40783098172916], [-118.48654898663195, 33.40829701956173], [-118.48528798022286, 33.409229989632365], [-118.48530197503696, 33.41035999195431], [-118.48489402094421, 33.41146700279601], [-118.48494900057102, 33.4121310198975], [-118.48549600839966, 33.413276016663126], [-118.4867940011032, 33.41391798930189], [-118.48669298590345, 33.41498501496036], [-118.48727398113776, 33.41601400208263], [-118.48769698228624, 33.417583999256074], [-118.48810498899122, 33.41813100708461], [-118.48814097565608, 33.41885500196087], [-118.48871397385375, 33.41917198976188], [-118.48913697500238, 33.41973899018197], [-118.49001201916934, 33.41993802169263], [-118.49159401189773, 33.420919973612506], [-118.49285901682511, 33.42128499624549], [-118.49474300291081, 33.421265003653915], [-118.49593598189631, 33.421690004061695], [-118.49751097721763, 33.421259005876415], [-118.49940401258179, 33.421577992936555], [-118.49981701743461, 33.42233397595963], [-118.50052501823747, 33.42283200193861], [-118.50143899534602, 33.42285199453029], [-118.50463602119115, 33.42446497577565], [-118.50517697863016, 33.425627018856275], [-118.50626699576885, 33.426449977060955], [-118.50668000062173, 33.42695400081749], [-118.50681500322709, 33.42754499234773], [-118.50669599469495, 33.42794300275668], [-118.50573398275439, 33.42886597653145], [-118.5060199820385, 33.430105990719284], [-118.50579801165962, 33.43071697484099], [-118.50548002422909, 33.43109499265845], [-118.50509201011582, 33.43102501858783], [-118.5050419760247, 33.430802995596984], [-118.50547197458035, 33.429840983656476], [-118.5052330104987, 33.42960801735233], [-118.50496300528793, 33.42965499994263], [-118.50467600637423, 33.42999997737174], [-118.50424001004113, 33.43109499265845], [-118.50275997952991, 33.4317520123529], [-118.50262497692457, 33.431950991251384], [-118.5027689761961, 33.432833979843075], [-118.50259298877793, 33.433516989906536], [-118.50111501013794, 33.43517600672458], [-118.50104298419613, 33.43581997862235], [-118.5014250005319, 33.43610497827695], [-118.50179901983107, 33.43615801125672], [-118.50250602100454, 33.43518900190911], [-118.50494001380756, 33.434233987375734], [-118.50613299279308, 33.43274101429209], [-118.50647502394575, 33.43208399459763], [-118.50914598157125, 33.431970983843016], [-118.50968699162229, 33.43175201235303], [-118.50971897976882, 33.429952994781516], [-118.5103390131689, 33.4293490080669], [-118.51074502061464, 33.42864600541182], [-118.51169898290627, 33.42802802388311], [-118.51247900965127, 33.4272120104733], [-118.51251799520492, 33.426734976715395], [-118.5122879751772, 33.42584499071673], [-118.5124229777826, 33.42548002069584], [-118.51183398551173, 33.42484299359313], [-118.5123440070459, 33.42370799312308], [-118.51208099924219, 33.42240000412388], [-118.51245501854126, 33.42177602481772], [-118.5129479937604, 33.42158399071405], [-118.51410198719232, 33.422154989652604], [-118.51522299284817, 33.421962008531544], [-118.51555697435194, 33.42204897630505], [-118.51632100702358, 33.422819006754075], [-118.51619300182523, 33.42346897642939], [-118.51639198072382, 33.4246969950623], [-118.5162800222108, 33.42561902181955], [-118.51680498557654, 33.4264890152266], [-118.5195380254603, 33.427468020869924], [-118.5211150200408, 33.42907600396741], [-118.52212201531232, 33.429681989941116], [-118.52339801616505, 33.43075201448839], [-118.52399600510213, 33.430802995596984], [-118.52595001787066, 33.43032301556231], [-118.52686299534957, 33.43056397890316], [-118.52791397432271, 33.43062101040126], [-118.52847097844703, 33.430421978890664], [-118.52877102515724, 33.43004601294463], [-118.52934702224366, 33.430134979977005], [-118.53034102233079, 33.4297540158831], [-118.53071698827688, 33.42982698884239], [-118.53113599090726, 33.43040698444714], [-118.53134201982483, 33.43045901779725], [-118.53255599103151, 33.429024023229225], [-118.53306301367688, 33.42874202246352], [-118.5333130262961, 33.429196012129154], [-118.53361202076469, 33.42934001140062], [-118.53394500263894, 33.42900297839593], [-118.53423899895951, 33.42895599580567], [-118.53464600603485, 33.429786004029594], [-118.53521500571424, 33.43008899701649], [-118.536310021001, 33.42968698808912], [-118.53634100951787, 33.4300310185008], [-118.53568398982347, 33.4310959922881], [-118.5357840053936, 33.431978980879705], [-118.53553399277446, 33.43334200211787], [-118.535670994639, 33.433946988462075], [-118.5362719824649, 33.434380985536], [-118.53664100361605, 33.434380985536], [-118.53689801364236, 33.43417700848967], [-118.53743602480469, 33.434489997772374], [-118.54003300984121, 33.43450599184563], [-118.54099002363392, 33.43431301072458], [-118.54271801489311, 33.43359801251444], [-118.54376299608872, 33.4334670084275], [-118.54413301686938, 33.43358201844123], [-118.54499001509191, 33.43447000518073], [-118.5467429970907, 33.435134022282284], [-118.54716299935045, 33.43505000078553], [-118.54841500909339, 33.434255979226435], [-118.54988599032627, 33.43574000825598], [-118.55036802223205, 33.43547400156358], [-118.55107502340559, 33.43540097599212], [-118.55211500645325, 33.4345810166762], [-118.55282200762677, 33.43424598293065], [-118.55409301033163, 33.43392099809304], [-118.5543500203579, 33.433272975064845], [-118.55471299111949, 33.4330590017226], [-118.5554079967379, 33.433419973225156], [-118.55651100906125, 33.43298097800326], [-118.55766300323408, 33.43328902175026], [-118.55998598454157, 33.433236988399926], [-118.56061801349654, 33.433779997710154], [-118.56284697701153, 33.43432900479789], [-118.56370497486365, 33.4340210136631], [-118.56370497486365, 33.43438698331351], [-118.5642129971385, 33.4352970145158], [-118.56426897639513, 33.43589200456422], [-118.56451299123675, 33.43629901163955], [-118.56444501642518, 33.437006012813015], [-118.56472001978399, 33.437267021357535], [-118.56532800501677, 33.43749099099555], [-118.56783302413216, 33.437852015109996], [-118.56935498647374, 33.43871601073965], [-118.57124602257859, 33.439231977439206], [-118.57187899855093, 33.43877698814406], [-118.57265497416537, 33.43875599592291], [-118.57301799753913, 33.43920098892223], [-118.57412700764002, 33.4398280197292], [-118.5744839806242, 33.4406690238784], [-118.57418898467391, 33.44150497726763], [-118.57415799615694, 33.4427909744163], [-118.57150897777016, 33.444321986036016], [-118.5718470104044, 33.44468800829851], [-118.57285500530553, 33.444850000902534], [-118.57316199681074, 33.44514299759367], [-118.57321197828978, 33.44578602247395], [-118.57268501566499, 33.4463900091885], [-118.57317199310663, 33.446542005496774], [-118.57305298457449, 33.44755699780505], [-118.57432598653841, 33.447954008584446], [-118.57493002586531, 33.44785599227359], [-118.57538801404901, 33.44812699711389], [-118.57599400002296, 33.44823301046147], [-118.57688598528058, 33.4480119871002], [-118.57740800236984, 33.44752500965847], [-118.57771599350448, 33.44765001596802], [-118.57803498056472, 33.44865001383254], [-118.57845798171326, 33.449053022389464], [-118.57889197878728, 33.449155984236285], [-118.57911899992605, 33.44986898318722], [-118.57950601440972, 33.450162979507915], [-118.57951101255766, 33.45035101509299], [-118.58003897481208, 33.45060597324813], [-118.58086698377669, 33.45059697658181], [-118.58095500379198, 33.451149982187864], [-118.58074197746721, 33.45146202445305], [-118.58083199674135, 33.45235001119251], [-118.58176401979462, 33.45264800603158], [-118.58213898611118, 33.45293400531549], [-118.58255698911196, 33.45278600752557], [-118.58272797838221, 33.453090000142026], [-118.58320501214001, 33.45317202237962], [-118.58334401326378, 33.45356798091752], [-118.58318302028937, 33.45417202024419], [-118.58352999697776, 33.454719975090384], [-118.58467099522521, 33.45486597362094], [-118.58470198374218, 33.45558802185026], [-118.58493800154714, 33.455895013355395], [-118.58498698339665, 33.45654598266039], [-118.58639498796603, 33.45827297428994], [-118.58650899835014, 33.459010016962715], [-118.58706600247459, 33.45950099292279], [-118.5872359921152, 33.46019799780039], [-118.58920899784562, 33.461432014210786], [-118.59110697874544, 33.46123798084808], [-118.59117400653935, 33.462002013519665], [-118.59151198656156, 33.46228701317415], [-118.59152198285743, 33.4628350206323], [-118.59182497584425, 33.46340202105244], [-118.59259400666369, 33.46413801148378], [-118.59308898114205, 33.46405698887559], [-118.59321798597, 33.464190991851424], [-118.59311502412315, 33.46500400637235], [-118.5927959844509, 33.46542001011392], [-118.59303000299673, 33.46636197685079], [-118.59356601490005, 33.46711901211519], [-118.59540001950674, 33.467846005880205], [-118.59601900066498, 33.46819798071653], [-118.59680202629872, 33.46893202450065], [-118.59884400647003, 33.46880301967285], [-118.59989098692478, 33.469545007881514], [-118.60063802589367, 33.46966601567275], [-118.60086199553166, 33.47002098939781], [-118.60126000594062, 33.470258006832495], [-118.60168000820045, 33.470745983903676], [-118.60182400747216, 33.47133597580416], [-118.60230398750659, 33.47179401660013], [-118.60255499975541, 33.47264001889728], [-118.60211800379274, 33.47293001669957], [-118.60221102195572, 33.47346397673147], [-118.60189298191314, 33.473827999734986], [-118.60205397488745, 33.47444598126355], [-118.60318597646877, 33.475422987647775], [-118.60357698947082, 33.47551900469958], [-118.60370099615078, 33.47581999842729], [-118.60347697390067, 33.476146982524156], [-118.60383999727435, 33.476676996649786], [-118.60401398543334, 33.47685298406795], [-118.60448002326595, 33.47676701592413], [-118.60465501105466, 33.47688702408573], [-118.60530498072985, 33.47777501082529], [-118.60537800630125, 33.47839299235395], [-118.60586098522462, 33.47850800236776], [-118.60595700227644, 33.47874901832069], [-118.60573098076716, 33.47891900796138], [-118.60534801741393, 33.47866299756468], [-118.60494001070903, 33.4790129731419], [-118.60443198843403, 33.47870998015493]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Santa Catalina Island", "population": 0.0026700130830641074, "cases": 2.0, "resource_uri": "/1.0/boundary/unincorporated-catalina-island-la-county-neighborhood-current/", "external_id": "unincorporated-catalina-island", "slug": "unincorporated-catalina-island-la-county-neighborhood-current", "metadata": {"sqmi": 72.5020030275, "type": "unincorporated-area", "name": "Unincorporated Catalina Island", "slug": "unincorporated-catalina-island"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.74118600000018, 34.13361599912307], [-118.73835200000023, 34.13220299912307], [-118.73637200000029, 34.13073199912313], [-118.73442300000029, 34.13226999912306], [-118.72846759502661, 34.132395345385426], [-118.72846054601439, 34.13150954269168], [-118.72634135743868, 34.131521377044365], [-118.72501700000025, 34.1312139991231], [-118.7239020000002, 34.131221999123085], [-118.7239055221511, 34.128967103621584], [-118.72411632723248, 34.128958985951876], [-118.72409926147985, 34.12532999249395], [-118.72388228247476, 34.1253306210157], [-118.72389300000032, 34.1249579991232], [-118.70641900000022, 34.124980999123174], [-118.70840900000016, 34.11752199912327], [-118.71096900000033, 34.11105699912333], [-118.71131800000023, 34.10979999912332], [-118.71144000000022, 34.1089209991233], [-118.71135900000016, 34.10700699912345], [-118.7117740000003, 34.10542199912341], [-118.71173100000028, 34.10483399912343], [-118.71134300000026, 34.103911999123376], [-118.71077200000026, 34.10420399912337], [-118.71073849722522, 34.10718476072532], [-118.70669000000028, 34.10712099912333], [-118.70638300000029, 34.11426699912329], [-118.68868400000031, 34.11426799912331], [-118.68858400000026, 34.11746599912324], [-118.67693200000019, 34.11770399912323], [-118.6605280000003, 34.117070999123285], [-118.65180461149353, 34.11729987862501], [-118.65193593859836, 34.11688097829783], [-118.65182146910705, 34.11575566635144], [-118.65146285430309, 34.114683760372436], [-118.65144758303143, 34.114107753300885], [-118.65109660219858, 34.11326090918519], [-118.65208843315027, 34.112555200747195], [-118.65179846448977, 34.110583045068054], [-118.6515009000933, 34.11009477541991], [-118.65025727588143, 34.10905353298402], [-118.65024909205688, 34.1048699588269], [-118.65047076561636, 34.103854066089006], [-118.65044784350646, 34.10240069670721], [-118.64874639431241, 34.100123378770135], [-118.64830387608195, 34.10001657196739], [-118.64729677775435, 34.1003904095606], [-118.64564877241664, 34.099741932899455], [-118.64391683309516, 34.09876158617443], [-118.64296310474714, 34.097422660774484], [-118.64024694914852, 34.09648809393924], [-118.63980442089924, 34.095942606666135], [-118.63962129852507, 34.09539330342545], [-118.63912536379783, 34.09488977678234], [-118.63814876712672, 34.09446254522686], [-118.63602768459872, 34.09194872603298], [-118.63719494063305, 34.088786403434526], [-118.63740091726791, 34.087794602643704], [-118.63830117074376, 34.0860589482564], [-118.63849952330372, 34.08534561324932], [-118.6383469156412, 34.084597950247854], [-118.63773654000364, 34.084258452814105], [-118.63681336388498, 34.084418672762986], [-118.6362945470571, 34.08423175899757], [-118.63572231268239, 34.08352987407452], [-118.63488304834713, 34.08310264169285], [-118.63456257068711, 34.081553910958], [-118.63344863686878, 34.080962652306425], [-118.63337233700504, 34.08077573720824], [-118.63324259228496, 34.07890276182482], [-118.63282294305723, 34.07793003796994], [-118.63254827357694, 34.077750753549395], [-118.63072481241595, 34.07824666428433], [-118.63001525224374, 34.07788046636002], [-118.62977109216978, 34.07725105675113], [-118.62906152943776, 34.0767971220853], [-118.6289699595722, 34.076148638254324], [-118.62873343529523, 34.075812954705206], [-118.62890126977922, 34.07505766024675], [-118.62880207849116, 34.07479445195646], [-118.62855792864727, 34.07466094247816], [-118.62752030544546, 34.07468383644721], [-118.62674971154482, 34.07443589221415], [-118.62388098942748, 34.07464189955389], [-118.62320958077852, 34.074428285935895], [-118.62192015477288, 34.07327246736539], [-118.62156918105188, 34.07272316559453], [-118.62134026995768, 34.07167033412169], [-118.61966937524133, 34.07103712039528], [-118.61895982603612, 34.07112486093532], [-118.61858597268193, 34.071006610087935], [-118.61780010917708, 34.07026276632473], [-118.61766274987798, 34.069072609036645], [-118.61802895705455, 34.068523302345234], [-118.6175406415846, 34.06754295105894], [-118.61714386222472, 34.065731014081614], [-118.61645717359673, 34.06455611898255], [-118.61665553611729, 34.064247134177506], [-118.61681572461389, 34.062778507669684], [-118.61750236227648, 34.06167226556288], [-118.61754811843137, 34.06070716878385], [-118.61686906620812, 34.0598832177297], [-118.61696824468787, 34.0595856774226], [-118.61679275666508, 34.05926906604175], [-118.61621290535794, 34.05914700347119], [-118.61590008682566, 34.05890287062284], [-118.6156101497249, 34.05833831062431], [-118.61390874812719, 34.05817429504756], [-118.61341281487948, 34.05775469127182], [-118.61230652425154, 34.05775088513277], [-118.6098498053315, 34.05813236398256], [-118.60936913968361, 34.05806370442283], [-118.60706494487059, 34.05543545679007], [-118.60681315719592, 34.05495863264803], [-118.6048218142155, 34.05405840040738], [-118.60415804361593, 34.054230062818604], [-118.60331117068169, 34.05471452455955], [-118.60276946564643, 34.05455431527332], [-118.60201209870043, 34.054024585652726], [-118.59567163868823, 34.04559803151119], [-118.62545500000026, 34.04586499912413], [-118.62633137747709, 34.04562007922924], [-118.63825947313427, 34.0456325309224], [-118.63878700000025, 34.045739999124166], [-118.63951700000024, 34.04663699912396], [-118.64364881702092, 34.04665635567473], [-118.6540701976362, 34.04748572850905], [-118.6822475718327, 34.04752530189201], [-118.6873456203929, 34.045664642174], [-118.69835983548167, 34.044998393070436], [-118.69847663774374, 34.04478947686182], [-118.69897129691219, 34.044709700638975], [-118.69927013404244, 34.043622814091904], [-118.69903759103488, 34.04237951498047], [-118.69766557091971, 34.040451179321614], [-118.70101438422029, 34.039460611358905], [-118.70224973030973, 34.038760244549124], [-118.70290968044968, 34.03807398427781], [-118.703385580935, 34.03703625835646], [-118.70351067504723, 34.03615633390349], [-118.70335005192813, 34.03473733345708], [-118.70396024946446, 34.03467453187546], [-118.70937943126039, 34.034301495815676], [-118.70908600000026, 34.035679999124255], [-118.70869400000024, 34.03601499912431], [-118.70881817375007, 34.03676640614678], [-118.7109136097173, 34.03866389628701], [-118.71191470087106, 34.03926259919578], [-118.71293200000025, 34.04097399912425], [-118.71382700000025, 34.04069999912423], [-118.71451500000023, 34.042022999124256], [-118.71537800000023, 34.04143899912431], [-118.71512500000024, 34.04111199912423], [-118.71550100000039, 34.041359999124175], [-118.71590600000016, 34.041033999124174], [-118.7155190000003, 34.03931899912427], [-118.71601500000025, 34.03861899912426], [-118.71522353822328, 34.037515056512426], [-118.71570244844193, 34.03693337564995], [-118.71510920757949, 34.03604573450447], [-118.71417619873569, 34.03542728269739], [-118.71439600000026, 34.035405999124265], [-118.71802300000013, 34.03708299912417], [-118.7183906282378, 34.03922168600848], [-118.71833806742893, 34.040347138173146], [-118.7193128327079, 34.04218739173226], [-118.71958888341723, 34.04371365135578], [-118.72058400000023, 34.043734999124204], [-118.73345100000031, 34.04289399912421], [-118.74029500000029, 34.04290599912415], [-118.74159500199342, 34.04276907460502], [-118.74867934743578, 34.04267237002942], [-118.7557940000003, 34.0427379991242], [-118.78022307642809, 34.04223617181106], [-118.79070524289925, 34.03920611996027], [-118.79462000000025, 34.038336999124176], [-118.79424257244469, 34.03812571949048], [-118.79413799052085, 34.037391840273635], [-118.79316938215261, 34.03663278429422], [-118.79322280133431, 34.036269657232765], [-118.79958032122724, 34.03746569303747], [-118.7992728450805, 34.03780716626862], [-118.79838900000036, 34.037629999124235], [-118.79783400000034, 34.03826399912417], [-118.7981764031123, 34.038305058169755], [-118.798114925973, 34.03840909376656], [-118.81842878835815, 34.03993786523514], [-118.84613659253725, 34.04447555463992], [-118.8588750307123, 34.048549685105826], [-118.8593127280271, 34.04672228521411], [-118.86068245181532, 34.04767148327074], [-118.8611802546422, 34.04576851371293], [-118.86157174386757, 34.0456718803083], [-118.8615655661241, 34.04284410658416], [-118.86927576759224, 34.04283307171072], [-118.8692190000003, 34.04871299912403], [-118.8697120830481, 34.04873930588039], [-118.86971544875112, 34.04913058792276], [-118.86993378001306, 34.049130219734735], [-118.86981800000014, 34.05182999912407], [-118.8705862552878, 34.05206845124183], [-118.8705877894078, 34.05230408041802], [-118.91769600000019, 34.067374999123835], [-118.91845400000024, 34.06524199912385], [-118.91977600000013, 34.063102999123885], [-118.91973900000029, 34.055980999124024], [-118.92408300000028, 34.04691299912412], [-118.92377428960246, 34.04565333661199], [-118.92582799805568, 34.04607300278884], [-118.93074501812309, 34.04581399350351], [-118.9325299882683, 34.04536600161545], [-118.93406000025865, 34.043884024457135], [-118.9361900004453, 34.043586976635545], [-118.9369479827273, 34.043317024036924], [-118.93756401760882, 34.04337600218209], [-118.94486418867146, 34.04553445340273], [-118.94328100000027, 34.05770299912412], [-118.94196900000034, 34.065622999123775], [-118.94080100000023, 34.07496699912387], [-118.92160200000045, 34.08686999912359], [-118.92088100000035, 34.08781399912363], [-118.9073160000004, 34.09623699912346], [-118.89580800000026, 34.10333399912339], [-118.89222400000024, 34.1050939991234], [-118.87366100000027, 34.11706099912325], [-118.85658000000026, 34.1271549991232], [-118.85615500000027, 34.126135999123164], [-118.85616100000018, 34.12540899912313], [-118.85573100000029, 34.12461199912318], [-118.85619100000025, 34.123549999123185], [-118.85488100000026, 34.12253499912321], [-118.85463000000028, 34.12173999912312], [-118.85324067874598, 34.120969663395584], [-118.85253200000024, 34.11999099912328], [-118.85198933483589, 34.1198863634804], [-118.85106893366437, 34.11876794179958], [-118.85079504737296, 34.117841167804315], [-118.85098406187677, 34.1175126394916], [-118.8507281350947, 34.117107135558086], [-118.85068750480865, 34.116666372141495], [-118.85115323884885, 34.116449878921976], [-118.85132000000026, 34.11614999912329], [-118.85171300000023, 34.11610599912326], [-118.85204542966189, 34.11581999871595], [-118.8520920000002, 34.115092999123306], [-118.85305498241821, 34.11472649280289], [-118.85288100000037, 34.1142539991233], [-118.85234255036691, 34.114198040460735], [-118.85207000000024, 34.11395499912334], [-118.85199971563408, 34.113137011638194], [-118.85367729857765, 34.112901215546344], [-118.85394821517528, 34.112578828633346], [-118.85392100000037, 34.11180099912327], [-118.85294200000025, 34.111399999123336], [-118.85285000000017, 34.11119499912331], [-118.8476710000002, 34.11018699912344], [-118.83622500000027, 34.11702999912325], [-118.80481900000022, 34.13388999912308], [-118.80035900000026, 34.13837899912304], [-118.78703700000024, 34.134352999122974], [-118.77146900000021, 34.133451999123096], [-118.75938900000018, 34.13918899912296], [-118.75597600000025, 34.140989999123036], [-118.74118600000018, 34.13361599912307]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Santa Monica Mountains", "population": 0.186219739292365, "cases": 13.0, "resource_uri": "/1.0/boundary/unincorporated-santa-monica-mountains-la-county-neighborhood-current/", "external_id": "unincorporated-santa-monica-mountains", "slug": "unincorporated-santa-monica-mountains-la-county-neighborhood-current", "metadata": {"sqmi": 89.2560828786, "type": "unincorporated-area", "name": "Unincorporated Santa Monica Mountains", "slug": "unincorporated-santa-monica-mountains"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.67769005840617, 34.471812131816804], [-118.67769709755888, 34.470736837946326], [-118.67121214067002, 34.47080969741618], [-118.67122898334952, 34.468997581421846], [-118.66906852215399, 34.46901998060905], [-118.66908699583473, 34.4672068939763], [-118.67340568136001, 34.46716388226601], [-118.67253142135397, 34.46005280788178], [-118.65947649225009, 34.46010076905189], [-118.65888752891233, 34.45604677024565], [-118.6582321916466, 34.45635839448702], [-118.658035865673, 34.456672774781765], [-118.65796504908788, 34.45709380822153], [-118.65820351348903, 34.45742229082788], [-118.65773543574215, 34.45765873020154], [-118.65763712029666, 34.4584458508854], [-118.65701820792802, 34.45927742165834], [-118.65708843407708, 34.46007956657431], [-118.6497463011086, 34.460023006837034], [-118.6497416093069, 34.459430144268595], [-118.64887010805842, 34.459456488529355], [-118.64748039561744, 34.459071236284686], [-118.64534579344603, 34.45817678831018], [-118.64527559644658, 34.45803135810372], [-118.64262106997685, 34.457278284802626], [-118.63846569097105, 34.45735789806663], [-118.63697477858794, 34.45708729610944], [-118.6351936768922, 34.4563211399446], [-118.63142387062719, 34.45329295298414], [-118.62987291448665, 34.452493927782605], [-118.62572056332134, 34.451162510574775], [-118.6241886215053, 34.45278586839911], [-118.62378862424988, 34.452231250850936], [-118.62355410607178, 34.448343161475805], [-118.62140745718331, 34.44693634011492], [-118.61883020615502, 34.447680343867454], [-118.61870552933654, 34.449061194186086], [-118.61785542506973, 34.44999071689171], [-118.61687539853617, 34.45148357711035], [-118.61335209725377, 34.44962024968175], [-118.61345287894437, 34.44957175119676], [-118.61118210732415, 34.44664117377067], [-118.60925496542136, 34.44506263072438], [-118.59905031345231, 34.43973044936529], [-118.5967892926463, 34.43824641261362], [-118.58800913529728, 34.430823932087016], [-118.58663444802079, 34.42916706976651], [-118.5852204656334, 34.426539097056576], [-118.58495210234206, 34.426690050837], [-118.57923800010832, 34.41563699978302], [-118.57784499979435, 34.412002999847765], [-118.57647899986033, 34.40909599983182], [-118.57653199981745, 34.40825699992519], [-118.57319026642968, 34.4007401103347], [-118.57267658021463, 34.399317064900316], [-118.57001975471549, 34.388446852154544], [-118.56681020934212, 34.38050946522586], [-118.56006831113983, 34.3698287927797], [-118.55663809530321, 34.3653157143702], [-118.5558460647132, 34.36381795375532], [-118.55535275119608, 34.36235547238813], [-118.55641999986082, 34.3609859997828], [-118.55659200020979, 34.359219999904994], [-118.55914000004384, 34.359325000090244], [-118.55907099998906, 34.358791000000416], [-118.55976899989348, 34.35837799986455], [-118.55974499984458, 34.35756199993576], [-118.56000100025008, 34.35758299987633], [-118.55989699997083, 34.35822400018284], [-118.56021999986018, 34.35920899999651], [-118.56101899985104, 34.35882800003844], [-118.56158099998069, 34.35906199992584], [-118.5616950000943, 34.359375999837056], [-118.56200600000795, 34.3593849998381], [-118.56200800011014, 34.359136999853], [-118.56237799976296, 34.35898599995394], [-118.56383600006686, 34.35891299988344], [-118.56418900002586, 34.358958999997505], [-118.5648579997817, 34.35943299992608], [-118.56541000019676, 34.35940400003858], [-118.56610499994046, 34.35898699979991], [-118.56611600001592, 34.358164999885716], [-118.56673300021627, 34.357739999950795], [-118.56639599983933, 34.3571790001825], [-118.56607299981846, 34.356955000173905], [-118.56560899996695, 34.356902000161284], [-118.56363700008541, 34.35708899995978], [-118.56281400013707, 34.35739100018777], [-118.5620119997577, 34.35728399997037], [-118.5620420000428, 34.35641599983828], [-118.56171699992184, 34.35601299992802], [-118.56072599974091, 34.35581700008998], [-118.56022299982719, 34.35590200016805], [-118.55966600014536, 34.355482000157494], [-118.55922800007772, 34.35587900007964], [-118.55832100022431, 34.356164000137426], [-118.55776399981886, 34.357385000102944], [-118.55688399991652, 34.357701999871566], [-118.55623100008437, 34.358302999899394], [-118.55511899974067, 34.35860800010255], [-118.55506000005806, 34.35843600013377], [-118.5553059998221, 34.358164999857415], [-118.55703199991451, 34.35726100021349], [-118.55773299989596, 34.357064000106654], [-118.55808700012354, 34.35616299997085], [-118.55605000005409, 34.35624200016023], [-118.55428399999474, 34.35677200004702], [-118.55418899995632, 34.35681599985265], [-118.55485900018904, 34.35828400011734], [-118.55500200024325, 34.359278999869325], [-118.55550300005055, 34.36075099987719], [-118.55553400019046, 34.36165499998423], [-118.55523642906202, 34.36197902170152], [-118.55445160998187, 34.359674673855935], [-118.55364278343347, 34.35812786604775], [-118.55180506824384, 34.356174330178455], [-118.55150389046814, 34.35617157556092], [-118.54814518371678, 34.353130295692814], [-118.54707443640844, 34.35234302042537], [-118.54535349717447, 34.35146396106571], [-118.54287678763204, 34.35054996809143], [-118.54140800021919, 34.3506439997871], [-118.53404200023698, 34.35358900013423], [-118.5333899998765, 34.353100999889996], [-118.53341199999835, 34.352405999978515], [-118.53149800002666, 34.35244900005076], [-118.52903500019828, 34.35175000002553], [-118.52326000002303, 34.35174499985094], [-118.52027599979148, 34.35060899980467], [-118.52036000015693, 34.34692900006684], [-118.51602700010986, 34.34697099979392], [-118.51605300025183, 34.34394200000271], [-118.5108009997406, 34.3440380001975], [-118.51062099995542, 34.340500000069525], [-118.50650700007397, 34.3404980000408], [-118.50611356963583, 34.34109589797693], [-118.5040379731292, 34.33713365225268], [-118.5340110001177, 34.31453100018313], [-118.54629599982074, 34.31733199982492], [-118.5455109999159, 34.315658000051705], [-118.54709700021512, 34.31335100005215], [-118.54367199982556, 34.30571499989224], [-118.54429599975566, 34.30393999988093], [-118.54333499977459, 34.303257999858694], [-118.5425930001024, 34.30136100009292], [-118.54155699980896, 34.30021999984168], [-118.54082100023231, 34.29881399977428], [-118.54670100003631, 34.29786700010849], [-118.54980399981245, 34.29696700010314], [-118.5540340001051, 34.29641400019858], [-118.55442999982746, 34.296567000185924], [-118.55479200008057, 34.29712400013301], [-118.55739099993525, 34.29924300016086], [-118.55976699997065, 34.29919200020623], [-118.56209599987638, 34.29879000000136], [-118.56354999988993, 34.29784700000487], [-118.56446699986077, 34.296888000089815], [-118.56608700004055, 34.29581800009554], [-118.56636700008328, 34.29542699981592], [-118.56742000026672, 34.294953000060936], [-118.56774099986009, 34.295074000144844], [-118.56870800014717, 34.29463900018276], [-118.57014599990377, 34.29535500003947], [-118.57015900015871, 34.29580399992249], [-118.57101699998088, 34.29693099991339], [-118.57157899989622, 34.297950000203905], [-118.57176199992774, 34.29861900010883], [-118.58509099992004, 34.30347800007801], [-118.58687799990349, 34.30314999982445], [-118.58853300000136, 34.30321900002337], [-118.5909380001944, 34.29766999998286], [-118.59118000012289, 34.29179700014702], [-118.59163599984971, 34.287704000105634], [-118.59196700022083, 34.28685400018881], [-118.59176399992984, 34.2855730001037], [-118.5912720002527, 34.28383399987485], [-118.59108600000245, 34.28364099988801], [-118.59101399979673, 34.28243699997261], [-118.59217000012943, 34.28235700004404], [-118.59190899992932, 34.280627000114116], [-118.59169900025283, 34.28022999978571], [-118.59199700016843, 34.2791850001628], [-118.59257199980449, 34.27803700012582], [-118.5937230000748, 34.277184000009036], [-118.5962079999326, 34.27452100011493], [-118.60433900013648, 34.277522999796], [-118.60598400014099, 34.27778299999263], [-118.607336000235, 34.27774399977656], [-118.62257099974596, 34.27564200018093], [-118.62521199988592, 34.27503300019452], [-118.62686299999669, 34.274379000077396], [-118.62874600009441, 34.27330400019379], [-118.6332486404083, 34.269683057913596], [-118.63229897780455, 34.2635669886004], [-118.63251000497885, 34.25826900466276], [-118.6325392746312, 34.24202837666157], [-118.63264899947872, 34.24838700008421], [-118.63254800023445, 34.2634290004012], [-118.63377400011827, 34.27222599976658], [-118.63676199967256, 34.28464099976251], [-118.63660200012845, 34.29172900039639], [-118.64750499986658, 34.31424300016305], [-118.66872900042736, 34.35723099985926], [-118.6930350004522, 34.407292000284464], [-118.70388299951138, 34.42997900044146], [-118.72956297831763, 34.481221980989865], [-118.68655032665633, 34.481659396482286], [-118.68599310462095, 34.481452058241345], [-118.68604084918779, 34.474466572816844], [-118.67768361164319, 34.47435823979188], [-118.67769005840617, 34.471812131816804]], [[-118.67829911778722, 34.45295937836254], [-118.68083991827872, 34.45295776212812], [-118.68079463119997, 34.45202369906569], [-118.68271528812286, 34.451448129482614], [-118.68271567695221, 34.44932696016794], [-118.68121851037807, 34.44922265589204], [-118.67951488614187, 34.4495241744022], [-118.67609206073406, 34.44890380137217], [-118.67609868079846, 34.44566639693035], [-118.66206063650996, 34.445585008682514], [-118.66160654269336, 34.445283978633256], [-118.65853180514134, 34.44480578087219], [-118.65861862080752, 34.438252429127466], [-118.65423014468277, 34.43823918716408], [-118.65415756594949, 34.4438239573023], [-118.65134300507385, 34.4430536383674], [-118.65082117269853, 34.4443065161404], [-118.65089604459322, 34.4445920890588], [-118.64971690058829, 34.44457312806469], [-118.64957927077133, 34.444937358616784], [-118.64881464141808, 34.44453561178491], [-118.648592084042, 34.4453370734509], [-118.64966945099022, 34.44563797611692], [-118.64914169238503, 34.44642101326292], [-118.64951709253738, 34.44658489515767], [-118.64887164648471, 34.44760730006416], [-118.65103054959843, 34.4484109284871], [-118.65182239116209, 34.448172637835725], [-118.65192616657747, 34.448429256847184], [-118.65557880453207, 34.448060271720536], [-118.65593425645831, 34.44646094054721], [-118.65755168636365, 34.44661789206367], [-118.6569590249441, 34.44854395795133], [-118.65848189692795, 34.44859082590281], [-118.65842504843839, 34.452870393386235], [-118.6672509713959, 34.45290354687472], [-118.66728046262169, 34.449261115501635], [-118.67083792399356, 34.44926977524144], [-118.67522867312739, 34.44931906469148], [-118.67521545492806, 34.45159550585117], [-118.67607788493682, 34.451598617369896], [-118.67606930129506, 34.45296418381609], [-118.67829911778722, 34.45295937836254]], [[-118.59693929693111, 34.40732694623283], [-118.59757938049118, 34.406893801978114], [-118.59277127796817, 34.40404968726333], [-118.5925671685505, 34.404099824179056], [-118.59223464267981, 34.403440131120256], [-118.59170096520964, 34.4035787623357], [-118.59150831785676, 34.403297597531186], [-118.58816713888662, 34.4013065331524], [-118.58543796455992, 34.396797460571285], [-118.58655672122251, 34.39632831835698], [-118.58684024050048, 34.396632705215765], [-118.58758289913791, 34.396416860724585], [-118.58805840993517, 34.39663433337033], [-118.58808185272133, 34.39643782700395], [-118.58846465891253, 34.39614579162974], [-118.58885224593665, 34.39607078783417], [-118.58959921811604, 34.396447055958205], [-118.59037590546109, 34.3962393825358], [-118.59038497615435, 34.39649497587777], [-118.59057111065142, 34.39621875673348], [-118.59111899631309, 34.396160882105335], [-118.59141339437832, 34.396230342021624], [-118.59203317908243, 34.396755217948574], [-118.59349848997391, 34.39572448774438], [-118.59396830608938, 34.39598318363951], [-118.59515854961545, 34.394953725241734], [-118.59637699612414, 34.39609020769107], [-118.59711952907213, 34.3956412907726], [-118.59727935904745, 34.395816719149394], [-118.59805905913814, 34.39601388476887], [-118.59812891510316, 34.39632452078975], [-118.59906997072294, 34.39609861427826], [-118.59960506530395, 34.39622193294096], [-118.5996235490632, 34.39588827369815], [-118.60001519172971, 34.395650785982944], [-118.5997868279493, 34.3953195839316], [-118.60034774635442, 34.394528021862804], [-118.60168005927719, 34.3937914087659], [-118.60311705078172, 34.39372620680847], [-118.60391162469237, 34.393414898195545], [-118.60465509843428, 34.39298771329362], [-118.60513405198799, 34.391948519309125], [-118.6056451700131, 34.392060959265216], [-118.60556355179186, 34.39007130541364], [-118.60496202861597, 34.3901399548726], [-118.60443746858677, 34.39064667480912], [-118.60379796315794, 34.390188514501425], [-118.60433024186274, 34.389760789203244], [-118.60408040105709, 34.38962670004276], [-118.60422459160327, 34.38885428725227], [-118.60453385262885, 34.38838375959519], [-118.60435114806654, 34.38799534733238], [-118.60407430286658, 34.38823224955621], [-118.60383383792548, 34.388179204244416], [-118.60356795601975, 34.38795311126835], [-118.60362746935837, 34.38737872165113], [-118.60257421495716, 34.38734667205836], [-118.6009088625023, 34.38476058254837], [-118.6004427608482, 34.3850528062326], [-118.59931981863544, 34.38440621891182], [-118.597287433113, 34.38428160120184], [-118.59607294727908, 34.38397761441486], [-118.5943312982324, 34.382743396605676], [-118.59399336516556, 34.38280940843556], [-118.59388174224344, 34.382610429515566], [-118.5936789564591, 34.38294881048333], [-118.59335848577409, 34.38273516404509], [-118.59308681198556, 34.382764604339165], [-118.59239929453214, 34.383528806016926], [-118.59140195618227, 34.38292880607321], [-118.59019247816167, 34.3826334188853], [-118.5901811387616, 34.3816922063345], [-118.58915902358783, 34.38180148789867], [-118.58911212934991, 34.38163810570622], [-118.58849913563132, 34.38191067995502], [-118.58809365783792, 34.381531265444295], [-118.58747908192608, 34.38133526930874], [-118.58758917037221, 34.38104637034685], [-118.58660379285523, 34.3801306487183], [-118.5855363673524, 34.38003938530297], [-118.5854654407727, 34.379312796443585], [-118.5850239961181, 34.379646132388345], [-118.5841471691019, 34.37950532663797], [-118.58383754681991, 34.379611086475194], [-118.5834721362097, 34.379097999508566], [-118.58614084478728, 34.37754328918782], [-118.58816034206839, 34.3769429557067], [-118.59015816185685, 34.37687499076305], [-118.59154647644138, 34.37710784176537], [-118.59281460785274, 34.377533810704584], [-118.59404745169368, 34.377503539717395], [-118.5939604143744, 34.37062031933152], [-118.59241084948545, 34.37044893042398], [-118.59215897500728, 34.37180422067193], [-118.5916622339331, 34.371910736497334], [-118.59128399059925, 34.37219817272987], [-118.59068816557973, 34.37398941532468], [-118.58994466011755, 34.37460895169922], [-118.58947381299234, 34.374213647465524], [-118.58856014269273, 34.374217784809126], [-118.58816890653166, 34.373706649189415], [-118.58840151446823, 34.37338754364328], [-118.58840941964287, 34.37299983658319], [-118.58782086196695, 34.37289656145893], [-118.58767692946387, 34.37273246725615], [-118.58681560327905, 34.37265573085145], [-118.58648375086962, 34.37315254414623], [-118.58589474594807, 34.37323170337038], [-118.58537154620322, 34.37399498029928], [-118.5845061460102, 34.37351887649931], [-118.58413534514904, 34.373666880437696], [-118.58372342583993, 34.37309238061972], [-118.5831701800443, 34.373769984748556], [-118.58270726304717, 34.37407720069725], [-118.58265533351717, 34.37444250906372], [-118.58287503563368, 34.3745414826133], [-118.58286337586506, 34.37458228477405], [-118.5821473313626, 34.37453991807236], [-118.58214006211585, 34.3746710552355], [-118.58276603668905, 34.37506520220569], [-118.5827413972625, 34.37540422025173], [-118.5819341025249, 34.37538954988912], [-118.58192549946408, 34.37573802547544], [-118.58109862402358, 34.37595283818546], [-118.58118477558315, 34.37880587635719], [-118.5754542264437, 34.37896544408339], [-118.57534972715082, 34.37688206627295], [-118.575026427, 34.37681951952062], [-118.57487841983924, 34.37575370398049], [-118.5750221244258, 34.375004686009206], [-118.57436259915221, 34.37446883846797], [-118.57251693833514, 34.37500401251801], [-118.57251087905304, 34.37457542300561], [-118.57213891189532, 34.37450897657681], [-118.57208402379509, 34.37431984966777], [-118.57055158570311, 34.37467811670347], [-118.57031798194765, 34.37438867974892], [-118.57103748130778, 34.37394491397086], [-118.57050012748834, 34.373173825764624], [-118.57062342424524, 34.37282742220753], [-118.57042216467035, 34.37254201003773], [-118.57117761625702, 34.37192097167708], [-118.57021717456256, 34.37182252910403], [-118.56940867388354, 34.37214005784952], [-118.5689806441693, 34.3719471588509], [-118.56880199221177, 34.37204505270758], [-118.56851480536218, 34.37155513007825], [-118.56823609297281, 34.37142788967259], [-118.56765304670593, 34.37176060431892], [-118.56655454547973, 34.37120850879258], [-118.56596626634351, 34.371157425761275], [-118.56582224746795, 34.371207147340975], [-118.56585450776225, 34.37151209730974], [-118.56562512009725, 34.371527621363285], [-118.56537081620435, 34.3713143616326], [-118.5645302519005, 34.37135243484022], [-118.563812377232, 34.37087706370543], [-118.56353238788049, 34.370883092419625], [-118.56321588225794, 34.371414331582045], [-118.56211392352155, 34.37142991602496], [-118.56214729457609, 34.37183771499605], [-118.56280775205538, 34.372516569942725], [-118.56261930884287, 34.37298675908838], [-118.56279068667354, 34.37325297754543], [-118.56388698872723, 34.372735728202784], [-118.56426114680836, 34.37293700256964], [-118.56434635753075, 34.373192380384296], [-118.56525207315751, 34.37326348073502], [-118.56564700271065, 34.37408293192474], [-118.56553945698154, 34.374438957398354], [-118.56601981915371, 34.37468534615646], [-118.56666877453239, 34.37573610798786], [-118.56838687872, 34.37742442743992], [-118.5680180540356, 34.377844827351126], [-118.56967401723135, 34.378407823917726], [-118.57056237832155, 34.379139809732685], [-118.57093185944511, 34.379900008827875], [-118.57099668498373, 34.38094453848615], [-118.57344727524999, 34.38158279667084], [-118.5755824287125, 34.3816716642757], [-118.57554517541223, 34.38268548117162], [-118.57493979889975, 34.3834835968289], [-118.57398489895425, 34.38396441553702], [-118.57189183179464, 34.3844900061649], [-118.57453298798063, 34.39311871090774], [-118.5748583404144, 34.39351281187567], [-118.57513928500266, 34.39426338811817], [-118.57525960876411, 34.395112358177066], [-118.5751704372149, 34.39778720442472], [-118.57637287143226, 34.4004524552155], [-118.57687820197141, 34.402832647253945], [-118.57752012028281, 34.40395988567252], [-118.57931545915318, 34.405816900059726], [-118.57985368563646, 34.406891105732754], [-118.57999310593652, 34.40830584241144], [-118.57912872369486, 34.41179073784634], [-118.57913147314474, 34.41296844708614], [-118.5801302953008, 34.41555650896936], [-118.58176145572929, 34.417752044317716], [-118.59693929693111, 34.40732694623283]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Santa Susana Mountains", "population": 0.016580310880829015, "cases": 4.0, "resource_uri": "/1.0/boundary/unincorporated-santa-susana-mountains-la-county-neighborhood-current/", "external_id": "unincorporated-santa-susana-mountains", "slug": "unincorporated-santa-susana-mountains-la-county-neighborhood-current", "metadata": {"sqmi": 78.1078688818, "type": "unincorporated-area", "name": "Unincorporated Santa Susana Mountains", "slug": "unincorporated-santa-susana-mountains"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.34716785131948, 34.14217699741412], [-118.34642500000027, 34.14220699912299], [-118.34517238806596, 34.14254730532228], [-118.34503800000033, 34.14244599912284], [-118.3432300000003, 34.13821399912305], [-118.34402800000034, 34.13784899912298], [-118.34442400000025, 34.13680099912304], [-118.3442130000002, 34.13606099912301], [-118.34557600000035, 34.1351089991229], [-118.3458610000003, 34.134676999123016], [-118.34656400000028, 34.13464599912302], [-118.34648900000022, 34.134350999123136], [-118.34671700000023, 34.134192999123115], [-118.34671400000029, 34.13389099912293], [-118.34777400000029, 34.1334649991231], [-118.34746200000022, 34.13314399912311], [-118.34845300000032, 34.132884999122965], [-118.34865700000029, 34.13246399912304], [-118.34840500000026, 34.131987999123005], [-118.34877500000024, 34.131385999123026], [-118.34978700000033, 34.1325359991231], [-118.35068900000036, 34.13318799912318], [-118.35159200000027, 34.134109999122956], [-118.35213600000026, 34.13415899912305], [-118.35860500000031, 34.13949599912293], [-118.36184900000029, 34.138591999123065], [-118.36234200000023, 34.13869599912302], [-118.36095800000032, 34.14113599912307], [-118.36091500000026, 34.14203799912293], [-118.36126700000028, 34.14268599912305], [-118.35764100000031, 34.14333699912293], [-118.35416000000032, 34.14321099912288], [-118.35205100000024, 34.14296399912295], [-118.34843500000028, 34.14226199912308], [-118.34716785131948, 34.14217699741412]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Universal City", "population": null, "cases": null, "resource_uri": "/1.0/boundary/universal-city-la-county-neighborhood-current/", "external_id": "universal-city", "slug": "universal-city-la-county-neighborhood-current", "metadata": {"sqmi": 0.48037127178, "type": "unincorporated-area", "name": "Universal City", "slug": "universal-city"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.282819, 34.01841599912447], [-118.291502, 34.01841599912441], [-118.291508, 34.03681199912407], [-118.28400800000016, 34.03691199912411], [-118.27930700000012, 34.03781199912416], [-118.27410700000011, 34.03541199912403], [-118.274307, 34.02811199912418], [-118.274607, 34.02651199912422], [-118.279743, 34.01846799912429], [-118.282819, 34.01841599912447]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "University Park", "population": 0.274555563182099, "cases": 80.0, "resource_uri": "/1.0/boundary/university-park-la-county-neighborhood-current/", "external_id": "university-park", "slug": "university-park-la-county-neighborhood-current", "metadata": {"sqmi": 1.16714354652, "type": "segment-of-a-city", "name": "University Park", "slug": "university-park"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.93941598571331, 34.05213500435225], [-117.93944798578822, 34.05079400077538], [-117.93818798578016, 34.0507890041078], [-117.93818998579297, 34.05049300075152], [-117.93360499281195, 34.05045300443737], [-117.93359399286588, 34.05081900335977], [-117.93428098580216, 34.0508260007028], [-117.93427598580224, 34.05125100026492], [-117.92991998582403, 34.051380003865084], [-117.92989398576782, 34.05041200413366], [-117.93344498580056, 34.05045099984289], [-117.93345298578731, 34.04866300076235], [-117.92932298570145, 34.048656002907066], [-117.92562999300543, 34.04889800254224], [-117.92553998578234, 34.05210000037397], [-117.9208559857804, 34.05221200405293], [-117.92096598581969, 34.05091800060256], [-117.91684398557506, 34.05080900331497], [-117.91270098584839, 34.05108900358735], [-117.91268998578163, 34.05026200401947], [-117.91466798581517, 34.050269999740884], [-117.9146889715426, 34.048911005720925], [-117.91489698576022, 34.04883200003931], [-117.91489398579395, 34.048072000682694], [-117.91410898574897, 34.04806200416116], [-117.91413798552752, 34.04733200171143], [-117.91536198573833, 34.047323999810644], [-117.91534998390928, 34.04686000001106], [-117.91580798769351, 34.046506005142554], [-117.91939998588164, 34.045828001969156], [-117.91979597155107, 34.04489500571686], [-117.92028498718749, 34.04446600466566], [-117.92283698588525, 34.04407999904313], [-117.92278997155583, 34.04286300571498], [-117.92231600000018, 34.04204399912414], [-117.92423899280143, 34.04404400357698], [-117.92567898590629, 34.04412899916352], [-117.92579697156017, 34.0426280057153], [-117.92652697156186, 34.040535005712805], [-117.92661797156242, 34.03904500571089], [-117.92623197156267, 34.037137005708416], [-117.92630398590505, 34.035716000352075], [-117.92010498611388, 34.0352850017636], [-117.91890497155322, 34.03497100570399], [-117.91753997155165, 34.03423400570267], [-117.91500997154911, 34.03092300569772], [-117.9156819715506, 34.0295660056962], [-117.91758899040175, 34.024680004666656], [-117.92277598567365, 34.025222002042824], [-117.93240598570979, 34.02782800314707], [-117.93551598585613, 34.028006000519575], [-117.93469500000027, 34.03359399912428], [-117.9346019929601, 34.036164002907206], [-117.94080599065167, 34.03652999944682], [-117.94031799273792, 34.04152600379228], [-117.94283298592644, 34.041670000325944], [-117.94281499272364, 34.04182700383583], [-117.94332998590748, 34.0418560003792], [-117.9433169924782, 34.04202600441958], [-117.94425898616883, 34.04213399877005], [-117.94429498552591, 34.041763005545555], [-117.94499698592433, 34.04180700033582], [-117.94499399258959, 34.04286800418001], [-117.945880986087, 34.042947999014196], [-117.9459219856464, 34.042456004983606], [-117.94687398630464, 34.0424639998634], [-117.947029985118, 34.041935005537404], [-117.94769798593043, 34.04197800032461], [-117.94734699264785, 34.04555600404362], [-117.94801498595314, 34.045606999147935], [-117.94802798581289, 34.04522800399322], [-117.94864498577782, 34.04522100085501], [-117.94890100000023, 34.04580999912413], [-117.94861300000032, 34.04623999912413], [-117.94205898774639, 34.05222499966944], [-117.93941598571331, 34.05213500435225]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Valinda", "population": 0.2337013457974051, "cases": 29.0, "resource_uri": "/1.0/boundary/valinda-la-county-neighborhood-current/", "external_id": "valinda", "slug": "valinda-la-county-neighborhood-current", "metadata": {"sqmi": 2.00667989076, "type": "unincorporated-area", "name": "Valinda", "slug": "valinda"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.41821400000012, 34.20530399912217], [-118.413927, 34.20449499912204], [-118.413926, 34.20469399912215], [-118.4046, 34.20285399912205], [-118.4038050000001, 34.201091999122134], [-118.403408, 34.199693999122104], [-118.40182600000014, 34.18747899912215], [-118.401504, 34.18641999912236], [-118.400999, 34.18571699912221], [-118.39705100000012, 34.181929999122275], [-118.396153, 34.18086699912234], [-118.3951700000001, 34.17930299912229], [-118.393759, 34.176096999122436], [-118.39251800000014, 34.174307999122405], [-118.39167300000013, 34.17358799912236], [-118.38881300000011, 34.17210499912248], [-118.440114, 34.172004999122436], [-118.44022100000011, 34.18659999912239], [-118.440115, 34.19390399912216], [-118.43141500000013, 34.19390399912216], [-118.43141500000013, 34.201103999122054], [-118.426792, 34.201116999122036], [-118.427515, 34.20570399912203], [-118.42731500000016, 34.20700399912202], [-118.41821400000012, 34.20530399912217]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Valley Glen", "population": 0.3001569001978307, "cases": 88.0, "resource_uri": "/1.0/boundary/valley-glen-la-county-neighborhood-current/", "external_id": "valley-glen", "slug": "valley-glen-la-county-neighborhood-current", "metadata": {"sqmi": 4.80554447147, "type": "segment-of-a-city", "name": "Valley Glen", "slug": "valley-glen"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.3899100000001, 34.1721059991225], [-118.38881300000011, 34.17210499912248], [-118.38687000000012, 34.17103999912247], [-118.38497, 34.16944799912243], [-118.384052, 34.16835099912248], [-118.378982, 34.15675099912264], [-118.378247, 34.15460599912273], [-118.39854600000011, 34.1546069991227], [-118.399294, 34.15471699912276], [-118.4017780000001, 34.15620399912274], [-118.403123, 34.15664099912261], [-118.413808, 34.15667699912267], [-118.413922, 34.169681999122496], [-118.4141570000001, 34.17131899912242], [-118.41404500000012, 34.171685999122396], [-118.413666, 34.17200299912243], [-118.3899100000001, 34.1721059991225]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Valley Village", "population": 0.24720241905224358, "cases": 112.0, "resource_uri": "/1.0/boundary/valley-village-la-county-neighborhood-current/", "external_id": "valley-village", "slug": "valley-village-la-county-neighborhood-current", "metadata": {"sqmi": 2.08539977324, "type": "segment-of-a-city", "name": "Valley Village", "slug": "valley-village"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.67606930129506, 34.45296418293553], [-118.67607788493682, 34.451598616489356], [-118.67521545492806, 34.451595504970626], [-118.67522867312739, 34.44931906381097], [-118.67083792399356, 34.44926977436092], [-118.66728046262169, 34.44926111462112], [-118.6672509713959, 34.45290354599416], [-118.65842504843839, 34.45287039250567], [-118.65848189692795, 34.4485908250223], [-118.6569590249441, 34.44854395707083], [-118.65755168636365, 34.446617891183195], [-118.65593425645831, 34.44646093966672], [-118.65557880453207, 34.44806027084005], [-118.65192616657747, 34.44842925596668], [-118.65182239116209, 34.44817263695523], [-118.65103054959843, 34.448410927606595], [-118.64887164648471, 34.44760729918367], [-118.64951709253738, 34.44658489427718], [-118.64914169238503, 34.446421012382444], [-118.64966945099022, 34.44563797523645], [-118.648592084042, 34.44533707257044], [-118.64881464141808, 34.44453561090446], [-118.64957927077133, 34.44493735773632], [-118.64971690058829, 34.44457312718423], [-118.65089604459322, 34.44459208817835], [-118.65082117269853, 34.444306515259946], [-118.65134300507385, 34.44305363748696], [-118.65415756594949, 34.44382395642184], [-118.65423014468277, 34.43823918628371], [-118.65861862080752, 34.43825242824708], [-118.65853180514134, 34.44480577999173], [-118.66160654269336, 34.445283977752794], [-118.66206063650996, 34.44558500780204], [-118.67609868079846, 34.44566639604988], [-118.67609206073406, 34.448903800491664], [-118.67951488614187, 34.44952417352169], [-118.68121851037807, 34.449222655011525], [-118.68271567695221, 34.44932695928742], [-118.68271528812286, 34.45144812860208], [-118.68079463119997, 34.45202369818515], [-118.68083991827872, 34.45295776124757], [-118.67606930129506, 34.45296418293553]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Val Verde", "population": 0.03309010690649924, "cases": 39.0, "resource_uri": "/1.0/boundary/val-verde-la-county-neighborhood-current/", "external_id": "val-verde", "slug": "val-verde-la-county-neighborhood-current", "metadata": {"sqmi": 0.729575618561, "type": "unincorporated-area", "name": "Val Verde", "slug": "val-verde"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.47303100000015, 34.22110599912199], [-118.467616, 34.22110299912187], [-118.4663160000001, 34.217403999121956], [-118.46611600000016, 34.21540399912202], [-118.466216, 34.214903999121866], [-118.448916, 34.21170399912189], [-118.427215, 34.20730399912194], [-118.427515, 34.20570399912203], [-118.426792, 34.201116999122036], [-118.43141500000013, 34.201103999122054], [-118.43141500000013, 34.19390399912216], [-118.440115, 34.19390399912216], [-118.44022100000011, 34.18659999912239], [-118.440114, 34.172004999122436], [-118.46761500000011, 34.1719049991225], [-118.46765300000013, 34.175204999122364], [-118.467833, 34.17641899912238], [-118.46828200000014, 34.1775929991223], [-118.46956600000016, 34.17923799912231], [-118.466115, 34.17910499912237], [-118.466216, 34.18040499912237], [-118.470116, 34.18110499912245], [-118.474716, 34.18580499912218], [-118.483716, 34.18620399912227], [-118.483716, 34.18660399912227], [-118.49034800000013, 34.18643299912223], [-118.4903170000001, 34.193803999122224], [-118.49251700000012, 34.19380399912225], [-118.49251700000012, 34.201103999122054], [-118.494717, 34.201103999122054], [-118.49461700000013, 34.20830399912203], [-118.50101700000015, 34.20830399912206], [-118.501117, 34.211903999121915], [-118.50091700000011, 34.21270399912196], [-118.5010180000001, 34.21540399912202], [-118.50091800000011, 34.22090299912183], [-118.498718, 34.22070299912187], [-118.495317, 34.220002999121945], [-118.49281600000016, 34.221088999121896], [-118.47303100000015, 34.22110599912199]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Van Nuys", "population": 0.9319419833300518, "cases": 284.0, "resource_uri": "/1.0/boundary/van-nuys-la-county-neighborhood-current/", "external_id": "van-nuys", "slug": "van-nuys-la-county-neighborhood-current", "metadata": {"sqmi": 8.99090891865, "type": "segment-of-a-city", "name": "Van Nuys", "slug": "van-nuys"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.45181100000016, 33.96451099912501], [-118.4535882744398, 33.963782919328175], [-118.45181753214935, 33.96451950881536], [-118.45181100000016, 33.96451099912501]]], [[[-118.45601985035636, 34.00987941955189], [-118.44435733428358, 33.99462071443707], [-118.44471300000014, 33.9943749991247], [-118.448472, 33.99335899912476], [-118.44709980248842, 33.99061682183064], [-118.447211, 33.990810999124754], [-118.447811, 33.99051099912464], [-118.4427110000001, 33.98491099912471], [-118.44172493157204, 33.98340610119114], [-118.44830198598075, 33.98466100258486], [-118.4550509822593, 33.9864160007448], [-118.46347998122062, 33.98104900637726], [-118.46197498616255, 33.979366002441445], [-118.4617999768482, 33.978275004348625], [-118.46142099552688, 33.97835699898733], [-118.45760197898144, 33.9737210075143], [-118.45747799406895, 33.97378599553219], [-118.45494198269884, 33.970400003262306], [-118.45453199079469, 33.96983899849161], [-118.45476098071725, 33.96967500853244], [-118.45302444777757, 33.96679519917484], [-118.45662002439589, 33.9649909956888], [-118.4619310037422, 33.96266701475156], [-118.46199398040572, 33.962824009207814], [-118.45965700428397, 33.9638330037385], [-118.4596320135444, 33.965803010580245], [-118.46063800918648, 33.968626017125914], [-118.46358402278287, 33.97307200121304], [-118.46789000611646, 33.97844301094603], [-118.4750289922919, 33.984029993280316], [-118.47566002161724, 33.984434001466866], [-118.47658099613291, 33.98459099592305], [-118.47738101546938, 33.98546898636687], [-118.47920602340982, 33.98805497547786], [-118.48118397467609, 33.990132994926284], [-118.48190602290533, 33.99135101726337], [-118.48396646263481, 33.99346275589131], [-118.481452, 33.993160999124704], [-118.483344, 33.995509999124735], [-118.482025, 33.99636499912467], [-118.48173700000017, 33.99644899912465], [-118.481411, 33.9963099991247], [-118.4799170000001, 33.99735299912469], [-118.457844, 34.00903699912456], [-118.457106, 34.00943399912447], [-118.45698, 34.00965599912454], [-118.45601985035636, 34.00987941955189]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Venice", "population": 0.3824399011140936, "cases": 57.0, "resource_uri": "/1.0/boundary/venice-la-county-neighborhood-current/", "external_id": "venice", "slug": "venice-la-county-neighborhood-current", "metadata": {"sqmi": 3.17076584054, "type": "segment-of-a-city", "name": "Venice", "slug": "venice"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.28070700000016, 33.97461399912485], [-118.280807, 33.95991399912499], [-118.2914070000001, 33.95991399912499], [-118.291419, 33.95940599912514], [-118.300207, 33.959484498530735], [-118.3003070000001, 33.96891399912489], [-118.30020700000011, 33.97451399912481], [-118.28070700000016, 33.97461399912485]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Vermont Knolls", "population": 0.171997585998793, "cases": 57.0, "resource_uri": "/1.0/boundary/vermont-knolls-la-county-neighborhood-current/", "external_id": "vermont-knolls", "slug": "vermont-knolls-la-county-neighborhood-current", "metadata": {"sqmi": 1.14170882157, "type": "segment-of-a-city", "name": "Vermont Knolls", "slug": "vermont-knolls"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.280607, 33.9933139991246], [-118.28040700000011, 33.98591399912475], [-118.28080700000015, 33.979013999124824], [-118.28070700000016, 33.97461399912485], [-118.30020700000011, 33.97451399912481], [-118.30010700000012, 33.9840129991247], [-118.30030800000013, 33.99091299912464], [-118.300208, 33.99311299912467], [-118.28720700000017, 33.993112999124776], [-118.280607, 33.9933139991246]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Vermont-Slauson", "population": null, "cases": null, "resource_uri": "/1.0/boundary/vermont-slauson-la-county-neighborhood-current/", "external_id": "vermont-slauson", "slug": "vermont-slauson-la-county-neighborhood-current", "metadata": {"sqmi": 1.44245256524, "type": "segment-of-a-city", "name": "Vermont-Slauson", "slug": "vermont-slauson"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.2827070000001, 34.011112999124464], [-118.281107, 34.011012999124475], [-118.28120700000012, 34.005512999124456], [-118.280507, 33.99501399912465], [-118.280607, 33.9933139991246], [-118.28720700000017, 33.993112999124776], [-118.317108, 33.9930129991246], [-118.31700800000013, 34.01091199912446], [-118.290007, 34.01081299912435], [-118.2827070000001, 34.011112999124464]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Vermont Square", "population": 0.0765696784073507, "cases": 40.0, "resource_uri": "/1.0/boundary/vermont-square-la-county-neighborhood-current/", "external_id": "vermont-square", "slug": "vermont-square-la-county-neighborhood-current", "metadata": {"sqmi": 2.5443801572, "type": "segment-of-a-city", "name": "Vermont Square", "slug": "vermont-square"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.28260700000011, 33.9599139991251], [-118.280807, 33.95991399912499], [-118.2807070000002, 33.95661399912518], [-118.27930600000012, 33.947213999125104], [-118.27960600000013, 33.94551399912521], [-118.27980600000011, 33.94291399912524], [-118.279848, 33.93494499912537], [-118.281206, 33.92361499912545], [-118.29154756296448, 33.92350208560499], [-118.29159600000014, 33.95940964860969], [-118.291419, 33.95940599912514], [-118.2914070000001, 33.95991399912499], [-118.28260700000011, 33.9599139991251]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Vermont Vista", "population": 0.4990751604048347, "cases": 134.0, "resource_uri": "/1.0/boundary/vermont-vista-la-county-neighborhood-current/", "external_id": "vermont-vista", "slug": "vermont-vista-la-county-neighborhood-current", "metadata": {"sqmi": 1.64553261505, "type": "segment-of-a-city", "name": "Vermont Vista", "slug": "vermont-vista"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.21520600000011, 34.01502299912446], [-118.21269800000022, 34.01429499912442], [-118.21270100000021, 34.01498899912437], [-118.20816600000019, 34.0150059991246], [-118.20704100000019, 34.01277699912454], [-118.20534000000013, 34.012815999124484], [-118.20502600000019, 34.0126259991245], [-118.20505800000016, 34.014373999124516], [-118.20173400000017, 34.01363899912449], [-118.19230900000024, 34.01283699912447], [-118.192531, 34.01138799912436], [-118.1928230000001, 34.01147599912448], [-118.19351400000022, 34.00970699912452], [-118.19088700000013, 34.00862799912465], [-118.18641300000016, 34.007309999124566], [-118.18127300000013, 34.00555999912462], [-118.17428600000025, 34.00133699912469], [-118.17446500000031, 34.0010379991246], [-118.17287200000017, 34.00036299912461], [-118.16715600000022, 33.99862299912464], [-118.16833, 33.99602499912466], [-118.17545500000016, 33.99834699912466], [-118.17653500000016, 33.997831999124706], [-118.17676100000018, 33.99720499912472], [-118.17627500000012, 33.99590599912472], [-118.17746700000018, 33.995409999124696], [-118.17765000000021, 33.99574499912472], [-118.17805100000017, 33.995516999124625], [-118.175433, 33.9927099991246], [-118.17698600000016, 33.99085699912471], [-118.1742640000002, 33.98858599912481], [-118.172557, 33.98645899912484], [-118.17313700000018, 33.986228999124805], [-118.1739590000002, 33.98625199912477], [-118.17394100000026, 33.98674899912477], [-118.17513700000022, 33.9868449991248], [-118.17608300000025, 33.98760099912484], [-118.17811100000017, 33.9896559991248], [-118.17799200000019, 33.98993299912474], [-118.18337100000016, 33.99306599912474], [-118.18289800000022, 33.9936719991247], [-118.18430300000011, 33.994453999124765], [-118.18454600000013, 33.99380999912476], [-118.18504600000023, 33.99385399912477], [-118.18498900000013, 33.99435199912476], [-118.19386900000012, 33.99521399912473], [-118.19452500000017, 33.995332999124614], [-118.19450000000033, 33.9957389991247], [-118.2034310000002, 33.99666999912465], [-118.20466100000014, 33.99664599912468], [-118.20450200000029, 33.98894699912477], [-118.20428100000025, 33.98893399912483], [-118.20414400000011, 33.983330999124995], [-118.2126120000002, 33.98419399912497], [-118.21277200000011, 33.989815999124744], [-118.21519800000011, 33.989815999124744], [-118.21522100000026, 33.99161599912476], [-118.22360700000016, 33.99147499912481], [-118.22354800000018, 33.99305299912482], [-118.22375800000022, 33.99386299912476], [-118.22355400000012, 33.99481799912479], [-118.2234970000002, 33.99635799912478], [-118.22381200000018, 33.996354999124684], [-118.22380900000016, 33.99614599912465], [-118.2252100000002, 33.9961079991247], [-118.22520500000013, 33.99569699912477], [-118.22968700000014, 33.99569199912468], [-118.229663, 33.9903339991248], [-118.230273, 33.990342999124714], [-118.23028400000017, 33.98921399912482], [-118.23108600000019, 33.98921299912479], [-118.231092, 33.98960899912478], [-118.23304400000016, 33.989340999125005], [-118.23791800000022, 33.98939299912474], [-118.23953800000014, 34.00804699912452], [-118.239708, 34.01471299912456], [-118.22767300000012, 34.01492099912444], [-118.22750100000023, 34.01528099912446], [-118.22570700000018, 34.01531899912444], [-118.225696, 34.01493699912443], [-118.22369200000016, 34.014941999124524], [-118.22370500000018, 34.015362999124456], [-118.22339500000015, 34.01536899912445], [-118.22323200000014, 34.014940999124484], [-118.21806400000014, 34.014964999124444], [-118.21806900000011, 34.01598499912444], [-118.21520600000011, 34.01502299912446]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Vernon", "population": 0.5364375184400397, "cases": 200.0, "resource_uri": "/1.0/boundary/vernon-la-county-neighborhood-current/", "external_id": "vernon", "slug": "vernon-la-county-neighborhood-current", "metadata": {"sqmi": 5.22380283359, "type": "standalone-city", "name": "Vernon", "slug": "vernon"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.45993100000037, 34.059050999124096], [-118.45878100000022, 34.058072999124], [-118.4551610000003, 34.06024299912384], [-118.45962300000019, 34.065444999123834], [-118.45468100000026, 34.0667989991239], [-118.45453400000021, 34.06591899912388], [-118.45403300000032, 34.065046999123815], [-118.45012800000035, 34.06077899912396], [-118.44562400000035, 34.05529499912391], [-118.44577600000035, 34.05532999912392], [-118.44908700000028, 34.05335099912398], [-118.44831300000025, 34.05245299912401], [-118.44909500000028, 34.05199599912404], [-118.4481750000002, 34.04957799912412], [-118.45222200000033, 34.047059999124116], [-118.45424300000026, 34.04941699912413], [-118.45684100000032, 34.04802399912413], [-118.4679530000002, 34.060909999123936], [-118.46889300000025, 34.06587099912383], [-118.46673100000025, 34.06770799912386], [-118.46533600000018, 34.066988999123836], [-118.46320000000028, 34.06506599912384], [-118.46281400000034, 34.06310899912399], [-118.4611000000004, 34.060045999123886], [-118.45993100000037, 34.059050999124096]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Veterans Administration", "population": null, "cases": null, "resource_uri": "/1.0/boundary/veterans-administration-la-county-neighborhood-current/", "external_id": "veterans-administration", "slug": "veterans-administration-la-county-neighborhood-current", "metadata": {"sqmi": 0.911282077501, "type": "unincorporated-area", "name": "Veterans Administration", "slug": "veterans-administration"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.33380098606962, 34.00450100244285], [-118.33222098606882, 34.0031120024418], [-118.33148498606849, 34.00149200244075], [-118.33162898259425, 33.996333004692104], [-118.33728198884795, 33.99630799966517], [-118.33725398261039, 33.989474004653445], [-118.33775298891584, 33.989466000278], [-118.33775098954713, 33.98898400018706], [-118.33726498259341, 33.98898600470799], [-118.33726598260924, 33.98849100465695], [-118.34247397676423, 33.988453001434955], [-118.34248699539617, 33.98941500342031], [-118.35268098897593, 33.98933499967651], [-118.35268298261089, 33.98305900469518], [-118.36125998590585, 33.983034004046374], [-118.361506972184, 33.98504200574225], [-118.3634729721853, 33.9894990057485], [-118.3635609721842, 33.99294100575306], [-118.36415297218466, 33.99400800575455], [-118.36435197218468, 33.99488800575572], [-118.36558197218568, 33.996843005758606], [-118.36563397218558, 33.997301005759134], [-118.36537497218494, 33.9983390057604], [-118.363143972182, 33.99798400575951], [-118.35993597217794, 33.99683400575712], [-118.35936697217711, 33.996806005757094], [-118.35788797217495, 33.99711200575705], [-118.35688798608686, 33.99783400244143], [-118.3564689860862, 33.999677002442404], [-118.3559359860857, 34.000621002443054], [-118.3542739864423, 34.0018810025311], [-118.35203698817665, 34.004067001525584], [-118.35134898571737, 34.00455300218207], [-118.350515985976, 34.00486700215588], [-118.3495549862484, 34.00497800201248], [-118.34590398596922, 34.00448900269632], [-118.34167898620433, 34.004623002776626], [-118.33822898634992, 34.006301002599955], [-118.33689498561915, 34.00769100232158], [-118.33568798231377, 34.00825800203976], [-118.33523998607028, 34.00654800244434], [-118.33380098606962, 34.00450100244285]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "View Park-Windsor Hills", "population": 0.11634942057988551, "cases": 25.0, "resource_uri": "/1.0/boundary/view-park-windsor-hills-la-county-neighborhood-current/", "external_id": "view-park-windsor-hills", "slug": "view-park-windsor-hills-la-county-neighborhood-current", "metadata": {"sqmi": 1.84197484702, "type": "unincorporated-area", "name": "View Park-Windsor Hills", "slug": "view-park-windsor-hills"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.91882898570273, 34.11430300267614], [-117.91679598577697, 34.11430400406762], [-117.9166789715234, 34.11354000580506], [-117.91691097152467, 34.11068700580154], [-117.91774497152683, 34.10753100579761], [-117.918007985751, 34.107064000847984], [-117.91656098578426, 34.10708600255763], [-117.91654097875195, 34.10827100007278], [-117.91420398571563, 34.10821600430324], [-117.91419098567319, 34.11119900215247], [-117.91530098631512, 34.11087800471339], [-117.91645297851629, 34.11079200243435], [-117.91637597155915, 34.11430800036523], [-117.91602798572472, 34.11430100427781], [-117.91593798736065, 34.11202300471444], [-117.91222398528062, 34.11394400167585], [-117.91127598553406, 34.11426300016059], [-117.9075759855805, 34.11425300468131], [-117.90758098576606, 34.11348000408609], [-117.9111889859012, 34.11351400098343], [-117.91209598640631, 34.11314400383958], [-117.9120899864144, 34.110408999406125], [-117.90979398570333, 34.110297004334804], [-117.909714985892, 34.106848002462584], [-117.91420698584731, 34.10703499949494], [-117.91434498587127, 34.10316800041534], [-117.91139799861038, 34.10318200199751], [-117.91223498611981, 34.10286000339088], [-117.91210798514027, 34.102544001116264], [-117.91657198650815, 34.10041800395455], [-117.91656898575498, 34.09959300082914], [-117.91370398577114, 34.09960900408087], [-117.91372697152465, 34.097462005783704], [-117.91448897152601, 34.09671000578283], [-117.91456998576331, 34.09579400078793], [-117.91434398576325, 34.09579400411706], [-117.91454497152651, 34.09533300578097], [-117.91441298576383, 34.09211900411347], [-117.91657697870495, 34.09213100139603], [-117.91657498574172, 34.092985004209595], [-117.91826498385021, 34.09300899823243], [-117.9192819841308, 34.09214000496957], [-117.9235509857787, 34.09217200075192], [-117.92341599985626, 34.09292400297791], [-117.92540798575963, 34.09293599993737], [-117.92540998567513, 34.089544004452556], [-117.9272949857578, 34.089620999440534], [-117.92719498578504, 34.08646500073848], [-117.92629698576309, 34.08645900072998], [-117.92634898575534, 34.08471300495484], [-117.93432498579438, 34.0848180007222], [-117.93414200000025, 34.08668999912362], [-117.93343300018331, 34.08830700114399], [-117.93606798597159, 34.08828699979134], [-117.93614298569403, 34.08677700441823], [-117.93816398591507, 34.0868839992914], [-117.93821898564242, 34.08516900456862], [-117.94201198592332, 34.085418000329], [-117.94159598603608, 34.0900859993248], [-117.93697499907569, 34.08989600436469], [-117.93689299057513, 34.09180599767852], [-117.93592998492741, 34.0915330037888], [-117.93415899999118, 34.0915160024907], [-117.93416700002638, 34.09307600233724], [-117.93650298576591, 34.09305700084654], [-117.93650199276061, 34.09412400374625], [-117.93684598586498, 34.09413900048254], [-117.93680398586173, 34.09609699977823], [-117.93030399990602, 34.09593900316108], [-117.93020798590898, 34.09826600290268], [-117.92656098553152, 34.09937400158539], [-117.92539300016216, 34.09952800145881], [-117.92536299052647, 34.10696499949426], [-117.92133898576613, 34.107007004129265], [-117.9213209857759, 34.10859400408658], [-117.92456197860214, 34.10856300186365], [-117.9245989785915, 34.11057900052988], [-117.92096398576956, 34.11059800411386], [-117.92079198562466, 34.1138860045942], [-117.92224997180338, 34.11398100156758], [-117.92229697105492, 34.11430800098358], [-117.91882898570273, 34.11430300267614]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Vincent", "population": null, "cases": null, "resource_uri": "/1.0/boundary/vincent-la-county-neighborhood-current/", "external_id": "vincent", "slug": "vincent-la-county-neighborhood-current", "metadata": {"sqmi": 1.47902846141, "type": "unincorporated-area", "name": "Vincent", "slug": "vincent"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.845444, 34.063495999123894], [-117.84347300000017, 34.06033299912393], [-117.84267200000014, 34.059497999123906], [-117.84380800000018, 34.05840299912388], [-117.84085000000019, 34.057188999123916], [-117.8349400000001, 34.05846399912396], [-117.83299800000016, 34.0602629991238], [-117.82607600000021, 34.06280999912388], [-117.82490800000018, 34.06055399912386], [-117.829693, 34.058109999123864], [-117.82902100000027, 34.05695399912397], [-117.834109, 34.05461799912395], [-117.83429800000013, 34.05135599912403], [-117.83419300000018, 34.04071099912418], [-117.82889300000024, 34.04170999912414], [-117.82789300000027, 34.03891499912413], [-117.828817, 34.037100999124185], [-117.8276680000002, 34.03670399912421], [-117.82467400000023, 34.03661499912428], [-117.82503400000012, 34.03414599912427], [-117.82590100000019, 34.03262999912426], [-117.82749300000022, 34.031136999124335], [-117.83468500000016, 34.02784499912427], [-117.83597200000018, 34.026960999124285], [-117.836913, 34.02561099912449], [-117.83841000000028, 34.02190699912425], [-117.839196, 34.020921999124404], [-117.83986400000019, 34.02041099912454], [-117.84172400000014, 34.019272999124425], [-117.845778, 34.017982999124555], [-117.84745600000018, 34.01716899912447], [-117.84933600000015, 34.016020999124386], [-117.85377300000019, 34.01278499912452], [-117.85661200000017, 34.01119599912451], [-117.859372, 34.00940799912452], [-117.86919200000017, 34.00404899912461], [-117.87168500000023, 34.002999999124626], [-117.873938, 34.0045749991245], [-117.87398300000017, 34.00988699912458], [-117.87444800000031, 34.01158699912451], [-117.86939600000017, 34.011632999124494], [-117.86812100000013, 34.01591499912442], [-117.87057100000015, 34.017281999124464], [-117.87481000000015, 34.01398899912447], [-117.87887300000013, 34.0119829991245], [-117.87999300000016, 34.0134099991245], [-117.881587, 34.01300299912452], [-117.8818760000002, 34.013052999124454], [-117.882205, 34.01317899912452], [-117.88265000000015, 34.01384599912456], [-117.88297700000018, 34.01504799912448], [-117.8835280000002, 34.01609599912462], [-117.88666100000013, 34.0151309991243], [-117.88739500000011, 34.016621999124425], [-117.89140200000016, 34.02193599912439], [-117.89431700000016, 34.02476499912441], [-117.89506300000015, 34.02588899912427], [-117.8955780000001, 34.02751499912434], [-117.89167500000013, 34.02832799912437], [-117.88962600000015, 34.02948999912429], [-117.88918900000016, 34.02955599912429], [-117.8900380000001, 34.042442999124106], [-117.88889500000022, 34.04310999912409], [-117.8839940000002, 34.044009999124135], [-117.8757950000002, 34.048991999124], [-117.87179600000016, 34.049054999124024], [-117.86678000000018, 34.047310999124015], [-117.861732, 34.05308999912399], [-117.85295100000013, 34.0532419991239], [-117.854965, 34.058083999123966], [-117.85428100000011, 34.05827899912394], [-117.85390700000016, 34.05812199912391], [-117.853787, 34.057840999124046], [-117.85352600000013, 34.05792899912394], [-117.85331400000011, 34.05809899912395], [-117.85347600000031, 34.058279999123975], [-117.85331400000011, 34.05840899912398], [-117.85320800000012, 34.058308999123916], [-117.85260800000017, 34.05857799912391], [-117.85259400000014, 34.05834399912387], [-117.8519730000002, 34.058875999123885], [-117.85219600000016, 34.05900399912393], [-117.85185500000021, 34.059121999123995], [-117.85205800000018, 34.059542999123856], [-117.85129500000014, 34.05960499912394], [-117.85110200000014, 34.059193999123956], [-117.85134400000021, 34.058704999123954], [-117.85039800000015, 34.05858999912388], [-117.85025700000016, 34.05836199912394], [-117.849516, 34.05836799912397], [-117.84974200000019, 34.058484999123934], [-117.85014700000018, 34.059229999123914], [-117.8488060000002, 34.05918199912396], [-117.84885400000013, 34.05962799912386], [-117.84962600000016, 34.05965599912392], [-117.84956800000019, 34.06003799912394], [-117.85073600000027, 34.059888999123906], [-117.85077400000021, 34.06025899912384], [-117.84860400000014, 34.061020999123954], [-117.84634600000017, 34.060717999123945], [-117.84603700000011, 34.06112199912389], [-117.84530800000016, 34.061053999123956], [-117.84803000000021, 34.06242399912393], [-117.845444, 34.063495999123894]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Walnut", "population": 0.3053232443913448, "cases": 23.0, "resource_uri": "/1.0/boundary/walnut-la-county-neighborhood-current/", "external_id": "walnut", "slug": "walnut-la-county-neighborhood-current", "metadata": {"sqmi": 9.01303061898, "type": "standalone-city", "name": "Walnut", "slug": "walnut"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.21155297198193, 33.96691900568404], [-118.21187799047661, 33.96431100332186], [-118.22412297916655, 33.96541000101665], [-118.22412299262602, 33.96573700429753], [-118.22446297937428, 33.96577300051308], [-118.22451799278865, 33.966307003916754], [-118.22520298606275, 33.96635299924448], [-118.22519998609297, 33.965617003089946], [-118.2258159859687, 33.96553400136425], [-118.22543597200244, 33.9633780056827], [-118.22456397200177, 33.961631005680395], [-118.22290297200027, 33.95921800567681], [-118.22589098564568, 33.95962100233976], [-118.22763798600333, 33.96026300240223], [-118.22914998600432, 33.96108700240294], [-118.2302759720096, 33.96199400568195], [-118.23023298128115, 33.9747450017675], [-118.21754298577571, 33.97341400469901], [-118.21762098624804, 33.97253900004341], [-118.21074698574179, 33.971822004760895], [-118.21155297198193, 33.96691900568404]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Walnut Park", "population": 0.16142918639690057, "cases": 45.0, "resource_uri": "/1.0/boundary/walnut-park-la-county-neighborhood-current/", "external_id": "walnut-park", "slug": "walnut-park-la-county-neighborhood-current", "metadata": {"sqmi": 0.734515844261, "type": "unincorporated-area", "name": "Walnut Park", "slug": "walnut-park"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.24421398601586, 33.95378300239991], [-118.24421897673223, 33.95326000119001], [-118.23399499532711, 33.95326400351855], [-118.23402597663926, 33.94824300144694], [-118.23062199498416, 33.94827800433688], [-118.23063099555172, 33.947234001195994], [-118.23485498250331, 33.94713199984873], [-118.23482297661417, 33.9455690015427], [-118.23016499540596, 33.94564800324387], [-118.23016398600741, 33.945264002392754], [-118.22983598600723, 33.94473100239234], [-118.228646, 33.93900699912543], [-118.229213, 33.9373309991254], [-118.228374, 33.93736599912536], [-118.228311, 33.936950999125415], [-118.2267720000002, 33.93709599912536], [-118.225667, 33.9299199991256], [-118.229823, 33.92896799912544], [-118.23997798615703, 33.929521002041], [-118.254206, 33.92946206703645], [-118.25410600000016, 33.94331499912527], [-118.24913798248129, 33.943273005368404], [-118.24883898885027, 33.95335799973396], [-118.24748498246399, 33.95335800524084], [-118.24744998955565, 33.954256999674946], [-118.24420999533882, 33.95427000349177], [-118.24421398601586, 33.95378300239991]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Watts", "population": 0.4267359339486989, "cases": 92.0, "resource_uri": "/1.0/boundary/watts-la-county-neighborhood-current/", "external_id": "watts", "slug": "watts-la-county-neighborhood-current", "metadata": {"sqmi": 2.12239731805, "type": "segment-of-a-city", "name": "Watts", "slug": "watts"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.33400900000011, 34.03461099912426], [-118.335109, 34.03261099912418], [-118.335109, 34.02271199912422], [-118.33620900000015, 34.022711999124354], [-118.342709, 34.023710999124305], [-118.3521180000001, 34.02469199912432], [-118.35490900000012, 34.02491099912423], [-118.355009, 34.02471099912427], [-118.37654816091967, 34.026795539354126], [-118.375632, 34.0290479991242], [-118.37498900000011, 34.029547999124205], [-118.373643, 34.030420999124274], [-118.371901, 34.029928999124266], [-118.36961, 34.03501099912404], [-118.36211000000013, 34.03401099912428], [-118.3453090000001, 34.0347109991241], [-118.333809, 34.03501099912416], [-118.33400900000011, 34.03461099912426]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "West Adams", "population": 0.27630231284091183, "cases": 116.0, "resource_uri": "/1.0/boundary/west-adams-la-county-neighborhood-current/", "external_id": "west-adams", "slug": "west-adams-la-county-neighborhood-current", "metadata": {"sqmi": 1.48200819378, "type": "segment-of-a-city", "name": "West Adams", "slug": "west-adams"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.2982839861563, 33.8463490020501], [-118.28491699046707, 33.84623900519854], [-118.28714497213004, 33.837136005533296], [-118.28715697213744, 33.81479900550439], [-118.28727997213909, 33.81024800549848], [-118.28888197214388, 33.80246000548881], [-118.28876697214426, 33.80108900548695], [-118.28837597214404, 33.79997000548542], [-118.28765197214341, 33.79878000548378], [-118.28673697845068, 33.797818002512784], [-118.29914597796882, 33.79779599916482], [-118.29914499521068, 33.80279900378914], [-118.29963797694815, 33.802814000829784], [-118.29961597513532, 33.803417999546205], [-118.29901599686073, 33.803400005584635], [-118.29833998607691, 33.813055002315856], [-118.29849398607706, 33.81313900231586], [-118.298490986077, 33.81336300231618], [-118.29925798607744, 33.8136460023164], [-118.29904298259474, 33.82221000312062], [-118.29918098607568, 33.823022002322375], [-118.29920697480482, 33.846319000868256], [-118.2982839861563, 33.8463490020501]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "West Carson", "population": 0.22085618581367097, "cases": 60.0, "resource_uri": "/1.0/boundary/west-carson-la-county-neighborhood-current/", "external_id": "west-carson", "slug": "west-carson-la-county-neighborhood-current", "metadata": {"sqmi": 2.27906138241, "type": "unincorporated-area", "name": "West Carson", "slug": "west-carson"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.3582801803272, 33.983045516758786], [-118.35850899999976, 33.981911999124655], [-118.35838644814663, 33.981667508177395], [-118.36625199999979, 33.98164499912474], [-118.36672599999977, 33.98189499912469], [-118.36692699999979, 33.981632999124805], [-118.37034099999983, 33.98163599912463], [-118.37010799999979, 33.9766079991248], [-118.37014799999974, 33.96799299912489], [-118.37236599999976, 33.96798899912489], [-118.3728969999997, 33.96760699912486], [-118.37253999999976, 33.967130999124954], [-118.3719179999997, 33.967386999124905], [-118.37161599999978, 33.9668519991248], [-118.37123899999973, 33.96336699912493], [-118.37607799999974, 33.96134999912503], [-118.37752199999974, 33.960186999124936], [-118.37838199999972, 33.95889599912504], [-118.3787899999998, 33.95889499912501], [-118.37884299999986, 33.95264699912509], [-118.37005699999966, 33.952671999125215], [-118.37003297694783, 33.930929001014874], [-118.36824899073932, 33.93094500129859], [-118.36821599204387, 33.929020002548064], [-118.37001498591458, 33.92894500298692], [-118.37719299090931, 33.92915700174887], [-118.37872399999976, 33.92900799912542], [-118.37872599999965, 33.93054499912539], [-118.38028599999966, 33.9309229991253], [-118.39801499999976, 33.93088599912531], [-118.40205899999977, 33.93149499912553], [-118.42542299999971, 33.931350999125314], [-118.42877499999963, 33.930969999125345], [-118.42876375034268, 33.93072699909007], [-118.42970999999984, 33.9307119991253], [-118.42973599999976, 33.9320999991252], [-118.43018199999977, 33.93328199912529], [-118.4354649999998, 33.94231899912509], [-118.43601399999983, 33.94411699912506], [-118.43605699999982, 33.94578699912504], [-118.43634099999979, 33.946866999125106], [-118.437731, 33.94915699912504], [-118.43604999999967, 33.949722999125136], [-118.43389399999982, 33.94985999912509], [-118.43134699999975, 33.95024199912513], [-118.43179699999972, 33.950856999125016], [-118.43119999999978, 33.951604999124996], [-118.43105899999983, 33.952192999124925], [-118.43111899999984, 33.95440899912494], [-118.43145299999983, 33.955154999125085], [-118.43188199999977, 33.95552199912493], [-118.43140399999967, 33.95619499912505], [-118.43297099999978, 33.95685499912499], [-118.43400999999984, 33.95801199912485], [-118.43280999999976, 33.95861199912489], [-118.43271299999971, 33.95969599912495], [-118.43102599999978, 33.95969599912492], [-118.43107099999989, 33.96051199912482], [-118.42850999999978, 33.96051199912487], [-118.42820999999984, 33.96201199912489], [-118.42900999999975, 33.96371199912485], [-118.4312099999997, 33.963711999124904], [-118.43270999999987, 33.96461199912484], [-118.43440999999977, 33.96421199912489], [-118.43655799999979, 33.96330899912481], [-118.43785899999972, 33.96299599912487], [-118.43830499999983, 33.96345099912481], [-118.43810999999967, 33.96361199912489], [-118.43010999999984, 33.96681199912484], [-118.42695799999977, 33.96490799912484], [-118.42530999999977, 33.96541199912498], [-118.42560999999986, 33.96551199912479], [-118.42360999999971, 33.96691199912473], [-118.42280999999976, 33.96991199912483], [-118.41890999999978, 33.97231199912476], [-118.41160999999983, 33.97529599912479], [-118.40476899999975, 33.97695499912467], [-118.4044879999998, 33.97721599912481], [-118.40161399999977, 33.98228399912459], [-118.3992299999998, 33.9827959991246], [-118.39813999999971, 33.98231299912459], [-118.39781758635341, 33.9824647231935], [-118.39756899999978, 33.982189999124785], [-118.39764999999974, 33.98206999912466], [-118.3926279999998, 33.97974399912483], [-118.39106599999981, 33.97863299912479], [-118.38673499999973, 33.9767189991248], [-118.38655198611026, 33.97716000243112], [-118.38541898563736, 33.97665800292151], [-118.38034098594126, 33.97635500310167], [-118.37718398611624, 33.977020002015536], [-118.37180898270891, 33.977318004363056], [-118.3717029889796, 33.98300199963554], [-118.3582801803272, 33.983045516758786]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Westchester", "population": 0.5160281469898358, "cases": 66.0, "resource_uri": "/1.0/boundary/westchester-la-county-neighborhood-current/", "external_id": "westchester", "slug": "westchester-la-county-neighborhood-current", "metadata": {"sqmi": 10.8092117067, "type": "segment-of-a-city", "name": "Westchester", "slug": "westchester"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.25343697206151, 33.902507005610325], [-118.25226998607518, 33.89768500376089], [-118.25271598566283, 33.897674999827224], [-118.25239598609848, 33.896427003598454], [-118.25635698607093, 33.896329000918165], [-118.25830297899856, 33.8959290037189], [-118.2583879930315, 33.89629500311336], [-118.25941798555397, 33.896288999999506], [-118.25912498605338, 33.89539400390452], [-118.25947998571357, 33.89539000005721], [-118.2594039861288, 33.89508600318931], [-118.2598229841308, 33.89503899918147], [-118.26024698747347, 33.8947270044907], [-118.25918998610445, 33.890271002747845], [-118.2603929859448, 33.890061001778875], [-118.25989998612998, 33.88682700312439], [-118.26077298589438, 33.88672200121108], [-118.26069498607895, 33.88611000377499], [-118.28272898597488, 33.88546600124119], [-118.28320398605248, 33.89694800236792], [-118.28226799471734, 33.897314998857816], [-118.28225397210174, 33.90190000561613], [-118.26664297208013, 33.90194900561263], [-118.26369197207575, 33.90234600561247], [-118.25360398607674, 33.90280700375725], [-118.25343697206151, 33.902507005610325]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "West Compton", "population": 0.047199405754739, "cases": 11.0, "resource_uri": "/1.0/boundary/west-compton-la-county-neighborhood-current/", "external_id": "west-compton", "slug": "west-compton-la-county-neighborhood-current", "metadata": {"sqmi": 1.65436407239, "type": "unincorporated-area", "name": "West Compton", "slug": "west-compton"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.94299300000016, 34.09249299912351], [-117.93976400000011, 34.0924319991235], [-117.939792, 34.091683999123546], [-117.93853400000022, 34.091707999123486], [-117.93842300000013, 34.09186499912352], [-117.93689299057503, 34.0918059976785], [-117.93697499907557, 34.08989600436465], [-117.94159598603596, 34.09008599932475], [-117.94201198592322, 34.08541800032896], [-117.93821898564232, 34.08516900456856], [-117.93816398591497, 34.08688399929137], [-117.93614298569393, 34.08677700441819], [-117.93606798597149, 34.0882869997913], [-117.93343300018321, 34.08830700114394], [-117.93414200000018, 34.086689999123585], [-117.93432498579428, 34.084818000722166], [-117.92634898575523, 34.08471300495479], [-117.92629698576296, 34.08645900072993], [-117.92369600000025, 34.086438999123494], [-117.923705, 34.08702299912358], [-117.92164700000015, 34.08895999912351], [-117.91808400000023, 34.08841299912359], [-117.91658600000017, 34.08842699912356], [-117.91656400000016, 34.084798999123606], [-117.9077730000001, 34.08493999912353], [-117.90776100000018, 34.08631199912361], [-117.9032900000002, 34.086282999123526], [-117.90330100000011, 34.07546599912369], [-117.898903, 34.07543299912384], [-117.89889500000014, 34.073611999123784], [-117.89239000000016, 34.07336999912379], [-117.89259700000012, 34.07537799912375], [-117.89250500000014, 34.077323999123614], [-117.89175100000021, 34.07743899912368], [-117.89004300000023, 34.07735799912364], [-117.89002700000015, 34.07536399912369], [-117.88121900000014, 34.075283999123705], [-117.8812020000003, 34.07370699912376], [-117.8741100000001, 34.07367299912386], [-117.87316800000016, 34.074495999123705], [-117.87142500000023, 34.07541999912371], [-117.86968400000033, 34.075855999123704], [-117.86950300000025, 34.07461399912373], [-117.869172, 34.0746079991237], [-117.86882100000018, 34.074034999123754], [-117.868366, 34.0739409991238], [-117.86763000000018, 34.074146999123734], [-117.86738500000018, 34.07398799912376], [-117.86717300000018, 34.07343999912372], [-117.86586500000014, 34.073342999123795], [-117.86626800000016, 34.072314999123726], [-117.8680480000002, 34.07188099912382], [-117.866038, 34.07139899912381], [-117.86446700000013, 34.070735999123706], [-117.8631240000002, 34.070983999123825], [-117.86288000000015, 34.070818999123766], [-117.86271000000016, 34.070879999123726], [-117.86266900000018, 34.070304999123756], [-117.86215500000016, 34.07034099912377], [-117.86206700000014, 34.06967799912391], [-117.8617930000002, 34.06932199912382], [-117.86064000000022, 34.068893999123794], [-117.85914500000014, 34.06858899912373], [-117.85870400000013, 34.068640999123744], [-117.85826100000021, 34.065924999123794], [-117.859188, 34.066154999123846], [-117.860233, 34.06598799912377], [-117.86118600000012, 34.0663299991238], [-117.86123700000022, 34.06768799912393], [-117.86133400000014, 34.06749799912383], [-117.86382400000016, 34.06718299912378], [-117.86499, 34.069113999123665], [-117.87019100000018, 34.068339999123765], [-117.87029200000012, 34.06855199912378], [-117.87176100000018, 34.068437999123915], [-117.87048200000021, 34.06704199912397], [-117.8685580000002, 34.06392599912385], [-117.86825600000012, 34.063075999123875], [-117.86837300000019, 34.06181599912391], [-117.8689160000002, 34.060174999123916], [-117.8688520000002, 34.05911399912392], [-117.86899400000013, 34.05912899912393], [-117.86893900000031, 34.05962299912392], [-117.87060000000014, 34.05992599912395], [-117.87047800000016, 34.05812499912389], [-117.87113600000015, 34.05683699912393], [-117.87044500000016, 34.05665999912388], [-117.86897600000019, 34.05669799912395], [-117.8688970000002, 34.05566699912395], [-117.866986, 34.055701999124], [-117.86609400000016, 34.055983999123974], [-117.86422300000017, 34.05309399912401], [-117.86340500000018, 34.05233499912396], [-117.86267300000014, 34.051914999124094], [-117.86678000000018, 34.047310999124015], [-117.87179600000016, 34.049054999124024], [-117.8757950000002, 34.048991999124], [-117.8839940000002, 34.044009999124135], [-117.88889500000022, 34.04310999912409], [-117.8900380000001, 34.042442999124106], [-117.88918900000016, 34.02955599912429], [-117.88962600000015, 34.02948999912429], [-117.89167500000013, 34.02832799912437], [-117.8955780000001, 34.02751499912434], [-117.895164, 34.026106999124345], [-117.89455500000012, 34.025070999124374], [-117.89140200000016, 34.02193599912439], [-117.88739500000011, 34.016621999124425], [-117.88666100000013, 34.0151309991243], [-117.8835280000002, 34.01609599912462], [-117.88297700000018, 34.01504799912448], [-117.88280200000014, 34.014172999124405], [-117.882205, 34.01317899912452], [-117.881587, 34.01300299912452], [-117.87999300000016, 34.0134099991245], [-117.87887300000013, 34.0119829991245], [-117.87481000000015, 34.01398899912447], [-117.87057100000015, 34.017281999124464], [-117.86812100000013, 34.01591499912442], [-117.86939600000017, 34.011632999124494], [-117.87444800000031, 34.01158699912451], [-117.87398300000017, 34.00988699912458], [-117.873938, 34.0045749991245], [-117.87168500000023, 34.002999999124626], [-117.87505900000019, 34.00213099912463], [-117.876939, 34.001912999124634], [-117.87968700000017, 34.0018719991247], [-117.88183400000018, 34.00206099912461], [-117.89067598588544, 34.0035120023729], [-117.89027898687992, 34.006192004291556], [-117.88951298457336, 34.006642999264805], [-117.88728898561656, 34.006528004499046], [-117.88716698601047, 34.007564999589256], [-117.88259899262493, 34.007256004018785], [-117.88274198567242, 34.004110001331085], [-117.88081398551832, 34.004168005149836], [-117.88012998539058, 34.0114250014445], [-117.88449898584807, 34.01008300321465], [-117.88682198594326, 34.01017200018049], [-117.88645698575775, 34.01361000403255], [-117.89799598567846, 34.01356300276339], [-117.90289398589694, 34.01370900175279], [-117.90957798575492, 34.01339500084865], [-117.91005497154767, 34.01497000567582], [-117.91111597154575, 34.02523700568936], [-117.91215498317871, 34.026381999284666], [-117.91403398625644, 34.02517600305534], [-117.91551598510036, 34.02470200557262], [-117.91741698165394, 34.02513000075863], [-117.91500997154901, 34.030923005697694], [-117.91753997155153, 34.034234005702636], [-117.91890497155312, 34.03497100570396], [-117.92010498611376, 34.03528500176357], [-117.92630398590497, 34.035716000352046], [-117.92623197156254, 34.0371370057084], [-117.92661797156235, 34.039045005710825], [-117.92652697156173, 34.04053500571275], [-117.92579697156006, 34.04262800571526], [-117.92567898590616, 34.04412899916347], [-117.9242389928013, 34.04404400357693], [-117.922316, 34.0420439991241], [-117.92278997155573, 34.042863005714935], [-117.92283698588516, 34.0440799990431], [-117.92028498718736, 34.04446600466563], [-117.91979597155097, 34.04489500571681], [-117.91939998588154, 34.04582800196913], [-117.91580798769344, 34.04650600514255], [-117.91534998390918, 34.04686000001101], [-117.91536198573826, 34.0473239998106], [-117.91413798552743, 34.04733200171139], [-117.91410898574887, 34.04806200416111], [-117.91489398579385, 34.048072000682645], [-117.91489698576012, 34.048832000039255], [-117.9146889715425, 34.04891100572091], [-117.91466798581507, 34.050269999740834], [-117.91268998578153, 34.050262004019444], [-117.91270098584826, 34.05108900358729], [-117.91684398557493, 34.050809003314924], [-117.92096598581959, 34.05091800060253], [-117.9208559857803, 34.05221200405285], [-117.92553998578224, 34.052100000373954], [-117.92562999300534, 34.04889800254222], [-117.92932298570138, 34.048656002907], [-117.93345298578721, 34.04866300076231], [-117.93344498580046, 34.05045099984284], [-117.92989398576769, 34.050412004133605], [-117.92991998582393, 34.051380003865034], [-117.93427598580215, 34.0512510002649], [-117.93428098580203, 34.050826000702756], [-117.93359399286581, 34.050819003359706], [-117.93360499281185, 34.05045300443736], [-117.93818998579286, 34.05049300075148], [-117.93818798578006, 34.05078900410778], [-117.93944798578812, 34.05079400077537], [-117.93941598571321, 34.05213500435223], [-117.9420589877463, 34.052224999669406], [-117.94249000000015, 34.051818999123995], [-117.9438560000003, 34.05298999912408], [-117.94538400000012, 34.05155299912402], [-117.94569700000014, 34.051893999124], [-117.94826300000015, 34.04954999912407], [-117.95164500000017, 34.052056999124034], [-117.95638198908453, 34.04715700613108], [-117.96379097160946, 34.05263500573719], [-117.95884597160087, 34.057321005742175], [-117.96213198143806, 34.05975599924146], [-117.96307698896959, 34.058768006228775], [-117.96392498142815, 34.05935299984828], [-117.9641839898857, 34.0591090052982], [-117.96486397160841, 34.05958600574664], [-117.96357397160627, 34.06080700574773], [-117.96713800000016, 34.063457999123784], [-117.96470800000021, 34.065774999123846], [-117.96221200000019, 34.06536699912383], [-117.96171900000016, 34.065925999123856], [-117.96130200000016, 34.06669299912384], [-117.9620320000002, 34.06695799912384], [-117.96306500000016, 34.0676509991238], [-117.96392200000014, 34.068339999123765], [-117.96370200000021, 34.06855199912378], [-117.963225, 34.068364999123744], [-117.96220800000026, 34.069297999123805], [-117.96137100000016, 34.06939599912381], [-117.9612020000002, 34.0695619991238], [-117.96106100000017, 34.06937399912377], [-117.96120600000022, 34.069129999123724], [-117.96042600000018, 34.06853399912381], [-117.960523, 34.068428999123824], [-117.95991600000018, 34.06812299912384], [-117.95782300000022, 34.069973999123754], [-117.95819400000013, 34.070253999123736], [-117.95745600000032, 34.07034999912381], [-117.95574000000015, 34.072134999123776], [-117.958122, 34.073877999123646], [-117.95658000000032, 34.0753089991237], [-117.954241, 34.07357899912377], [-117.9482130000002, 34.07934399912366], [-117.94596700000011, 34.07929299912367], [-117.945607, 34.08296299912359], [-117.944489, 34.08296299912359], [-117.9441630000002, 34.08655799912357], [-117.94548700000013, 34.086630999123635], [-117.94500100000013, 34.0901779991236], [-117.94890700000013, 34.0892969991236], [-117.94879500000015, 34.09241999912351], [-117.94299300000016, 34.09249299912351]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "West Covina", "population": 1.0823055625471936, "cases": 129.0, "resource_uri": "/1.0/boundary/west-covina-la-county-neighborhood-current/", "external_id": "west-covina", "slug": "west-covina-la-county-neighborhood-current", "metadata": {"sqmi": 16.1145589195, "type": "standalone-city", "name": "West Covina", "slug": "west-covina"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.605122, 34.227319999121846], [-118.605591, 34.226684999121886], [-118.605788, 34.226091999121806], [-118.605814, 34.21960199912184], [-118.61012, 34.219403999121845], [-118.614621, 34.21940399912192], [-118.61452, 34.21540399912199], [-118.61472, 34.211903999121915], [-118.61452, 34.20470399912215], [-118.61472, 34.199703999122164], [-118.61452, 34.19830399912214], [-118.61462, 34.186403999122305], [-118.644521, 34.18630399912226], [-118.654021, 34.18420399912236], [-118.6580210000001, 34.184303999122285], [-118.65992100000011, 34.183803999122254], [-118.660621, 34.18330399912235], [-118.668111, 34.183777999122384], [-118.66811271525985, 34.17920427474041], [-118.66817600000014, 34.18986699912216], [-118.667796, 34.20932899912203], [-118.66276400000015, 34.209342999122036], [-118.66277077198214, 34.21292340088551], [-118.65324107201008, 34.212945997571374], [-118.65237500000016, 34.216418999121935], [-118.6546200000002, 34.216417999121894], [-118.655916, 34.215945999121956], [-118.6589590000002, 34.21594599912199], [-118.659205, 34.21691799912181], [-118.65981700000015, 34.218085999121875], [-118.65975200000017, 34.22114899912195], [-118.65930800000012, 34.22221199912178], [-118.658735, 34.22457799912178], [-118.65407200000013, 34.22468799912179], [-118.65404708247469, 34.22710902341229], [-118.653291, 34.227109999121836], [-118.653292, 34.22734899912189], [-118.652862, 34.22735199912176], [-118.65286100308413, 34.22711074544825], [-118.64971200001935, 34.22711500225083], [-118.64908551423557, 34.22963270231993], [-118.64872200000015, 34.22960299912184], [-118.6488460000001, 34.230254999121875], [-118.648034, 34.23098699912177], [-118.647502, 34.230869999121786], [-118.64713400000012, 34.23049499912179], [-118.647105, 34.22955399912183], [-118.64696000000012, 34.22944999912187], [-118.647094, 34.2239689991219], [-118.643415, 34.2239689991219], [-118.6428680000001, 34.22364199912186], [-118.6366600000001, 34.22446399912191], [-118.631221, 34.22470299912194], [-118.629872, 34.225210999121906], [-118.628031, 34.226171999121775], [-118.626563, 34.227458999121794], [-118.62595, 34.22783999912187], [-118.625314, 34.227948999121836], [-118.61624, 34.22714899912192], [-118.61584100000016, 34.22776399912188], [-118.61496400000016, 34.23138599912181], [-118.614061, 34.231715999121775], [-118.612519, 34.2331639991219], [-118.611323, 34.23388899912171], [-118.610792, 34.23445999912178], [-118.61055300000014, 34.234986999121745], [-118.61021900000014, 34.235222999121824], [-118.604821, 34.235302999121664], [-118.602821, 34.231302999121745], [-118.602621, 34.23013599912187], [-118.6026980000001, 34.22958299912182], [-118.60305200000012, 34.22890699912174], [-118.605122, 34.227319999121846]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "West Hills", "population": 0.40544923775543307, "cases": 50.0, "resource_uri": "/1.0/boundary/west-hills-la-county-neighborhood-current/", "external_id": "west-hills", "slug": "west-hills-la-county-neighborhood-current", "metadata": {"sqmi": 8.52807835884, "type": "segment-of-a-city", "name": "West Hills", "slug": "west-hills"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.36856030810456, 34.09803547507345], [-118.36820900000019, 34.09803499912339], [-118.36816800000018, 34.0970869991234], [-118.3673420000002, 34.09709799912342], [-118.367341, 34.0968789991234], [-118.36672000000016, 34.0968879991236], [-118.36672100000017, 34.097107999123516], [-118.36165200000015, 34.09717799912344], [-118.36154200000014, 34.09445499912343], [-118.34338200000019, 34.09432799912354], [-118.34339300000019, 34.08889499912361], [-118.35280200000011, 34.08896199912357], [-118.35280000000013, 34.08712899912356], [-118.362701, 34.087190999123564], [-118.362712, 34.088786999123556], [-118.36326700000019, 34.08877799912358], [-118.3632690000001, 34.08897099912355], [-118.36644300000016, 34.08892399912357], [-118.36643000000014, 34.08713899912367], [-118.37023300000016, 34.08708399912368], [-118.37023000000015, 34.085608999123565], [-118.37248500000014, 34.08543799912362], [-118.3724980000001, 34.090255999123485], [-118.37307400000017, 34.0902479991235], [-118.37327200000014, 34.09005199912355], [-118.37413000000015, 34.089956999123565], [-118.374328, 34.08970599912352], [-118.37475700000019, 34.08969899912354], [-118.37475700000019, 34.08942499912352], [-118.37518600000018, 34.08941799912354], [-118.37538300000021, 34.08913999912355], [-118.37628400000011, 34.088988999123565], [-118.37695100000013, 34.088629999123576], [-118.37703300000022, 34.08303999912361], [-118.37030200000018, 34.08315699912354], [-118.370294, 34.08016899912363], [-118.374209, 34.08016099912365], [-118.37420200000018, 34.08201899912361], [-118.37525000000012, 34.082010999123625], [-118.37526400000023, 34.08015899912369], [-118.377248, 34.08020699912366], [-118.37689300000021, 34.07896599912374], [-118.3773020000003, 34.07922699912364], [-118.37799100000015, 34.078942999123726], [-118.377777, 34.0786529991237], [-118.37756700000018, 34.07874199912364], [-118.37722000000012, 34.07817299912368], [-118.37719200000019, 34.076478999123786], [-118.37975400000015, 34.07639099912367], [-118.38051700000011, 34.076693999123805], [-118.381693, 34.076710999123755], [-118.38169400000011, 34.076395999123754], [-118.38973300000019, 34.076489999123716], [-118.38975500000015, 34.08849499912371], [-118.39358600000021, 34.08963499912361], [-118.39451400000019, 34.0905799991235], [-118.3957280000002, 34.090585999123526], [-118.39584400000018, 34.09105499912352], [-118.3860400000002, 34.09103599912348], [-118.38594100000016, 34.09276799912353], [-118.38570600000014, 34.09294199912353], [-118.38552800000018, 34.092762999123494], [-118.38553000000016, 34.09320299912351], [-118.38503600000014, 34.09320199912354], [-118.38503800000015, 34.09355799912332], [-118.38445900000023, 34.09355699912352], [-118.38437800000017, 34.0937219991235], [-118.38337000000017, 34.09372399912348], [-118.38336900000014, 34.093326999123434], [-118.38118300000022, 34.09332299912349], [-118.38118100000024, 34.09210399912358], [-118.379297, 34.092954999123606], [-118.37657700000015, 34.0947499991235], [-118.37260000000016, 34.09567599912353], [-118.3715740000002, 34.09642799912355], [-118.36999200000022, 34.09710699912342], [-118.36856030810456, 34.09803547507345]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "West Hollywood", "population": 0.36951127413960516, "cases": 137.0, "resource_uri": "/1.0/boundary/west-hollywood-la-county-neighborhood-current/", "external_id": "west-hollywood", "slug": "west-hollywood-la-county-neighborhood-current", "metadata": {"sqmi": 1.88729983244, "type": "standalone-city", "name": "West Hollywood", "slug": "west-hollywood"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.280308, 34.07690999912365], [-118.27629400000016, 34.07589899912359], [-118.27300800000012, 34.07480999912358], [-118.265307, 34.07120999912366], [-118.261318, 34.069746999123645], [-118.25990700000013, 34.0646109991238], [-118.25950700000013, 34.06191099912397], [-118.256595, 34.058954999123756], [-118.25523400000012, 34.05805899912392], [-118.259107, 34.053910999123936], [-118.259807, 34.05311099912405], [-118.259729, 34.05299999912385], [-118.26074500000013, 34.05197799912394], [-118.26148, 34.051571999123865], [-118.26096100000017, 34.05126499912385], [-118.268507, 34.04681199912396], [-118.27860800000013, 34.05141099912389], [-118.28158200000016, 34.05259699912389], [-118.282619, 34.05282799912396], [-118.284208, 34.052610999123964], [-118.289208, 34.05251099912384], [-118.289208, 34.059910999123936], [-118.28790800000016, 34.05991099912378], [-118.287913, 34.06200699912378], [-118.28720800000013, 34.06201099912385], [-118.28710800000015, 34.06780999912369], [-118.286908, 34.0690099991236], [-118.286908, 34.07650999912369], [-118.28570800000014, 34.07680999912369], [-118.28450800000012, 34.076809999123604], [-118.28450800000012, 34.07790999912354], [-118.280308, 34.07690999912365]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Westlake", "population": 0.7322434541833887, "cases": 304.0, "resource_uri": "/1.0/boundary/westlake-la-county-neighborhood-current/", "external_id": "westlake", "slug": "westlake-la-county-neighborhood-current", "metadata": {"sqmi": 2.71730553526, "type": "segment-of-a-city", "name": "Westlake", "slug": "westlake"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.82513500000017, 34.12294099912316], [-118.83622500000016, 34.11702999912323], [-118.84767100000013, 34.11018699912341], [-118.8528500000001, 34.11119499912326], [-118.85294200000016, 34.111399999123286], [-118.85392100000026, 34.11180099912322], [-118.85394821517517, 34.112578828633296], [-118.85367729857755, 34.11290121554632], [-118.85199971563398, 34.113137011638145], [-118.85207000000011, 34.11395499912328], [-118.85234255036681, 34.11419804046069], [-118.85288100000024, 34.11425399912327], [-118.85305498241812, 34.11472649280283], [-118.852092, 34.115092999123284], [-118.85204542966179, 34.115819998715914], [-118.85171300000013, 34.11610599912324], [-118.85132000000019, 34.116149999123266], [-118.85115323884874, 34.11644987892194], [-118.85068750480855, 34.116666372141445], [-118.85072813509463, 34.11710713555804], [-118.8509840618767, 34.11751263949156], [-118.85079504737284, 34.11784116780428], [-118.85106893366427, 34.11876794179953], [-118.85198933483579, 34.11988636348037], [-118.85253200000014, 34.119990999123225], [-118.85324067874588, 34.12096966339554], [-118.85463000000018, 34.12173999912308], [-118.85488100000016, 34.12253499912317], [-118.85619100000015, 34.123549999123135], [-118.85573100000019, 34.12461199912316], [-118.856161, 34.12540899912303], [-118.85615500000016, 34.12613599912313], [-118.85658000000016, 34.12715499912316], [-118.83657400000011, 34.13944499912295], [-118.83580700000019, 34.13968499912291], [-118.830937, 34.14272799912287], [-118.82895000000022, 34.14366299912284], [-118.82638700000014, 34.145208999122794], [-118.82255600000018, 34.14805399912285], [-118.82112500000012, 34.14860499912289], [-118.81898900000027, 34.15018099912281], [-118.78924400000014, 34.16819599912265], [-118.78977500000018, 34.1626039991227], [-118.791765, 34.15635099912278], [-118.7908090000003, 34.1547279991228], [-118.7908710000002, 34.15433799912273], [-118.79153600000022, 34.15112599912278], [-118.79184000000024, 34.15051999912281], [-118.79289500000016, 34.14605899912285], [-118.80481900000012, 34.13388999912305], [-118.82513500000017, 34.12294099912316]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Westlake Village", "population": 0.08360039013515397, "cases": 6.0, "resource_uri": "/1.0/boundary/westlake-village-la-county-neighborhood-current/", "external_id": "westlake-village", "slug": "westlake-village-la-county-neighborhood-current", "metadata": {"sqmi": 5.6464219287, "type": "standalone-city", "name": "Westlake Village", "slug": "westlake-village"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.434212, 34.03730999912411], [-118.435039, 34.03693199912408], [-118.444378, 34.04776199912396], [-118.43439100000013, 34.05060599912401], [-118.424212, 34.057508999123755], [-118.4239120000001, 34.05710899912385], [-118.423212, 34.05530899912395], [-118.42271200000013, 34.053308999123985], [-118.421612, 34.0523089991239], [-118.42151200000018, 34.0512089991238], [-118.417111, 34.04620999912391], [-118.42571200000012, 34.04130999912406], [-118.429602, 34.03959699912402], [-118.434212, 34.03730999912411]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "West Los Angeles", "population": 0.3858745333265645, "cases": 76.0, "resource_uri": "/1.0/boundary/west-los-angeles-la-county-neighborhood-current/", "external_id": "west-los-angeles", "slug": "west-los-angeles-la-county-neighborhood-current", "metadata": {"sqmi": 1.04957313159, "type": "segment-of-a-city", "name": "West Los Angeles", "slug": "west-los-angeles"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.96996897161365, 34.06552200575542], [-117.9701069654253, 34.06498503399123], [-117.9697359816568, 34.06535099940915], [-117.96907397161264, 34.06487000575429], [-117.97041698663838, 34.0638090040374], [-117.96938398898801, 34.06315600567495], [-117.96918498179885, 34.06334099948028], [-117.96712399019059, 34.06182000567307], [-117.96622398528994, 34.06278499743292], [-117.96357397160634, 34.06080700574776], [-117.96486397160851, 34.05958600574665], [-117.96418398988581, 34.05910900529822], [-117.96392498142828, 34.059352999848315], [-117.96307698896969, 34.058768006228824], [-117.96213198143816, 34.05975599924151], [-117.95884597160098, 34.0573210057422], [-117.96379097160955, 34.05263500573724], [-117.956427971601, 34.04719000572853], [-117.95164500000027, 34.052056999124055], [-117.94934500000024, 34.050348999124026], [-117.95187800000022, 34.04797799912411], [-117.95024300000017, 34.04674599912411], [-117.95090700000023, 34.04625099912417], [-117.95048300000023, 34.04581199912408], [-117.95163800000022, 34.04479199912421], [-117.95187700000041, 34.04494099912411], [-117.9520920000001, 34.04474999912414], [-117.95231700000028, 34.044912999124065], [-117.95279798072599, 34.04454300719801], [-117.94959297159326, 34.0421610057204], [-117.9517219896543, 34.040155005473785], [-117.95227398759343, 34.0405919959003], [-117.95375198954997, 34.03922700586324], [-117.95432599524548, 34.039926988663744], [-117.95485197160161, 34.03924500571785], [-117.95364397160014, 34.03835800571648], [-117.95855898991643, 34.03369200543334], [-117.9680440000003, 34.04066599912425], [-117.96311900000028, 34.04531999912408], [-117.96718298759167, 34.04833900478955], [-117.96672499022822, 34.04868499723447], [-117.9673650000004, 34.04926799912416], [-117.96816398697013, 34.04975499638765], [-117.96858898981255, 34.049359005310556], [-117.97260900000016, 34.05231199912408], [-117.9706510000001, 34.054115999124], [-117.97116000000015, 34.054609999124125], [-117.9752889868591, 34.05722899588808], [-117.98109899011651, 34.051216005402345], [-117.98214098679753, 34.051918995431215], [-117.98275897163619, 34.05122400573993], [-117.98175497163504, 34.050556005738905], [-117.9855039938096, 34.0466360035505], [-117.99050400000029, 34.049960999124195], [-117.98672600000016, 34.05388499912397], [-117.98923800000021, 34.055566999123954], [-117.98821098132998, 34.05667199930579], [-117.98671599006752, 34.05563000539562], [-117.98630698155685, 34.05603599949071], [-117.98529798935166, 34.055339006185676], [-117.98300000000023, 34.057768999124086], [-117.98547100000023, 34.05945399912394], [-117.98242999121173, 34.062633000114246], [-117.98117598572246, 34.0628680004918], [-117.97953798618073, 34.06287300501295], [-117.97851098545148, 34.063269001501155], [-117.97786998922636, 34.062838005642824], [-117.97670098155963, 34.06388499998657], [-117.97619998873469, 34.06359600527537], [-117.97561698615087, 34.06377800156826], [-117.9729239899411, 34.063381005507615], [-117.97074100000032, 34.06543199912385], [-117.97066097592693, 34.0660289823838], [-117.96996897161365, 34.06552200575542]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "West Puente Valley", "population": 0.09835259404966805, "cases": 16.0, "resource_uri": "/1.0/boundary/west-puente-valley-la-county-neighborhood-current/", "external_id": "west-puente-valley", "slug": "west-puente-valley-la-county-neighborhood-current", "metadata": {"sqmi": 1.85662447271, "type": "unincorporated-area", "name": "West Puente Valley", "slug": "west-puente-valley"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.82517500000027, 34.091299999123656], [-117.82419700000027, 34.09102499912361], [-117.82453400000026, 34.09163999912357], [-117.82433600000022, 34.09195399912353], [-117.82337100000021, 34.09146499912355], [-117.82231261511072, 34.09216431163575], [-117.82069985564313, 34.09216398188077], [-117.82094800000027, 34.09090099912361], [-117.82135000000027, 34.090611999123524], [-117.826730257016, 34.08895519265365], [-117.83793751925462, 34.08594608911966], [-117.83745500000035, 34.084928999123626], [-117.84009598126526, 34.0843090887014], [-117.84242864860468, 34.08398666962752], [-117.84383696078568, 34.08433368858365], [-117.84493823435281, 34.083728457981906], [-117.84540512666692, 34.083018149140514], [-117.8469726720455, 34.08280736860101], [-117.84743490733759, 34.08279087634683], [-117.84760737116957, 34.08329348395781], [-117.84881509985341, 34.08269895462842], [-117.84949812908559, 34.08336834717931], [-117.84927296953612, 34.08439161803296], [-117.84891400000022, 34.08466999912366], [-117.84906779754046, 34.08503159044367], [-117.84862162503345, 34.08581510335182], [-117.84714400000011, 34.08665499912355], [-117.84489371072232, 34.087223683153724], [-117.84416100000026, 34.08725099912354], [-117.84408900000022, 34.08761999912365], [-117.84346705557665, 34.08660475980381], [-117.8432215171888, 34.08664992864697], [-117.84312300000025, 34.08639299912367], [-117.8384140000003, 34.08715699912366], [-117.83906162660233, 34.08843937338951], [-117.83772900000024, 34.088465999123535], [-117.83673728080825, 34.08951460943774], [-117.83574883167249, 34.089379257323976], [-117.83502700000014, 34.089587999123545], [-117.83433931065107, 34.090325703019126], [-117.83332900000025, 34.09070499912357], [-117.83311100000036, 34.09116099912359], [-117.83229100000037, 34.091402999123574], [-117.8318360000004, 34.09208499912352], [-117.83112803452407, 34.092163951618275], [-117.82956900000029, 34.09174399912357], [-117.8290010000003, 34.091402999123574], [-117.82820800000027, 34.09152499912358], [-117.82686600000027, 34.091227999123625], [-117.82643000000024, 34.091617999123535], [-117.8266898104493, 34.09216434987184], [-117.82570976088556, 34.09216436514024], [-117.82555200000026, 34.09166799912369], [-117.82517500000027, 34.091299999123656]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "West San Dimas", "population": null, "cases": null, "resource_uri": "/1.0/boundary/west-san-dimas-la-county-neighborhood-current/", "external_id": "west-san-dimas", "slug": "west-san-dimas-la-county-neighborhood-current", "metadata": {"sqmi": 0.32978537849, "type": "unincorporated-area", "name": "West San Dimas", "slug": "west-san-dimas"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.06516597176962, 33.994621005685886], [-118.0659989857915, 33.993581003149544], [-118.06712798303633, 33.99264600756797], [-118.06666597177244, 33.992326005683175], [-118.06702498625411, 33.991972999815104], [-118.06672899699986, 33.99193099936653], [-118.0671199717735, 33.991392005682115], [-118.06598499013913, 33.9906220052992], [-118.0655739829375, 33.99100699965429], [-118.06405497176983, 33.989931005679374], [-118.06768097177604, 33.98623000567565], [-118.06405498906044, 33.983903005668715], [-118.06302200000026, 33.98496499912484], [-118.06584700000026, 33.986966999124824], [-118.06499898092702, 33.98802699935134], [-118.06236598730881, 33.98564000452929], [-118.06171098716014, 33.9860780028041], [-118.06050798072737, 33.98754099889432], [-118.05387697175793, 33.98307300566832], [-118.05392298422117, 33.98204200687946], [-118.05442399307952, 33.98228800207321], [-118.05560196937142, 33.98216200330012], [-118.05451698862875, 33.98145199720733], [-118.05463098313103, 33.981356007583905], [-118.05429998861601, 33.98081200689236], [-118.05393199180281, 33.98114599848613], [-118.05422498681969, 33.981482004112195], [-118.05381598365335, 33.98170600026773], [-118.05344398840006, 33.98143700556671], [-118.0530629917559, 33.98174800276836], [-118.05281398573109, 33.982296995754716], [-118.05094497175453, 33.98096600566487], [-118.05294297175784, 33.97906800566273], [-118.05232997175723, 33.9786440056622], [-118.05335997175904, 33.97759200566114], [-118.05238597175834, 33.97615100565903], [-118.05377597176063, 33.97435500565692], [-118.05223798543832, 33.97240700131155], [-118.05362998632224, 33.97183700346724], [-118.05146997175889, 33.970015005650794], [-118.05202298462268, 33.96757400692032], [-118.07084198644579, 33.971828999510294], [-118.07070399188093, 33.9722800053949], [-118.07109998660322, 33.97237099930074], [-118.0711799926895, 33.97307000402214], [-118.0714719860643, 33.97309300021649], [-118.07134900000031, 33.97385899912498], [-118.07183498648075, 33.974011998123835], [-118.07238100000012, 33.97396399912503], [-118.07247299191204, 33.97446999861123], [-118.0730499865837, 33.974192003824996], [-118.07352099254389, 33.97507199986722], [-118.07488098602582, 33.97466600283072], [-118.07395198529329, 33.97252100534141], [-118.07425598821281, 33.972582998256975], [-118.07458197179031, 33.97215300565901], [-118.07354297178941, 33.970459005656586], [-118.07348197178948, 33.97031300565631], [-118.07363997178976, 33.97014500565604], [-118.07285799771003, 33.969954007344164], [-118.07273398599936, 33.970399002756125], [-118.07197598578864, 33.9706170020253], [-118.07128097178631, 33.97035600565594], [-118.07194797178755, 33.969466005654894], [-118.0705309886071, 33.96905700665579], [-118.06962598085137, 33.97028299846579], [-118.06857699609635, 33.969698011607086], [-118.06846598677267, 33.97027599871037], [-118.06623598557415, 33.96999300487713], [-118.06644897177985, 33.96945300565352], [-118.06649298565429, 33.967676005496855], [-118.0669309862941, 33.96770399929021], [-118.06691698609755, 33.96735200012952], [-118.06539998568081, 33.96721300465101], [-118.0662949858445, 33.96457200419592], [-118.07059198568844, 33.964679999678324], [-118.07051398587996, 33.9641110008182], [-118.0674619859056, 33.96413800395406], [-118.06739898592372, 33.963942003862186], [-118.0681719858084, 33.96383800175109], [-118.06810498591335, 33.96257600248162], [-118.06851098586255, 33.96248800224006], [-118.06832298597767, 33.96157500296068], [-118.07031698577369, 33.961294001427014], [-118.0701969858943, 33.96002200401295], [-118.07098398589484, 33.960022000754584], [-118.0708869926162, 33.96049400418773], [-118.07421798595792, 33.960856000525396], [-118.07594200000028, 33.96229099912516], [-118.0759640000003, 33.96250399912511], [-118.07832900000024, 33.963764999125225], [-118.08909500000023, 33.967129999125184], [-118.08891500000023, 33.96809799912504], [-118.08836800000023, 33.96903299912506], [-118.08509000000018, 33.97272799912503], [-118.07999800000022, 33.97906699912503], [-118.07689000000019, 33.98329999912487], [-118.07586698811912, 33.98548499744319], [-118.07542399122799, 33.985316008469134], [-118.07300800000026, 33.991517999124824], [-118.07327000000038, 33.99176099912473], [-118.07309398603056, 33.992310001461206], [-118.0724209927523, 33.99233100387047], [-118.07224599138424, 33.99305899802221], [-118.07178099020612, 33.99279800482768], [-118.07125198170093, 33.99327699986652], [-118.07072898943414, 33.99296000573698], [-118.0699259813975, 33.9937849994662], [-118.06915698891555, 33.99329900570056], [-118.06779899513833, 33.994303992345436], [-118.06800597177387, 33.99396900568567], [-118.06742599306934, 33.99364200240108], [-118.06615499278139, 33.99492899979536], [-118.06550098432314, 33.99533600077137], [-118.06493697176924, 33.99487500568615], [-118.06516597176962, 33.994621005685886]]], [[[-118.06525500000029, 33.998257999124704], [-118.06314500000022, 33.99686299912471], [-118.06324800000021, 33.99634699912471], [-118.06401200000029, 33.9960599991248], [-118.06338200000026, 33.99563899912476], [-118.06369700000023, 33.99532199912475], [-118.06719900000034, 33.99755099912473], [-118.06771900000021, 33.996672999124776], [-118.06636800000027, 33.99575599912473], [-118.06776100000037, 33.99433999912475], [-118.0686870000003, 33.99495199912475], [-118.06847800000021, 33.99544599912478], [-118.06906600000022, 33.995730999124746], [-118.06984400000034, 33.99562599912474], [-118.07100400000027, 33.996447999124754], [-118.07008900000025, 33.99885699912477], [-118.06878200000027, 33.99846299912474], [-118.06819952116523, 33.998094956061415], [-118.06852000000025, 33.99837099912472], [-118.06839100000022, 33.99913599912467], [-118.06888500000026, 33.999869999124705], [-118.06846700000024, 34.00091999912464], [-118.06660000000029, 34.00109799912463], [-118.06700300000023, 34.00024099912474], [-118.06623300000031, 33.99885699912471], [-118.06525500000029, 33.998257999124704]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "West Whittier-Los Nietos", "population": 0.26924295216978145, "cases": 34.0, "resource_uri": "/1.0/boundary/west-whittier-los-nietos-la-county-neighborhood-current/", "external_id": "west-whittier-los-nietos", "slug": "west-whittier-los-nietos-la-county-neighborhood-current", "metadata": {"sqmi": 2.61424776266, "type": "unincorporated-area", "name": "West Whittier-Los Nietos", "slug": "west-whittier-los-nietos"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.429912, 34.07930799912365], [-118.42901200000011, 34.07910799912349], [-118.42771200000011, 34.080607999123565], [-118.426212, 34.08080799912359], [-118.425812, 34.08080799912359], [-118.42331200000014, 34.08000799912356], [-118.4232312833546, 34.079927282478124], [-118.4238280000001, 34.07973999912367], [-118.423477, 34.07881299912367], [-118.423632, 34.07876399912373], [-118.423296, 34.077568999123635], [-118.4227670000001, 34.077047999123685], [-118.423289, 34.075688999123685], [-118.422546, 34.07527299912372], [-118.42183900000012, 34.075092999123775], [-118.420928, 34.07542799912356], [-118.419642, 34.07265199912366], [-118.418462, 34.07236099912385], [-118.41738200000013, 34.07020599912385], [-118.416371, 34.06883999912381], [-118.4172530000001, 34.06838299912375], [-118.41442789354493, 34.06444100521822], [-118.4206120000001, 34.060008999123816], [-118.43401200000011, 34.05080899912387], [-118.4359730000001, 34.050093999124], [-118.444378, 34.04776199912396], [-118.449087, 34.0533509991239], [-118.44577600000014, 34.05532999912386], [-118.44562400000015, 34.055294999123845], [-118.45012800000015, 34.06077899912386], [-118.45403300000014, 34.06504699912372], [-118.454534, 34.0659189991238], [-118.454681, 34.0667989991238], [-118.460203, 34.065374999123804], [-118.466532, 34.072917999123675], [-118.464019, 34.07417299912364], [-118.463376, 34.07401599912372], [-118.46241200000011, 34.07329599912366], [-118.461524, 34.0731399991237], [-118.460824, 34.073311999123646], [-118.459142, 34.074453999123776], [-118.457535, 34.07432899912359], [-118.454913, 34.076507999123535], [-118.45391300000013, 34.076907999123584], [-118.45011300000012, 34.07510799912376], [-118.44881300000011, 34.07350799912363], [-118.44531300000011, 34.07370799912366], [-118.444513, 34.076607999123546], [-118.444013, 34.07700799912366], [-118.44281300000013, 34.07750799912367], [-118.440513, 34.077607999123586], [-118.4378130000001, 34.07940799912361], [-118.43531300000014, 34.080607999123615], [-118.43481300000015, 34.082407999123454], [-118.434213, 34.082707999123656], [-118.431812, 34.08220799912358], [-118.429912, 34.07930799912365]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Westwood", "population": 0.541100621690076, "cases": 47.0, "resource_uri": "/1.0/boundary/westwood-la-county-neighborhood-current/", "external_id": "westwood", "slug": "westwood-la-county-neighborhood-current", "metadata": {"sqmi": 3.6757772963, "type": "segment-of-a-city", "name": "Westwood", "slug": "westwood"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.06169, 34.00486599912463], [-118.061357, 34.00521099912459], [-118.0564976472849, 34.00195972177427], [-118.05629727763679, 34.002171226195244], [-118.056025, 34.00460699912439], [-118.054507, 34.0046159991245], [-118.054192, 34.004430999124565], [-118.054776, 34.003894999124576], [-118.050388, 34.001646999124596], [-118.050301, 34.00224199912463], [-118.049517, 34.00173599912459], [-118.049307, 34.0018839991246], [-118.0464597612129, 34.00170940782286], [-118.04652546875249, 34.001341235844805], [-118.04602345558862, 34.000892833208034], [-118.03733337780433, 34.0007865388069], [-118.03735247555288, 34.00383455401007], [-118.0365, 34.00382888615308], [-118.0365, 34.004211999124536], [-118.029175, 34.0040859991246], [-118.0291463104058, 34.00377997678439], [-118.02860593670651, 34.00377635884176], [-118.02862668113058, 33.989946095966815], [-118.018073, 33.99001099912487], [-118.018099, 33.98611199912482], [-118.008028, 33.98609099912474], [-118.008003, 33.98274999912484], [-117.99849856516458, 33.98240617766702], [-117.99356803931792, 33.98241748800193], [-117.9937620297949, 33.97516345398484], [-117.97666255665308, 33.97509295690059], [-117.97666167773424, 33.974829838195944], [-117.97628305435607, 33.97472141124122], [-117.97607600000019, 33.966321999124936], [-117.97666100000018, 33.96650099912502], [-117.976963, 33.96633299912499], [-117.976757, 33.96566899912501], [-117.976921, 33.964747999125024], [-117.983627, 33.964656999125054], [-117.983701, 33.96452199912495], [-117.9838500000001, 33.963426999125076], [-117.982443, 33.961927999125066], [-117.981935, 33.960998999124975], [-117.98327300000014, 33.96091399912508], [-117.983434, 33.960162999125096], [-117.983861, 33.95958899912512], [-117.983637, 33.95902299912507], [-117.98162100000017, 33.95837399912517], [-117.98098800000011, 33.95789899912513], [-117.98171600000019, 33.9570099991251], [-117.992997, 33.9499289991253], [-117.99269, 33.94956299912521], [-117.99209300000011, 33.94969299912521], [-117.988888, 33.94970499912521], [-117.98864600000012, 33.949822999125274], [-117.988192, 33.95055499912522], [-117.987281, 33.950249999125205], [-117.986976, 33.95044799912528], [-117.986167, 33.9503439991252], [-117.98665300000012, 33.94943699912523], [-117.96561800000018, 33.94971399912523], [-117.965576, 33.94869999912527], [-117.966048, 33.947832999125325], [-117.96568100000015, 33.94784299912518], [-117.96634300000012, 33.946718999125274], [-117.966763, 33.94672599912535], [-117.966797, 33.94603599912534], [-117.966611, 33.9460009991253], [-117.976475, 33.94591299912523], [-117.976533, 33.93186599912542], [-117.976452, 33.9302779991255], [-117.976327, 33.93027799912545], [-117.97629, 33.92998699912547], [-117.9762779999907, 33.92816600212377], [-117.979613985686, 33.928168002870926], [-117.98212298585075, 33.92853000173466], [-117.98353797167859, 33.92899500558148], [-117.9854419858198, 33.92989499736033], [-117.98544100000012, 33.92952701019737], [-117.99020598579877, 33.931808002322164], [-118.00084398580152, 33.92933700217206], [-118.00082998586508, 33.93523700390811], [-118.002985985855, 33.935224002344846], [-118.00324898585805, 33.9365460039498], [-118.00349698584537, 33.93654500077165], [-118.00336597170278, 33.93837900559833], [-118.03560397174232, 33.95356700562554], [-118.03799798602608, 33.95418000214619], [-118.045886, 33.955509999125134], [-118.042735, 33.95333799912515], [-118.04538498929857, 33.95066800609863], [-118.04940398309517, 33.95348700223419], [-118.047142, 33.955719999125115], [-118.052834, 33.95667799912524], [-118.050717, 33.958772999125046], [-118.05227300000016, 33.959739999125134], [-118.055775, 33.96143299912505], [-118.054858, 33.9617319991251], [-118.055362, 33.96600499912509], [-118.05460400000011, 33.966134999125146], [-118.05531999059147, 33.968263001295576], [-118.05202298462248, 33.9675740069202], [-118.05194497176024, 33.96783000564794], [-118.05146997175869, 33.970015005650694], [-118.05362998632204, 33.97183700346714], [-118.05223798543811, 33.97240700131146], [-118.05377597176043, 33.97435500565682], [-118.05238597175814, 33.97615100565898], [-118.05335997175884, 33.977592005661094], [-118.05232997175706, 33.97864400566209], [-118.05294297175762, 33.97906800566268], [-118.05094497175433, 33.98096600566481], [-118.0528139857309, 33.9822969957546], [-118.0530629917557, 33.98174800276829], [-118.05344398839988, 33.98143700556661], [-118.05381598365314, 33.981706000267614], [-118.05422498681946, 33.98148200411212], [-118.05393199180261, 33.98114599848605], [-118.05429998861582, 33.98081200689229], [-118.05463098313083, 33.981356007583855], [-118.05451698862856, 33.98145199720722], [-118.05560196937124, 33.982162003300054], [-118.0544239930793, 33.98228800207314], [-118.05392298422097, 33.98204200687939], [-118.05387697175775, 33.983073005668246], [-118.06050798072715, 33.98754099889422], [-118.06171098715991, 33.98607800280401], [-118.06236598730861, 33.985640004529195], [-118.06499898092682, 33.98802699935124], [-118.065847, 33.986966999124746], [-118.063022, 33.98496499912475], [-118.06405498906024, 33.98390300566865], [-118.06768097177581, 33.98623000567555], [-118.0640549717696, 33.989931005679274], [-118.06557398293732, 33.99100699965424], [-118.06598499013893, 33.99062200529914], [-118.0671199717733, 33.99139200568207], [-118.06672899699966, 33.99193099936643], [-118.06702498625388, 33.99197299981505], [-118.06666597177224, 33.992326005683104], [-118.06712798303613, 33.992646007567906], [-118.06599898579132, 33.993581003149465], [-118.06493697176904, 33.994875005686104], [-118.06550098432294, 33.995336000771296], [-118.06615499278116, 33.99492899979526], [-118.06742599306914, 33.993642002401], [-118.06800597177367, 33.993969005685564], [-118.06779899513809, 33.99430399234533], [-118.06915698891535, 33.99329900570048], [-118.06992598139732, 33.993784999466115], [-118.07072898943392, 33.99296000573692], [-118.07125198170073, 33.99327699986644], [-118.07178099020594, 33.992798004827605], [-118.07224599138402, 33.99305899802213], [-118.072199, 33.99367799912465], [-118.07136200000011, 33.9948579991246], [-118.070719, 33.99442899912469], [-118.070298, 33.9948579991246], [-118.071371, 33.99559699912469], [-118.071004, 33.996447999124705], [-118.06984400000017, 33.99562599912469], [-118.069066, 33.99573099912467], [-118.068478, 33.995445999124684], [-118.068687, 33.994951999124616], [-118.06776100000015, 33.99433999912468], [-118.066368, 33.99575599912468], [-118.067719, 33.996672999124705], [-118.06719900000017, 33.99755099912463], [-118.063697, 33.99532199912468], [-118.063382, 33.99563899912471], [-118.0640120000001, 33.99605999912471], [-118.063248, 33.99634699912461], [-118.063145, 33.99686299912467], [-118.06623300000011, 33.998856999124556], [-118.067003, 34.000240999124635], [-118.06660000000011, 34.001097999124575], [-118.065315, 34.00281899912459], [-118.064016, 34.00398799912451], [-118.062184, 34.00541999912466], [-118.06169, 34.00486599912463]]], [[[-118.053574, 34.029441999124295], [-118.053267, 34.02905399912425], [-118.05289800000013, 34.02926199912408], [-118.051658, 34.028238999124305], [-118.053407, 34.02796699912432], [-118.0537, 34.02451299912422], [-118.0543, 34.023332999124285], [-118.058556, 34.02495699912435], [-118.054546, 34.02905099912425], [-118.054123, 34.02919599912429], [-118.054829, 34.03057299912416], [-118.054485, 34.03071599912425], [-118.053574, 34.029441999124295]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Whittier", "population": 0.9251486296217346, "cases": 122.0, "resource_uri": "/1.0/boundary/whittier-la-county-neighborhood-current/", "external_id": "whittier", "slug": "whittier-la-county-neighborhood-current", "metadata": {"sqmi": 14.7406413064, "type": "standalone-city", "name": "Whittier", "slug": "whittier"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.06939611939983, 34.052924561140095], [-118.06872200000018, 34.052415999123994], [-118.06872600000023, 34.05177999912403], [-118.06757426064034, 34.051785584915066], [-118.06757290642379, 34.0510891440237], [-118.06694728550687, 34.05109053284193], [-118.06694637620214, 34.05085696562919], [-118.06653206779393, 34.05085810604666], [-118.06653322341458, 34.05110175194648], [-118.06621500000024, 34.05110499912397], [-118.06621310247677, 34.05154237828157], [-118.06506700000028, 34.05154199912406], [-118.06504584473575, 34.05054502463832], [-118.06426784342119, 34.05054634813357], [-118.06420116492063, 34.050749297085744], [-118.06217360941072, 34.050757135280875], [-118.06217251052104, 34.0503044266777], [-118.06113894737008, 34.05030664566099], [-118.06107368660663, 34.04716115450025], [-118.06064446830182, 34.047095899895794], [-118.06064408156399, 34.04679060804793], [-118.05998757554444, 34.04679233514528], [-118.05998400000028, 34.046415999124186], [-118.06028000000023, 34.04599699912417], [-118.05993980505536, 34.04594357779368], [-118.06008195238772, 34.045292421130796], [-118.05783964602368, 34.045296164342965], [-118.05780240417006, 34.044568762874526], [-118.05679635024988, 34.044569757023574], [-118.0570070000003, 34.04311399912416], [-118.05562100000031, 34.04304999912416], [-118.05560713540166, 34.04347966949245], [-118.05343721146177, 34.043439630783624], [-118.05343427013584, 34.042762442439425], [-118.05251019161155, 34.042769189175516], [-118.0525124772634, 34.042576832082105], [-118.05168729850767, 34.0421684455472], [-118.05219900000021, 34.04191699912414], [-118.05070312900001, 34.04067313436363], [-118.05082846150732, 34.04025305941426], [-118.05049000000022, 34.03985599912415], [-118.04960730636348, 34.03928430879347], [-118.05143697086712, 34.03940892214534], [-118.05174341273404, 34.03913616964484], [-118.05510900000024, 34.038130999124206], [-118.05517089344359, 34.03775846295378], [-118.0555122715036, 34.03761452686351], [-118.0546703700574, 34.03615896430702], [-118.05439000000025, 34.035262999124356], [-118.05352700000023, 34.035882999124254], [-118.05307600000012, 34.035348999124274], [-118.04982221419186, 34.03805967378004], [-118.04946200000023, 34.03775899912426], [-118.05012790413377, 34.03712395280941], [-118.04889879883156, 34.03611206315982], [-118.048198349189, 34.036704281197835], [-118.04763700000026, 34.03624099912423], [-118.0472460000002, 34.03615099912423], [-118.04557012490194, 34.03715537632351], [-118.04532865840504, 34.03691962833936], [-118.0453572636115, 34.036537200184554], [-118.04734506517603, 34.034271204419575], [-118.04742652701447, 34.034103223465834], [-118.04720000000022, 34.03391299912432], [-118.04876876994095, 34.033020197939685], [-118.04657070407684, 34.033305691240514], [-118.04572127026931, 34.03365625533591], [-118.04515978151143, 34.034638640127625], [-118.04432800000026, 34.035082999124306], [-118.044588437409, 34.035250527682024], [-118.04339588260251, 34.035614085128394], [-118.04188428556984, 34.03536905358813], [-118.03805298198338, 34.03431900503453], [-118.0372525549873, 34.03062696160991], [-118.03759919699166, 34.02717485614444], [-118.04001769067294, 34.02578768979709], [-118.04068600000024, 34.02639999912438], [-118.0424333453036, 34.02666198515494], [-118.04406321380188, 34.02714873799548], [-118.04570021356706, 34.028876475061054], [-118.04762712660012, 34.02945187587977], [-118.05012900000035, 34.02822899912438], [-118.05202400000024, 34.02634299912439], [-118.05307400000024, 34.0241829991244], [-118.05379400000021, 34.02166499912447], [-118.05425000000031, 34.02065599912447], [-118.05464800000023, 34.020629999124466], [-118.0554330000002, 34.02114699912437], [-118.05598000000029, 34.02051099912448], [-118.05653100000038, 34.02055899912447], [-118.05932200000026, 34.02191699912444], [-118.06116200000032, 34.02171899912443], [-118.06090500000029, 34.02121399912449], [-118.06148600000027, 34.021023999124445], [-118.06979000000025, 34.020446999124474], [-118.06988800000029, 34.02082599912454], [-118.07435900000023, 34.02037599912441], [-118.07500800000015, 34.0193659991244], [-118.0783770000003, 34.0174849991245], [-118.07866200000025, 34.01694299912441], [-118.07928700000028, 34.01691099912445], [-118.07932800000019, 34.017764999124594], [-118.07952400000022, 34.018204999124464], [-118.08001800000027, 34.01803099912448], [-118.08385700000031, 34.01954499912446], [-118.0848380000004, 34.018834999124465], [-118.08512400000015, 34.01910299912446], [-118.08295500000031, 34.020586999124426], [-118.07925212699399, 34.023533999124446], [-118.07906700000025, 34.023533999124375], [-118.07897978105522, 34.023739835834775], [-118.07555192679987, 34.02639555644457], [-118.07510185510341, 34.02658830835], [-118.07657900000031, 34.02470499912442], [-118.0729710000003, 34.02807599912429], [-118.07304300000017, 34.03004599912429], [-118.07259400000025, 34.03072499912435], [-118.07279198688651, 34.030999419031765], [-118.07108202457052, 34.02983122479907], [-118.07102080108044, 34.03045587621798], [-118.07125729293914, 34.03105303963076], [-118.07343653753378, 34.03401461166383], [-118.0750896434646, 34.03715681561098], [-118.07529831351394, 34.03795974953298], [-118.07472435580435, 34.04077935567412], [-118.07201362464866, 34.047434586672786], [-118.07245105316235, 34.051741324222796], [-118.07204137648507, 34.056047383898324], [-118.07155688772028, 34.05723722056429], [-118.0711770000003, 34.0572109991241], [-118.07021500000023, 34.05404599912402], [-118.06939611939983, 34.052924561140095]], [[-118.05482900000027, 34.03057299912425], [-118.05412300000029, 34.02919599912436], [-118.05454600000026, 34.02905099912435], [-118.05855600000021, 34.02495699912441], [-118.05430000000023, 34.02333299912439], [-118.05370000000025, 34.024512999124326], [-118.05340700000019, 34.027966999124374], [-118.05165800000016, 34.028238999124405], [-118.05289800000031, 34.029261999124195], [-118.05326700000032, 34.029053999124294], [-118.0544850000003, 34.03071599912433], [-118.05482900000027, 34.03057299912425]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Whittier Narrows", "population": 0, "cases": 0.0, "resource_uri": "/1.0/boundary/whittier-narrows-la-county-neighborhood-current/", "external_id": "whittier-narrows", "slug": "whittier-narrows-la-county-neighborhood-current", "metadata": {"sqmi": 2.89953996124, "type": "unincorporated-area", "name": "Whittier Narrows", "slug": "whittier-narrows"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.2300539720206, 33.92809400563807], [-118.22803398602441, 33.919832000692615], [-118.22408998599357, 33.91979900405932], [-118.22237098606283, 33.90882600265707], [-118.2227109816637, 33.90872300749292], [-118.22503598588249, 33.9089770016719], [-118.22761798573514, 33.908403001685], [-118.22749698595402, 33.90817600215031], [-118.22810397910536, 33.908015004317555], [-118.22826999302038, 33.90825700080967], [-118.22876198598713, 33.908146002309124], [-118.2286469859508, 33.9079340021371], [-118.23016597907328, 33.9075440041977], [-118.23037099302255, 33.907813000815935], [-118.23065698590794, 33.907752002106854], [-118.23050898578609, 33.90746300169615], [-118.23103098624256, 33.90728600466235], [-118.23610397898487, 33.90595200175833], [-118.23609699300873, 33.91375300318529], [-118.23778697902715, 33.913753001561595], [-118.23780699301437, 33.914406003163606], [-118.23840197902757, 33.914405001561875], [-118.23845899302889, 33.91622900309953], [-118.23905597900807, 33.91622400165093], [-118.23898399295592, 33.91771000339884], [-118.24525698661346, 33.91785799969121], [-118.24538298609075, 33.91746200276463], [-118.24620398594715, 33.91731800364924], [-118.25445698599441, 33.91731100084498], [-118.25445598607794, 33.912932003753774], [-118.26092698601198, 33.91271599991176], [-118.26091298604328, 33.90556700395967], [-118.26350798609243, 33.905531000150965], [-118.26365898608431, 33.90234800318528], [-118.26664297208013, 33.90194900561263], [-118.28225397210174, 33.90190000561613], [-118.28208597494353, 33.923201000103546], [-118.28193598879125, 33.923093000268835], [-118.27822598175123, 33.92321799797706], [-118.2782209887908, 33.92250900026278], [-118.27753398960883, 33.92243300664824], [-118.27728898604401, 33.92285600238396], [-118.27733197487872, 33.92328100042949], [-118.27322798324934, 33.92328200466444], [-118.27322798953149, 33.92311400014205], [-118.25359399531303, 33.923095004551875], [-118.2535499953426, 33.92730000347017], [-118.25381397671157, 33.92730000129805], [-118.25380398602687, 33.92818400238465], [-118.25347398602658, 33.928632002384866], [-118.25426797488676, 33.929462000125625], [-118.23997798615723, 33.929521002041064], [-118.23032400020591, 33.9290010021684], [-118.2300539720206, 33.92809400563807]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Willowbrook", "population": 0.3980967800861039, "cases": 61.0, "resource_uri": "/1.0/boundary/willowbrook-la-county-neighborhood-current/", "external_id": "willowbrook", "slug": "willowbrook-la-county-neighborhood-current", "metadata": {"sqmi": 3.76636072646, "type": "unincorporated-area", "name": "Willowbrook", "slug": "willowbrook"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.224761, 33.82460699912682], [-118.224576, 33.82438099912675], [-118.22457, 33.82156799912681], [-118.222768, 33.81272799912693], [-118.222442, 33.81245199912698], [-118.222436, 33.80415199912701], [-118.226797, 33.79214799912718], [-118.226942, 33.79069999912725], [-118.22734100000011, 33.790805999127166], [-118.22768100000016, 33.78994399912726], [-118.22066900000016, 33.782536999127345], [-118.2419478738631, 33.76652963969062], [-118.24544001553456, 33.7657050004687], [-118.250027999634, 33.76432098700933], [-118.25050598040951, 33.76525600895125], [-118.24970101553725, 33.76557499601129], [-118.24963498737289, 33.76584700048136], [-118.25044000485731, 33.766945014656685], [-118.25111501788402, 33.766710996110895], [-118.25119898676876, 33.766797016866775], [-118.25070301266096, 33.767302987270426], [-118.25075899191748, 33.76755200026005], [-118.25063698449654, 33.76757499174047], [-118.24795897685198, 33.765412003777634], [-118.24749998903843, 33.76553601045775], [-118.24790299759546, 33.76612800161737], [-118.24750998533435, 33.766422997567624], [-118.24756601720279, 33.766532009803846], [-118.2489890162159, 33.76838500737261], [-118.24925102439009, 33.76853300516268], [-118.24971900886969, 33.76814299179008], [-118.25005598926235, 33.76846297847987], [-118.25004699259607, 33.76880500963246], [-118.24974799812752, 33.76918597372655], [-118.24986900591878, 33.76937300968226], [-118.2491260180805, 33.77041599161856], [-118.2493169999423, 33.77069899201387], [-118.24924197511179, 33.77112999019912], [-118.24886001138789, 33.77185498470498], [-118.2484919898664, 33.771792008041416], [-118.24786601130091, 33.772070010288836], [-118.24710197862932, 33.773044017784294], [-118.24331301423683, 33.775234995375186], [-118.24108599736887, 33.77689001367491], [-118.24193899707312, 33.777293022231994], [-118.24254098452846, 33.77730001963896], [-118.24440797691145, 33.77644901919396], [-118.244302016176, 33.77629902214494], [-118.2453020140405, 33.77591200766126], [-118.24521199476614, 33.775774006167175], [-118.24548999701355, 33.7757929991292], [-118.24746100348479, 33.77482998755899], [-118.2493000062395, 33.773407988175535], [-118.2493519869776, 33.77289402073514], [-118.24981502592154, 33.77258397772917], [-118.2495860055234, 33.77224799696617], [-118.250691017106, 33.77044598050609], [-118.25525401046585, 33.765570997493136], [-118.25557499678537, 33.76536502118734], [-118.25619397794354, 33.76576297898441], [-118.25587798977222, 33.765281999320166], [-118.25855399815764, 33.76222397459892], [-118.25841999518181, 33.761996006442665], [-118.25937001156748, 33.76106398338953], [-118.25960497713086, 33.76107997746277], [-118.2600149830949, 33.766158990134336], [-118.25979801086393, 33.76636401942244], [-118.26063201760614, 33.76651901461931], [-118.26082100020882, 33.766365019052124], [-118.26255598887496, 33.76624001274242], [-118.26254299369053, 33.76608001939761], [-118.26302502559638, 33.76605897456434], [-118.26312698781345, 33.76589898121943], [-118.26321700708773, 33.766274999777735], [-118.2639070145583, 33.76577097602103], [-118.26395699603736, 33.765083020421805], [-118.2614319843305, 33.76334797914354], [-118.26106601467991, 33.759395022887844], [-118.26132002581744, 33.75917599878557], [-118.26150600953142, 33.75928501102197], [-118.26158697952748, 33.759198990265915], [-118.26141199173885, 33.75907198469718], [-118.26346302118858, 33.75687800821758], [-118.26364900490252, 33.75697802378764], [-118.2673250111526, 33.753096988249645], [-118.26776000785605, 33.753056003436775], [-118.26798297786453, 33.75652897965793], [-118.26731601448634, 33.75651498484382], [-118.26755797745676, 33.75663799189416], [-118.26807399676845, 33.758724008379204], [-118.26758601969715, 33.75997901701072], [-118.26654598403725, 33.76110002266662], [-118.2662799773448, 33.76105798561207], [-118.26607200178009, 33.761291004528466], [-118.26553499024739, 33.76131899415679], [-118.26541598171532, 33.76149198268608], [-118.26553099172905, 33.7616369815872], [-118.26598398176499, 33.76165597454916], [-118.26543397504773, 33.76203099347808], [-118.26594699547057, 33.76226801091265], [-118.26523499614923, 33.763229023223445], [-118.26536899912496, 33.76331199247866], [-118.26568898581482, 33.762983009122685], [-118.26601102437576, 33.76323602063061], [-118.27045900772184, 33.758946978387605], [-118.27033300178289, 33.75885801135507], [-118.26965898838544, 33.75377200127645], [-118.27199801637848, 33.75439298169381], [-118.27192299154787, 33.75453798059517], [-118.27283902052767, 33.754798989139545], [-118.27314501240332, 33.75512697286605], [-118.27405699025266, 33.75660400448858], [-118.2735069835354, 33.756099980731925], [-118.27420898656096, 33.75722898342421], [-118.27061900106682, 33.766973004285035], [-118.27733298683454, 33.76619297754008], [-118.27738901870315, 33.7666299735028], [-118.2769039879085, 33.76690497686136], [-118.2770269949589, 33.767063023559096], [-118.27692597975923, 33.76712400096364], [-118.27857999842954, 33.76900998630852], [-118.27991497742745, 33.76825400328557], [-118.2755420189117, 33.760737998922316], [-118.27743700092294, 33.758671975029046], [-118.27779397390712, 33.758635988364134], [-118.2784429965649, 33.75777899014168], [-118.27827700544263, 33.757513983078766], [-118.27990398150216, 33.75633999705532], [-118.28278601880525, 33.75581997922532], [-118.28344098662842, 33.75589200516708], [-118.28637800355844, 33.755281021045505], [-118.28732702031448, 33.75504800212928], [-118.28763900996762, 33.75469297579203], [-118.28968398902772, 33.75517500769799], [-118.28980499681899, 33.75503400731507], [-118.28855583008492, 33.75439558011875], [-118.2903720000001, 33.75360999912772], [-118.292204, 33.75361799912759], [-118.29220400000014, 33.757316999127596], [-118.29340400000017, 33.76381699912748], [-118.29590400000012, 33.77471699912734], [-118.29640400000011, 33.780316999127294], [-118.297705, 33.78221699912727], [-118.292904, 33.77931699912736], [-118.28940400000012, 33.7785169991273], [-118.28200400000014, 33.77881699912734], [-118.2804040000001, 33.77901699912724], [-118.282104, 33.79061699912718], [-118.282704, 33.79201699912706], [-118.28330400000017, 33.79291699912709], [-118.286905, 33.79771699912713], [-118.28293, 33.797630999127136], [-118.282997, 33.79824099912714], [-118.264502, 33.799131999127184], [-118.264402, 33.80097499912712], [-118.264603, 33.80469699912696], [-118.263361, 33.80470499912713], [-118.262259, 33.804511999127094], [-118.262261, 33.80461599912712], [-118.256512, 33.80477399912709], [-118.258445, 33.79944199912709], [-118.237482, 33.800480999127075], [-118.230261, 33.792771999127176], [-118.228856, 33.795263999127066], [-118.227181, 33.80009999912712], [-118.2244320000001, 33.804585999127056], [-118.22394000000014, 33.80621899912701], [-118.223926, 33.806422999127], [-118.22528, 33.808152999126975], [-118.225373, 33.80845799912702], [-118.225387, 33.81100799912689], [-118.228066, 33.824194999126846], [-118.228503, 33.824374999126746], [-118.226622, 33.829530999126725], [-118.224761, 33.82460699912682]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Wilmington", "population": 0.5648653737525889, "cases": 90.0, "resource_uri": "/1.0/boundary/wilmington-la-county-neighborhood-current/", "external_id": "wilmington", "slug": "wilmington-la-county-neighborhood-current", "metadata": {"sqmi": 9.1412927044, "type": "segment-of-a-city", "name": "Wilmington", "slug": "wilmington"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.313709, 34.07630999912366], [-118.313809, 34.07310999912358], [-118.313609, 34.07180999912379], [-118.31440900000011, 34.0712099991237], [-118.314093, 34.06236199912393], [-118.31443600000011, 34.061906999123785], [-118.325909, 34.062009999123724], [-118.3262090000001, 34.076309999123566], [-118.313709, 34.07630999912366]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Windsor Square", "population": null, "cases": null, "resource_uri": "/1.0/boundary/windsor-square-la-county-neighborhood-current/", "external_id": "windsor-square", "slug": "windsor-square-la-county-neighborhood-current", "metadata": {"sqmi": 0.683463802484, "type": "segment-of-a-city", "name": "Windsor Square", "slug": "windsor-square"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.562213, 34.231502999121666], [-118.56211900000015, 34.201003999122015], [-118.562319, 34.193803999122224], [-118.5623180000001, 34.18650399912217], [-118.565519, 34.18650399912217], [-118.568177, 34.185464999122274], [-118.569759, 34.185336999122335], [-118.571623, 34.185853999122294], [-118.573205, 34.18745899912223], [-118.574038, 34.187892999122255], [-118.575135, 34.188150999122314], [-118.588319, 34.18820399912227], [-118.58832000000014, 34.23530299912163], [-118.582669, 34.23530899912171], [-118.58168, 34.235064999121654], [-118.581068, 34.234351999121664], [-118.580938, 34.231993999121705], [-118.58047900000012, 34.23151699912174], [-118.57102000000013, 34.231502999121666], [-118.57102100000012, 34.23558199912164], [-118.5659760000001, 34.23469099912177], [-118.56222000000012, 34.23380299912176], [-118.562213, 34.231502999121666]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Winnetka", "population": 0.517855941892528, "cases": 154.0, "resource_uri": "/1.0/boundary/winnetka-la-county-neighborhood-current/", "external_id": "winnetka", "slug": "winnetka-la-county-neighborhood-current", "metadata": {"sqmi": 4.77724070209, "type": "segment-of-a-city", "name": "Winnetka", "slug": "winnetka"}}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.57569, 34.18822399912241], [-118.57361900000015, 34.18770399912219], [-118.573, 34.18728199912221], [-118.571623, 34.185853999122294], [-118.569759, 34.185336999122335], [-118.568177, 34.185464999122274], [-118.565519, 34.18650399912217], [-118.5623180000001, 34.18650399912217], [-118.562318, 34.17040499912242], [-118.56313100000013, 34.170536999122454], [-118.5659220000001, 34.17045999912247], [-118.56591800000015, 34.16360499912251], [-118.56375500000016, 34.16357799912253], [-118.5622800000001, 34.162910999122566], [-118.5623130000001, 34.161577999122564], [-118.562459, 34.1613009991226], [-118.56306900000014, 34.16086799912264], [-118.563197, 34.159702999122544], [-118.56369500000018, 34.1587729991226], [-118.56314, 34.15791099912272], [-118.563165, 34.15714399912263], [-118.565033, 34.155695999122656], [-118.566024, 34.15358699912274], [-118.566836, 34.152329999122685], [-118.56682300000013, 34.15071099912267], [-118.567299, 34.14953899912274], [-118.567299, 34.14820799912272], [-118.56791800000015, 34.14500499912283], [-118.5675180000001, 34.14390499912275], [-118.567918, 34.13790599912288], [-118.56631700000014, 34.13770599912282], [-118.5652170000001, 34.13440599912281], [-118.56405300000011, 34.13190999912294], [-118.564869, 34.13128599912294], [-118.56600500000015, 34.13078999912298], [-118.56586737033591, 34.13059338597857], [-118.61497800000015, 34.14926699912275], [-118.614971, 34.14727699912282], [-118.622888, 34.14726799912276], [-118.629153, 34.14689899912284], [-118.628978, 34.14734899912289], [-118.629811, 34.14989299912275], [-118.630075, 34.149832999122836], [-118.6302550000001, 34.15038099912274], [-118.63125, 34.151086999122725], [-118.632162, 34.15052499912283], [-118.638483, 34.15759699912267], [-118.64127600000012, 34.15663299912267], [-118.641269, 34.158313999122704], [-118.640274, 34.158679999122654], [-118.63994300000012, 34.158881999122684], [-118.639975, 34.15908599912263], [-118.639867, 34.158816999122664], [-118.639735, 34.159090999122675], [-118.64197500000013, 34.16197499912263], [-118.64555300000016, 34.161984999122566], [-118.645534, 34.165695999122555], [-118.65043600000013, 34.16571099912254], [-118.652037, 34.16534099912257], [-118.654281, 34.16572199912256], [-118.6542639999999, 34.16942699912249], [-118.658017, 34.16943799912257], [-118.658721, 34.16927599912257], [-118.658598, 34.175208999122496], [-118.659486, 34.17523399912247], [-118.658619, 34.17567499912245], [-118.659199, 34.17573799912242], [-118.658593, 34.17605899912244], [-118.658589, 34.176748999122566], [-118.668153, 34.17674999912245], [-118.668111, 34.183777999122384], [-118.660621, 34.18330399912235], [-118.65992100000011, 34.183803999122254], [-118.6580210000001, 34.184303999122285], [-118.654021, 34.18420399912236], [-118.644521, 34.18630399912226], [-118.60763000000013, 34.186396999122344], [-118.60674, 34.18643499912233], [-118.597311, 34.18821299912225], [-118.57569, 34.18822399912241]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Woodland Hills", "population": 0.6805317051453286, "cases": 107.0, "resource_uri": "/1.0/boundary/woodland-hills-la-county-neighborhood-current/", "external_id": "woodland-hills", "slug": "woodland-hills-la-county-neighborhood-current", "metadata": {"sqmi": 14.768309648, "type": "segment-of-a-city", "name": "Woodland Hills", "slug": "woodland-hills"}}}], "lastUpdated": "8:00pm 4/29"}
\ No newline at end of file
+{"type": "FeatureCollection", "features": [{"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.2026174792054, 34.53898972076929], [-118.18946958918569, 34.5385546636616], [-118.18950400422953, 34.5349457732411], [-118.18512483634102, 34.53482956044709], [-118.18516440876347, 34.53124651970553], [-118.17601577983017, 34.531354702430015], [-118.17618930843811, 34.52380318562459], [-118.16702561365966, 34.52351227823281], [-118.16294026595283, 34.523716853632315], [-118.16298888279478, 34.52758691891819], [-118.1542679776641, 34.52778986108284], [-118.15402725922898, 34.527320039393956], [-118.15365520720269, 34.527429379780635], [-118.15063530637566, 34.52459083233748], [-118.1506441823148, 34.524313334147], [-118.15033449729292, 34.52430740894222], [-118.14850508010561, 34.52258602710374], [-118.14850638270086, 34.52199529568578], [-118.1478640542421, 34.521983357228365], [-118.14301598797277, 34.51742182339587], [-118.14300391540229, 34.51688741100935], [-118.14243635370282, 34.51687554873165], [-118.13292042712894, 34.5079196554126], [-118.1315149885402, 34.50797105874297], [-118.12342857629446, 34.500365923139725], [-118.12284845735702, 34.49878370216131], [-118.12242053861624, 34.49878438140744], [-118.12277940488678, 34.498399398663054], [-118.12246490434278, 34.497537010677036], [-118.12274394249323, 34.4972209172346], [-118.12209828447689, 34.49683022396537], [-118.12209634940832, 34.4965295572172], [-118.12099588531962, 34.49508309698031], [-118.07970439167389, 34.49536813309862], [-118.07985085316027, 34.48084042740588], [-118.07970177853352, 34.473579517385176], [-118.09672894180616, 34.47352001660662], [-118.09679656118362, 34.48076701266776], [-118.11862856604758, 34.480677896362835], [-118.11862411128782, 34.47704643673872], [-118.11823562296836, 34.4770468157905], [-118.1178503709481, 34.476425875279766], [-118.11866052023461, 34.47642461898611], [-118.11872970749987, 34.46616923814347], [-118.13164148693322, 34.466174605450966], [-118.1404854110729, 34.466422355307934], [-118.1496201698695, 34.46643908081293], [-118.14960678145502, 34.45200987113323], [-118.18470858752102, 34.45195843862283], [-118.1847435105529, 34.45570100985002], [-118.19719472198943, 34.45580246193274], [-118.19752455957536, 34.45552458355188], [-118.19726145537918, 34.455802353469466], [-118.19753094645864, 34.45567158380637], [-118.19756307757581, 34.45630908760043], [-118.19810239462436, 34.45584428851268], [-118.20630231208393, 34.45613571872994], [-118.20660896333821, 34.462886925156575], [-118.2078463648407, 34.46286485199525], [-118.20800446863116, 34.463656896194394], [-118.20789867089195, 34.46403864877573], [-118.20799261212717, 34.46605746521052], [-118.2196822619058, 34.465710534571], [-118.21966646863281, 34.46266753820351], [-118.23702710197351, 34.463398142499884], [-118.23702088651507, 34.46740281844628], [-118.24533641525986, 34.46732248905014], [-118.24503150669833, 34.47810800546601], [-118.24607830998299, 34.47811289528655], [-118.24597834271935, 34.48170943206675], [-118.25773760650775, 34.48183679264869], [-118.25991860605343, 34.495903101058374], [-118.25554467213598, 34.49588389204682], [-118.25567245743709, 34.510049171616565], [-118.25550542881398, 34.539292874673706], [-118.23788296951274, 34.53894795222954], [-118.22024775908258, 34.539088978245836], [-118.22018208969565, 34.542752039858854], [-118.20698646804908, 34.54269662617337], [-118.20702192802953, 34.53901218566977], [-118.2026174792054, 34.53898972076929]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Acton", "metadata": {"sqmi": 39.3391089485, "type": "unincorporated-area", "name": "Acton", "slug": "acton"}, "cases": 8.0, "population": 0.07971303308090873, "external_id": "acton", "slug": "acton-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/acton-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.3090080000001, 34.03741099912408], [-118.30040800000012, 34.03731199912409], [-118.291508, 34.03681199912407], [-118.2914080000001, 34.025511999124234], [-118.305408, 34.025711999124255], [-118.3090080000001, 34.025611999124216], [-118.3090080000001, 34.03741099912408]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Adams-Normandie", "metadata": {"sqmi": 0.805350187789, "type": "segment-of-a-city", "name": "Adams-Normandie", "slug": "adams-normandie"}, "cases": 27.0, "population": 0.08201950241501868, "external_id": "adams-normandie", "slug": "adams-normandie-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/adams-normandie-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.7619250000001, 34.16820299912263], [-118.726317, 34.16787499912258], [-118.73232400000016, 34.1543019991227], [-118.73706000000028, 34.15435299912277], [-118.7370238572315, 34.14304324369543], [-118.7358719329437, 34.14267020794711], [-118.7349370457869, 34.142153456231014], [-118.73063830005931, 34.139239215941366], [-118.7291821088183, 34.13843288950915], [-118.72795645566335, 34.13810158993966], [-118.7267972395646, 34.137998650484825], [-118.72413386088797, 34.13829962092446], [-118.7241120000002, 34.13631199912296], [-118.71968500000018, 34.13624099912306], [-118.71941000000017, 34.132051999123014], [-118.72018200000016, 34.132063999123034], [-118.72074019325878, 34.13171053903597], [-118.7206210000002, 34.13065899912307], [-118.72015854939072, 34.129857545593424], [-118.72014571764694, 34.12897218047323], [-118.71979021515855, 34.12897251688813], [-118.71978727889746, 34.12816757903454], [-118.71958900000016, 34.128165999123], [-118.7195020000001, 34.12500799912309], [-118.7238930000002, 34.124957999123154], [-118.72388228247466, 34.12533062101568], [-118.72409926147974, 34.12532999249393], [-118.72411632723238, 34.12895898595186], [-118.723905522151, 34.12896710362153], [-118.72390200000012, 34.13122199912303], [-118.72501700000015, 34.131213999123055], [-118.72634135743859, 34.131521377044315], [-118.72846054601429, 34.13150954269163], [-118.72846759502652, 34.132395345385376], [-118.73442300000019, 34.13226999912301], [-118.73637200000019, 34.13073199912311], [-118.73835200000015, 34.132202999123045], [-118.75597600000015, 34.140989999123], [-118.75938900000011, 34.139188999122915], [-118.77146900000011, 34.133451999123054], [-118.78703700000014, 34.134352999122925], [-118.80035900000014, 34.13837899912301], [-118.79289500000016, 34.14605899912285], [-118.79184000000024, 34.15051999912281], [-118.79153600000022, 34.15112599912278], [-118.7908710000002, 34.15433799912273], [-118.7908090000003, 34.1547279991228], [-118.791765, 34.15635099912278], [-118.78977500000018, 34.1626039991227], [-118.78924400000014, 34.16819599912265], [-118.78869700000011, 34.16851499912243], [-118.7619250000001, 34.16820299912263]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Agoura Hills", "metadata": {"sqmi": 8.14676029818, "type": "standalone-city", "name": "Agoura Hills", "slug": "agoura-hills"}, "cases": 31.0, "population": 0.20882452004041765, "external_id": "agoura-hills", "slug": "agoura-hills-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/agoura-hills-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.25467739592212, 34.55830403375057], [-118.25550542881398, 34.539292874673706], [-118.25562870073382, 34.53194869441054], [-118.25561246634336, 34.50313113563912], [-118.25523780496779, 34.50313348975405], [-118.255609480627, 34.50276491160674], [-118.25562510291037, 34.50167983601259], [-118.25811405396979, 34.49948107630435], [-118.2594374116516, 34.4987730506989], [-118.2613229943943, 34.498169151035064], [-118.26984846079654, 34.497104262398516], [-118.27148857515976, 34.49676572625064], [-118.283360042033, 34.49195690010686], [-118.28513411870637, 34.49070523086307], [-118.28614845568582, 34.489385898025276], [-118.28651406230853, 34.48823496406879], [-118.28684555746976, 34.48432886084255], [-118.28786479733525, 34.48254794021084], [-118.28941119030785, 34.48122246989989], [-118.29153076154049, 34.48036033704529], [-118.29584490977795, 34.47987753494308], [-118.29783723634789, 34.47934581114602], [-118.31100104801514, 34.47287305069936], [-118.31238632140938, 34.472414667854395], [-118.3169902682283, 34.4716158087797], [-118.31828825871858, 34.47111098814261], [-118.31941321756912, 34.47041800624682], [-118.32306573576233, 34.46755883353657], [-118.32405069951635, 34.46710783471354], [-118.32557364264049, 34.4667337008158], [-118.32479403220262, 34.45872952237763], [-118.32457920571778, 34.451549965843114], [-118.33449350049823, 34.45260819866622], [-118.3434326032265, 34.45164343078068], [-118.34334431384156, 34.45946599242291], [-118.34410936041725, 34.45949199096732], [-118.34330556155025, 34.46022096779477], [-118.34325518543041, 34.467355723077766], [-118.37949695195, 34.467626696550035], [-118.37909563574739, 34.48651946673609], [-118.37952994222128, 34.48740946077916], [-118.37908175523032, 34.48759590132626], [-118.37897468288001, 34.49633109825049], [-118.36149945609571, 34.49660130538342], [-118.36181283433287, 34.5111524516377], [-118.36165485424554, 34.52567753123508], [-118.34406139577973, 34.52566643581506], [-118.34326775559877, 34.53990710112496], [-118.32611380868697, 34.54019150458609], [-118.30830565820204, 34.54023712905305], [-118.30697323479328, 34.558303349015844], [-118.2876129113904, 34.558149167787604], [-118.25467739592212, 34.55830403375057]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Agua Dulce", "metadata": {"sqmi": 31.4626319451, "type": "unincorporated-area", "name": "Agua Dulce", "slug": "agua-dulce"}, "cases": 1.0, "population": 0.041580041580041575, "external_id": "agua-dulce", "slug": "agua-dulce-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/agua-dulce-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.12174700000016, 34.10503999912332], [-118.11686600000012, 34.10732199912337], [-118.11293300000011, 34.101729999123364], [-118.11273900000016, 34.10094099912327], [-118.1127950000002, 34.10040899912349], [-118.11377500000016, 34.09996099912336], [-118.11318200000024, 34.09900299912349], [-118.11362200000015, 34.098704999123335], [-118.113213, 34.09790899912345], [-118.11317100000014, 34.09671899912345], [-118.113004, 34.09671599912344], [-118.11307600000018, 34.096048999123425], [-118.11273700000011, 34.09493699912345], [-118.11270700000019, 34.09387299912348], [-118.10839900000018, 34.09559799912354], [-118.10818900000018, 34.071653999123676], [-118.1108670000003, 34.07163599912371], [-118.10939900000017, 34.0711099991238], [-118.109401, 34.069840999123805], [-118.13570700000014, 34.06974099912372], [-118.13568800000014, 34.06792799912381], [-118.13515800000013, 34.06792999912375], [-118.13502900000016, 34.066022999123824], [-118.13498800000015, 34.06328399912382], [-118.13551200000019, 34.06327999912385], [-118.13550200000027, 34.0624569991239], [-118.1384700000002, 34.06242499912395], [-118.140266, 34.06220299912387], [-118.1416750000001, 34.06142599912384], [-118.142338, 34.06129399912394], [-118.1431670000002, 34.06088299912391], [-118.14342300000014, 34.06031199912392], [-118.14463200000016, 34.0599319991239], [-118.14579100000032, 34.060075999123946], [-118.147222, 34.0610039991238], [-118.148269, 34.06145899912391], [-118.151271, 34.06174299912383], [-118.15282000000015, 34.06232899912383], [-118.16483500000022, 34.06228299912385], [-118.16443300000016, 34.06450599912384], [-118.16401100000014, 34.06571199912379], [-118.16203200000014, 34.06967399912384], [-118.163371, 34.06974699912389], [-118.16171700000014, 34.07179299912378], [-118.16156200000016, 34.07297099912379], [-118.161761, 34.07463499912369], [-118.1604960000002, 34.075130999123715], [-118.1606730000002, 34.09374099912351], [-118.15935300000018, 34.094529999123345], [-118.159498, 34.09417099912348], [-118.15619100000012, 34.09650799912353], [-118.15546300000014, 34.09751499912347], [-118.15529, 34.09867199912348], [-118.141783, 34.09868199912348], [-118.14183100000021, 34.103971999123424], [-118.140045, 34.10407199912336], [-118.13902900000019, 34.10387299912341], [-118.13469400000015, 34.10391999912342], [-118.13469400000025, 34.10408499912339], [-118.13448900000016, 34.10416299912345], [-118.134478, 34.10544899912337], [-118.1352960000002, 34.10644999912332], [-118.1279350000003, 34.111145999123245], [-118.12174700000016, 34.10503999912332]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Alhambra", "metadata": {"sqmi": 7.62381430605, "type": "standalone-city", "name": "Alhambra", "slug": "alhambra"}, "cases": 85.0, "population": 0.8672584430160187, "external_id": "alhambra", "slug": "alhambra-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/alhambra-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.32651297216451, 33.897572005620816], [-118.3264919904623, 33.88291600056771], [-118.34377498067973, 33.87730200415275], [-118.3438200000003, 33.89358699912605], [-118.3423229930002, 33.893598003649345], [-118.34230797916481, 33.894658000462954], [-118.3351739930528, 33.8946630031478], [-118.33517797915299, 33.89828700037314], [-118.33299998608817, 33.898290003992614], [-118.33306798601289, 33.897424001189115], [-118.33158098739203, 33.89751800549201], [-118.33081299116618, 33.89800199777932], [-118.32920998730374, 33.899434002399424], [-118.32869198101466, 33.90012400698114], [-118.32649197216287, 33.901932005626534], [-118.32651297216451, 33.897572005620816]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Alondra Park", "metadata": {"sqmi": 1.13989423058, "type": "unincorporated-area", "name": "Alondra Park", "slug": "alondra-park"}, "cases": 11.0, "population": 0.08790857508191481, "external_id": "alondra-park", "slug": "alondra-park-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/alondra-park-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.15135397181479, 34.21550800599232], [-118.14083997180039, 34.2150280059893], [-118.13643997179442, 34.21464400598773], [-118.13500397179266, 34.21400400598667], [-118.1249029717804, 34.20830400597686], [-118.1178949717721, 34.204116005969816], [-118.10682297175947, 34.19582900595646], [-118.10470299382786, 34.19480500893741], [-118.10486299337606, 34.19337300137353], [-118.10691897176056, 34.19329600595314], [-118.10478797175834, 34.19118600595004], [-118.1048859717586, 34.19078600594942], [-118.10408198392092, 34.19038500011493], [-118.10457898783726, 34.189983004956076], [-118.10456997175893, 34.188480005946516], [-118.10306097175722, 34.187376005944635], [-118.10303198591744, 34.18562000068169], [-118.10226098584002, 34.185604004382974], [-118.10194697175632, 34.18527000594167], [-118.10224297175694, 34.18476900594103], [-118.10157097175623, 34.18416100594005], [-118.10066597175518, 34.18367100593919], [-118.10039497175487, 34.18332800593871], [-118.10028797175575, 34.180371005934916], [-118.09825598586521, 34.17568500087614], [-118.0954069858875, 34.17570600417423], [-118.09578597175133, 34.17486800592674], [-118.09578998596244, 34.174495006275144], [-118.09597698711119, 34.17451599892225], [-118.0961149717521, 34.1741420059258], [-118.09610797175237, 34.17305100592441], [-118.09650197175311, 34.1722050059233], [-118.09597298607832, 34.17106700312378], [-118.09565998549627, 34.171172001645964], [-118.09543498612963, 34.170708003236584], [-118.09504298556324, 34.170847001426104], [-118.09490298566963, 34.17029100190977], [-118.09551698608266, 34.1700840031334], [-118.0952019858763, 34.16940600422031], [-118.09600198515572, 34.169405999972156], [-118.09590098590482, 34.16916800409423], [-118.097802985863, 34.16913800010008], [-118.09780198588383, 34.16883900506988], [-118.09831898591047, 34.16883899997224], [-118.09833998588708, 34.16770900418361], [-118.10920497880868, 34.16765000176111], [-118.109233985872, 34.16864500427835], [-118.11178597877701, 34.16859600192681], [-118.11178997871643, 34.169143000426196], [-118.11100697177436, 34.16914400592281], [-118.11087997177388, 34.170117005924034], [-118.1111989717742, 34.170368005924466], [-118.11301398588536, 34.17033900029012], [-118.11302298591069, 34.16963600412637], [-118.11710297880174, 34.16960600183017], [-118.11698097178193, 34.17139300592714], [-118.11720497859268, 34.17375400048926], [-118.11660399954879, 34.173642030975614], [-118.11662098479437, 34.17541900068528], [-118.11735398047965, 34.17498300699283], [-118.11735798563593, 34.17586300494625], [-118.11877498615793, 34.17593700003496], [-118.11885998594175, 34.175416003986506], [-118.12124997876488, 34.17533400204223], [-118.12125298599257, 34.17554700350276], [-118.1225229859753, 34.17551000000765], [-118.12253798589968, 34.17520900420816], [-118.1286309787314, 34.175229002331484], [-118.12870898580903, 34.17656600454184], [-118.13190797875761, 34.17650700215657], [-118.13188397180078, 34.177066005937895], [-118.13210898496524, 34.177036003023495], [-118.14266698589739, 34.1817930042799], [-118.150103985988, 34.18180500159286], [-118.16299297888592, 34.18144900166741], [-118.16299398593176, 34.181611004199965], [-118.16411697886741, 34.18160400174929], [-118.16412898592915, 34.18308600421466], [-118.16745797184811, 34.18307500595406], [-118.16747498591971, 34.18143000251784], [-118.1690429788289, 34.18107800396841], [-118.16958397185158, 34.181405005952435], [-118.1704609718521, 34.18374500595565], [-118.17026197185167, 34.18410100595594], [-118.17082597185224, 34.184753005956935], [-118.17034697185106, 34.18603700595859], [-118.16971397185051, 34.18548000595775], [-118.16873398593386, 34.18544500420961], [-118.16872198587592, 34.189311004430635], [-118.17179997898107, 34.189394001355765], [-118.17090097796083, 34.19020500354395], [-118.17088797934701, 34.190605997994574], [-118.17060098520594, 34.190561006651684], [-118.1704109753017, 34.19120900875423], [-118.16921797184746, 34.19246100596672], [-118.16859197184708, 34.19067400596414], [-118.16833997184689, 34.190470005963725], [-118.16829598594319, 34.18849700075582], [-118.16767098556699, 34.18840900724123], [-118.16750697268235, 34.19057099493442], [-118.16687199057272, 34.19025600484966], [-118.16650297184395, 34.19123300596439], [-118.16762697184559, 34.191590005965146], [-118.16748097184512, 34.19212000596573], [-118.16849097184647, 34.192445005966434], [-118.16845497184612, 34.193250005967556], [-118.16748597184414, 34.19529700596985], [-118.16679797184291, 34.196220005970964], [-118.16579897184079, 34.19804200597304], [-118.16425097943677, 34.20145500241654], [-118.16257798601019, 34.201643003678015], [-118.163444971837, 34.19971300597467], [-118.16052498409628, 34.19877500724982], [-118.16000197183206, 34.20012600597448], [-118.16111697183317, 34.20127600597616], [-118.16076298594646, 34.201860004128385], [-118.16160197883016, 34.201844001895196], [-118.16290097183474, 34.20394800597997], [-118.16276098587986, 34.204376004407486], [-118.16315697893252, 34.20438400148187], [-118.16335298562798, 34.20479600186445], [-118.16364997909159, 34.204702004949525], [-118.16551697183725, 34.207177005984896], [-118.16550797183702, 34.20799700598596], [-118.16580497183745, 34.20810400598612], [-118.16590497183685, 34.21030400598899], [-118.16699197183807, 34.210908005989985], [-118.1667449798813, 34.21161100010454], [-118.16564698582404, 34.21156900459427], [-118.16500398126473, 34.21244599891348], [-118.16482399078532, 34.212348005207176], [-118.1646299718342, 34.2125600059916], [-118.16477697183446, 34.212673005991746], [-118.1642539718332, 34.213960005993364], [-118.1628629858692, 34.21521900444817], [-118.16685897894688, 34.21531700144248], [-118.16697998633309, 34.21546200048902], [-118.16780198550069, 34.215141004443716], [-118.16791798591441, 34.21529600429643], [-118.17059298600084, 34.215304002135866], [-118.17440198557995, 34.21508800371359], [-118.17730497928929, 34.21540400059524], [-118.17757497836148, 34.22009100270324], [-118.17231297184253, 34.21979600600273], [-118.16447597183212, 34.218236005998875], [-118.15934897182554, 34.21687000599602], [-118.1538779718182, 34.2158320059934], [-118.15135397181479, 34.21550800599232]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Altadena", "metadata": {"sqmi": 8.71033767246, "type": "unincorporated-area", "name": "Altadena", "slug": "altadena"}, "cases": 69.0, "population": 0.43621191048172964, "external_id": "altadena", "slug": "altadena-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/altadena-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.09679656118362, 34.48076701266776], [-118.09672894180616, 34.47352001660662], [-118.07970177853352, 34.473579517385176], [-118.07960022101274, 34.47383334430291], [-118.07958590889226, 34.470140728368804], [-118.04492629305284, 34.47033813707821], [-118.01111992998806, 34.470137708399236], [-118.01110636074138, 34.442702572947034], [-118.010533, 34.443162999119416], [-118.009765, 34.44330699911946], [-118.008517, 34.441098999119454], [-118.007429, 34.440442999119504], [-118.007141, 34.43964299911945], [-118.006421, 34.439066999119454], [-118.004997, 34.43860299911948], [-118.004645, 34.43825099911949], [-118.004341, 34.438330999119586], [-118.003493, 34.43807499911952], [-118.002949, 34.43764299911955], [-118.002053, 34.437258999119486], [-118.000645, 34.43714699911955], [-118.000325, 34.43693899911947], [-117.999221, 34.43721099911952], [-117.998677, 34.43709899911949], [-117.998229, 34.43727499911953], [-117.997109, 34.43569099911955], [-117.996421, 34.43554799911951], [-117.996005, 34.43521199911951], [-117.995173, 34.43522799911952], [-117.995013, 34.43468399911959], [-117.994357, 34.434331999119564], [-117.993797, 34.43407599911963], [-117.992325, 34.433851999119526], [-117.991636, 34.433467999119586], [-117.991012, 34.43220399911953], [-117.990548, 34.43193199911957], [-117.99098, 34.43137199911967], [-117.990628, 34.431131999119636], [-117.990228, 34.43127599911963], [-117.99018, 34.43034799911955], [-117.989316, 34.42962799911958], [-117.988564, 34.42929199911956], [-117.988836, 34.42892399911958], [-117.988836, 34.42844399911962], [-117.988676, 34.42818799911967], [-117.988068, 34.42791599911961], [-117.987428, 34.42725999911961], [-117.986324, 34.42713199911962], [-117.985924, 34.4267959991196], [-117.98482, 34.42663599911962], [-117.984324, 34.42633199911971], [-117.984196, 34.42612399911963], [-117.984228, 34.42548399911966], [-117.984004, 34.42529199911972], [-117.983252, 34.42511599911963], [-117.982548, 34.425179999119685], [-117.9821, 34.42485999911965], [-117.981252, 34.42295599911976], [-117.980644, 34.422395999119665], [-117.980644, 34.42201199911965], [-117.980356, 34.4215159991197], [-117.980484, 34.421179999119694], [-117.97978, 34.42098799911969], [-117.979172, 34.42039599911965], [-117.978004, 34.42029999911972], [-117.976564, 34.41943599911977], [-117.975764, 34.4193399991197], [-117.975092, 34.418363999119705], [-117.975108, 34.41788399911979], [-117.974916, 34.4174359991197], [-117.974564, 34.417275999119774], [-117.974052, 34.41788399911979], [-117.973284, 34.417579999119766], [-117.97306, 34.41717999911971], [-117.973188, 34.416379999119826], [-117.973092, 34.41588399911978], [-117.972644, 34.41553199911976], [-117.97226, 34.41557999911979], [-117.971412, 34.41508399911981], [-117.970948, 34.414603999119755], [-117.970884, 34.4142199991198], [-117.971188, 34.41354899911977], [-117.969444, 34.412412999119816], [-117.969332, 34.41198099911984], [-117.96874, 34.41138899911979], [-117.96866, 34.411116999119876], [-117.969092, 34.40998099911987], [-117.968292, 34.40956499911981], [-117.967955, 34.40921299911986], [-117.967859, 34.408508999119874], [-117.967075, 34.40759699911985], [-117.966131, 34.40748499911987], [-117.965459, 34.40674899911991], [-117.965091, 34.406668999119844], [-117.964243, 34.407100999119926], [-117.963411, 34.40705299911983], [-117.963091, 34.406508999119865], [-117.961027, 34.40554899911994], [-117.960675, 34.4056129991199], [-117.959363, 34.40663699911987], [-117.958019, 34.40710099911988], [-117.956995, 34.40692499911989], [-117.956579, 34.40641299911995], [-117.956035, 34.406444999119884], [-117.954595, 34.405804999119894], [-117.952115, 34.40575699911991], [-117.951715, 34.40628499911986], [-117.950899, 34.40633299911987], [-117.950515, 34.40652499911984], [-117.949283, 34.405692999119836], [-117.948355, 34.405404999119895], [-117.947843, 34.40550099911988], [-117.946819, 34.40537299911991], [-117.946083, 34.404860999119826], [-117.945827, 34.405100999119895], [-117.945427, 34.40494099911989], [-117.945171, 34.40463699911986], [-117.943875, 34.40407699911993], [-117.943379, 34.40350099911989], [-117.943699, 34.402156999119875], [-117.943571, 34.40202899911997], [-117.943363, 34.401852999119996], [-117.941315, 34.401868999119955], [-117.940579, 34.399804999119986], [-117.940915, 34.39830099912001], [-117.940835, 34.397756999119984], [-117.940467, 34.39730899912004], [-117.939602, 34.39494099912004], [-117.939682, 34.39438099911998], [-117.93821, 34.39292599912008], [-117.939298, 34.39174199912012], [-117.939954, 34.39182199912005], [-117.940354, 34.391661999120025], [-117.940562, 34.39127799912002], [-117.940226, 34.39065399912001], [-117.940338, 34.390253999120105], [-117.941762, 34.38943799912009], [-117.94253, 34.38871799912008], [-117.942978, 34.38857399912008], [-117.943426, 34.38799799912014], [-117.943378, 34.38782199912016], [-117.942914, 34.38758199912008], [-117.942818, 34.38732599912016], [-117.942946, 34.38705399912011], [-117.942658, 34.38674999912009], [-117.942274, 34.38666999912016], [-117.941554, 34.38684599912016], [-117.940338, 34.38668599912014], [-117.940306, 34.38626999912011], [-117.939778, 34.38607799912008], [-117.939746, 34.38516599912017], [-117.939314, 34.38479799912017], [-117.93869, 34.38466999912016], [-117.937602, 34.38402999912017], [-117.937122, 34.38393399912022], [-117.93645, 34.38422199912013], [-117.936066, 34.383901999120084], [-117.935442, 34.38246199912022], [-117.932578, 34.3811019991202], [-117.93246546941081, 34.38086126956004], [-117.92231951502197, 34.38071149252826], [-117.87590644792355, 34.38105273044494], [-117.78288061655057, 34.38252696926119], [-117.78068162561677, 34.37755887863301], [-117.7799038535965, 34.37750076536735], [-117.77929519805397, 34.37707062699436], [-117.77923553790853, 34.375333791805886], [-117.7785165171424, 34.37463559100091], [-117.77620342174897, 34.37466806359041], [-117.77470800695292, 34.3755589673081], [-117.77424589988907, 34.37558437436298], [-117.77322101503219, 34.375065058933586], [-117.7725621369034, 34.37499601152122], [-117.7709315510609, 34.37587630174973], [-117.76884117621243, 34.37582175629486], [-117.76795499780508, 34.37543298062556], [-117.76742520411798, 34.374483103624065], [-117.76724505378843, 34.37314196680855], [-117.76669580365811, 34.37270689115987], [-117.76618882736942, 34.3725405707712], [-117.76514637874145, 34.372644394733065], [-117.76380797922648, 34.37336218778341], [-117.76315067115652, 34.37416033646264], [-117.76208181818217, 34.37435034577773], [-117.75893539668476, 34.37392334987945], [-117.75651832796652, 34.37424066859807], [-117.75336765207899, 34.37325943668687], [-117.75078196433023, 34.37352248677989], [-117.74898303550968, 34.37255748873709], [-117.74787755175325, 34.37238670941402], [-117.74718884859554, 34.37244881166539], [-117.7465169903614, 34.37283419914502], [-117.74610271779055, 34.373356453177934], [-117.74599626571464, 34.374448338186774], [-117.74611326643726, 34.37587934702387], [-117.74648671029398, 34.377081817301914], [-117.74636345820448, 34.377468989340166], [-117.74598077016711, 34.377736038449086], [-117.74530448197697, 34.37789565359853], [-117.74407551184119, 34.37786557028638], [-117.74267167925815, 34.37864512935804], [-117.74205026712143, 34.37869448356763], [-117.74103938665525, 34.37796336490215], [-117.7403967100895, 34.37674717678926], [-117.73943741165154, 34.37646331117641], [-117.73858709845048, 34.37600198369225], [-117.73749371384372, 34.37589591040183], [-117.73565882378809, 34.3765399381131], [-117.73421511338967, 34.37645967096876], [-117.73321336924265, 34.376776301749466], [-117.73182742717144, 34.376963004228735], [-117.73141041638355, 34.37738745504904], [-117.73123892069745, 34.37847228104952], [-117.7310484569501, 34.37879391061558], [-117.73048566412061, 34.379146708980315], [-117.72966363636391, 34.37925943668684], [-117.72903332699421, 34.37907964226038], [-117.72785521558846, 34.378345382352855], [-117.7263346548918, 34.3781206148291], [-117.72607707279475, 34.37770448109691], [-117.72639489802738, 34.376777940804075], [-117.72620255793836, 34.3762093320882], [-117.72589240252215, 34.37598230605845], [-117.72436059972141, 34.375670551351234], [-117.72318829000939, 34.37468936398913], [-117.72260184731397, 34.37463183741294], [-117.72149955465669, 34.37506619254488], [-117.72048642711448, 34.37518656268957], [-117.71958286619704, 34.37502694754011], [-117.71735256604197, 34.37394964173999], [-117.71375935803056, 34.37392175629509], [-117.71290994771407, 34.37356112072704], [-117.71180319721981, 34.372282104709264], [-117.71104349586776, 34.37205970552428], [-117.71008180394637, 34.37240624862507], [-117.70816967219565, 34.37443618944093], [-117.70736061334537, 34.37579063762945], [-117.70646672980088, 34.37648413247937], [-117.7058106861697, 34.37817566125684], [-117.70504930048418, 34.378710345344075], [-117.70436888133443, 34.37869216352571], [-117.70371574792786, 34.37822898059223], [-117.70258835203025, 34.37619955377676], [-117.70271134275069, 34.374639706657184], [-117.70217447407647, 34.37404196260199], [-117.70176109740676, 34.37397761850478], [-117.701260085398, 34.37407430503297], [-117.70071842060702, 34.37449704170479], [-117.70032298376476, 34.37573426335807], [-117.6994905860482, 34.37649723606292], [-117.6987069158676, 34.378530308490014], [-117.698239400279, 34.37889782407848], [-117.69769135443462, 34.37889346527191], [-117.69635520012305, 34.378332163959456], [-117.69481818181825, 34.37849580032316], [-117.69305848571844, 34.378423015299674], [-117.6919823381958, 34.37859340210638], [-117.69070460893266, 34.379141108143905], [-117.68928920034622, 34.378675160283485], [-117.68564223312197, 34.375774144050645], [-117.68410332742546, 34.374846070890605], [-117.68286084227513, 34.37448579529497], [-117.67938226352564, 34.374248010726554], [-117.67757941891347, 34.37334742379945], [-117.67573680898006, 34.373002556181234], [-117.67032082728633, 34.37127596257749], [-117.66705499079825, 34.37106619254485], [-117.66542170056613, 34.370378325474874], [-117.66252043218381, 34.36870938851503], [-117.65975996394677, 34.36791292002936], [-117.65671862716184, 34.367538919817534], [-117.65389005879656, 34.36642961779801], [-117.65260315823693, 34.366205628436106], [-117.6526290560182, 34.36650535017708], [-117.65209700000013, 34.366147999120265], [-117.65214400000015, 34.36485599912039], [-117.65161400000017, 34.362737999120306], [-117.65199600000021, 34.36079999912025], [-117.65024800000013, 34.33886499912062], [-117.64560400000032, 34.28994699912116], [-117.64788000000027, 34.28257999912128], [-117.65600200000019, 34.250888999121685], [-117.6571880000001, 34.245104999121814], [-117.66407800000032, 34.218021999122186], [-117.67531600000012, 34.177047999122536], [-117.67477000000015, 34.17902399912252], [-117.67551700000026, 34.17602299912258], [-117.6775940000003, 34.16512099912277], [-117.67774500000019, 34.164798999122695], [-117.69807200000018, 34.16499399912266], [-117.69827600000019, 34.15795199912275], [-117.68551200000026, 34.15783699912272], [-117.68373000000024, 34.15989299912284], [-117.68378500000028, 34.16064899912273], [-117.68255800000028, 34.16066199912278], [-117.68257200000016, 34.15975699912286], [-117.68374100000025, 34.15817899912278], [-117.68410700000015, 34.15620399912293], [-117.6846980000003, 34.15533899912274], [-117.68662600000025, 34.153456999122966], [-117.68707600000026, 34.15357299912285], [-117.68735600000032, 34.15442899912282], [-117.69084100000026, 34.15380599912287], [-117.69178300000014, 34.1534929991229], [-117.69200700000037, 34.153491999122934], [-117.69205200000022, 34.15364099912271], [-117.70212600000026, 34.15432499912289], [-117.70257200000019, 34.154378999122756], [-117.70310600000013, 34.158261999122715], [-117.70628500000026, 34.158446999122724], [-117.71578700000028, 34.158135999122834], [-117.7159680000001, 34.165243999122644], [-117.72488900000019, 34.16530599912264], [-117.72488934305413, 34.16491793848487], [-117.75580626049027, 34.16532027790203], [-117.7557236352711, 34.163569655914074], [-117.75868100000027, 34.163601999122804], [-117.75877500000023, 34.157273999122886], [-117.76775900000015, 34.157236999122816], [-117.76791900000016, 34.15274299912284], [-117.76771532903393, 34.15074559438337], [-117.77453464657641, 34.150714560569504], [-117.77471600000011, 34.150484999122845], [-117.77446300000028, 34.14940699912289], [-117.77582200000026, 34.14817299912286], [-117.77609086553963, 34.14712299701703], [-117.78069100000015, 34.14710699912287], [-117.78050700000028, 34.166950999122605], [-117.7915160000002, 34.166934999122645], [-117.79353200000031, 34.166805999122566], [-117.79362400000016, 34.17858799912249], [-117.84509800000022, 34.17859799912253], [-117.84509800000016, 34.177719999122516], [-117.84639000000018, 34.17773299912255], [-117.846329, 34.17237399912265], [-117.83771800000032, 34.17236399912257], [-117.8377530000002, 34.16152499912263], [-117.82466200000015, 34.161962999122814], [-117.82468600000021, 34.1608729991228], [-117.8251730000001, 34.16034299912283], [-117.8269930000001, 34.1595319991227], [-117.82937900000015, 34.15810799912275], [-117.83075000000012, 34.15749399912275], [-117.83206400000023, 34.15732699912272], [-117.83422500000026, 34.15644099912288], [-117.836609, 34.15589799912279], [-117.83834300000025, 34.159863999122834], [-117.83867200000023, 34.16222299912266], [-117.83929300000027, 34.16240599912278], [-117.839165, 34.16134999912282], [-117.8412930000002, 34.16120599912278], [-117.8412930000002, 34.157706999122716], [-117.84599300000019, 34.1575069991228], [-117.84589100000012, 34.165111999122686], [-117.85055900000026, 34.165154999122684], [-117.85010500000023, 34.17856299912256], [-117.86427000000025, 34.178533999122635], [-117.8643980000002, 34.17144599912264], [-117.88086300000026, 34.17130199912263], [-117.8809950000002, 34.16500599912268], [-117.88569500000034, 34.16510599912261], [-117.88553700000027, 34.16150299912269], [-117.8898520000002, 34.16148999912267], [-117.88984600000016, 34.1651209991227], [-117.89916000000022, 34.165105999122716], [-117.89911700000015, 34.1680989991228], [-117.90729100000019, 34.168205999122684], [-117.90735200000024, 34.16503899912268], [-117.91446400000022, 34.16534999912264], [-117.92479600000028, 34.165505999122665], [-117.92470400000013, 34.1943249991223], [-117.95340528321371, 34.19417387175714], [-117.99508537083179, 34.194314692478216], [-118.01264500170025, 34.19396347294128], [-118.0213851980748, 34.19394004064259], [-118.02138509061996, 34.193807838876154], [-118.02204600000017, 34.19381999912226], [-118.02159900000024, 34.19078199912237], [-118.02169100000022, 34.18850799912234], [-118.02136921876999, 34.17943873158512], [-118.06600100000018, 34.179404999122596], [-118.06597810318614, 34.179160912968335], [-118.0827727760265, 34.17908114152169], [-118.08227272692312, 34.19693498899673], [-118.10110379547919, 34.19678100768463], [-118.1012240000003, 34.1968299991223], [-118.10114600000027, 34.1972469991223], [-118.10165400000015, 34.19692999912225], [-118.10492600000019, 34.19683999912226], [-118.10480771224697, 34.19485559486646], [-118.10682297175947, 34.19582900595646], [-118.1178949717721, 34.204116005969816], [-118.1249029717804, 34.20830400597686], [-118.13500397179266, 34.21400400598667], [-118.13643997179442, 34.21464400598773], [-118.14083997180039, 34.2150280059893], [-118.14866297181115, 34.21530300599156], [-118.1538779718182, 34.2158320059934], [-118.15934897182554, 34.21687000599602], [-118.16447597183212, 34.218236005998875], [-118.17231297184253, 34.21979600600273], [-118.17757497836148, 34.22009100270324], [-118.17767400000025, 34.222451999122086], [-118.18343400000018, 34.22240399912201], [-118.18348200000024, 34.22310799912197], [-118.18666400000026, 34.22302099912208], [-118.18684100000021, 34.232151999121925], [-118.18640300000014, 34.23356599912181], [-118.18671700000019, 34.23430499912192], [-118.186915, 34.23750799912179], [-118.18684200000025, 34.251585999121616], [-118.19557400000016, 34.2519049991216], [-118.19680427468906, 34.25174978591798], [-118.19738717203848, 34.25197290455393], [-118.19765885129615, 34.25238196345164], [-118.19749580120323, 34.253082247206144], [-118.19756507618258, 34.25350418988412], [-118.19798470010473, 34.253829083753665], [-118.19875080840212, 34.25406381364472], [-118.1991411655827, 34.254493007611075], [-118.19918656356928, 34.25477720837109], [-118.19910606789068, 34.25503609217638], [-118.19803807238127, 34.25611152392121], [-118.19685185438144, 34.256342960918396], [-118.1966228142201, 34.25657293668463], [-118.19656009791831, 34.25693783014357], [-118.19710436292695, 34.25830968102849], [-118.19695697934529, 34.25922898059355], [-118.19628609651524, 34.259621756296255], [-118.19530044534373, 34.25959346527351], [-118.19470302301873, 34.25923609217623], [-118.19401631709646, 34.258195048299505], [-118.19311425367376, 34.25809232601585], [-118.192507320399, 34.258639485245205], [-118.1925224876598, 34.2598998529734], [-118.19230535385668, 34.26028163914393], [-118.19153175470426, 34.26059565359971], [-118.18904657267147, 34.2603323675579], [-118.18865120324467, 34.260424722965766], [-118.18829374092749, 34.26089229656988], [-118.18837747266025, 34.26193175382563], [-118.18815697934522, 34.26240170786644], [-118.18749790060158, 34.26294116470424], [-118.18690894476114, 34.26315885041761], [-118.18644160860732, 34.263128527163616], [-118.18607881577746, 34.262884819707814], [-118.1851638145233, 34.26192353479607], [-118.1844924387518, 34.26080040872976], [-118.18402895591694, 34.260650345779084], [-118.18343598330874, 34.26072747814485], [-118.183023320097, 34.26104372584576], [-118.18279515106245, 34.26181003548097], [-118.18268689999239, 34.2630514188747], [-118.18296721172055, 34.2641229935154], [-118.18292982978829, 34.2645086446872], [-118.18274716329047, 34.26478425119393], [-118.18212246015169, 34.26505811993271], [-118.18159135443462, 34.26503891981886], [-118.18023870698119, 34.26453960692404], [-118.17886888133457, 34.26427398170896], [-118.17686992293363, 34.26309275842028], [-118.1762678551221, 34.26303228060039], [-118.17550699984983, 34.26322750066336], [-118.17448037913901, 34.26370478923921], [-118.17425198586045, 34.26395993047393], [-118.17404902990219, 34.26638609563669], [-118.17365427487293, 34.26703333973926], [-118.17273155106079, 34.26746721084165], [-118.17098194688303, 34.26751757744041], [-118.16877716542872, 34.26938232968881], [-118.16799046374747, 34.26972073800076], [-118.16630524497086, 34.269573981708895], [-118.1651692211004, 34.268965442278905], [-118.16367043301264, 34.26864363918635], [-118.16242235450206, 34.267688458385834], [-118.16186945146576, 34.26758690352627], [-118.16035239884782, 34.2685077501139], [-118.15943027513187, 34.269612092435075], [-118.15904930048414, 34.269828527163426], [-118.15753870735062, 34.2696504441573], [-118.15554996343003, 34.26967756339259], [-118.15446445793103, 34.269856809106535], [-118.15344870099253, 34.27024545083419], [-118.15399596237471, 34.271297673944105], [-118.15443262299563, 34.27154433551612], [-118.15510622600294, 34.27161416872128], [-118.15620460893263, 34.27134070827969], [-118.15720804289417, 34.27141850524725], [-118.15974182555173, 34.273294148256845], [-118.1620979006016, 34.274086106266175], [-118.1636840152501, 34.2754015476203], [-118.16443913705227, 34.27565032138294], [-118.16559955465662, 34.27573380569704], [-118.16633426423806, 34.27604974262956], [-118.16686489167849, 34.27674160772852], [-118.16702195023615, 34.27825934009244], [-118.16721220386235, 34.27861380826053], [-118.1678274202215, 34.27892258027725], [-118.16882712657929, 34.27891387509801], [-118.1694979006017, 34.27912246990236], [-118.17053409351979, 34.280457563807744], [-118.17108375316016, 34.280594618052355], [-118.17236349021563, 34.28055932964342], [-118.17487228192937, 34.28099744206051], [-118.17647443601783, 34.28150665613972], [-118.17708739883327, 34.282507869822204], [-118.1773882139543, 34.282726579842596], [-118.17880000000015, 34.282567834281984], [-118.1793380723815, 34.28270665613967], [-118.17972709456812, 34.28304919071938], [-118.18049346615192, 34.284218626283106], [-118.18049346615192, 34.28474500832335], [-118.18015979877593, 34.28554311196212], [-118.18029704611455, 34.28613766546645], [-118.18081164797024, 34.28680953537392], [-118.18069334298158, 34.28771988968423], [-118.17962121846074, 34.28852509680673], [-118.17838925286377, 34.288558756282036], [-118.17723426423795, 34.28946843743136], [-118.17614665345981, 34.28981770860225], [-118.17546061334514, 34.29076336490319], [-118.17500384593869, 34.29110125443593], [-118.17266363636384, 34.29158670941511], [-118.17058022082425, 34.29102241989692], [-118.16996782536532, 34.29111607603198], [-118.16958617238248, 34.29162295104361], [-118.1696105354091, 34.29198452169203], [-118.17010474538766, 34.2929136989627], [-118.17000876660184, 34.293535314742606], [-118.16967245669107, 34.29402424882991], [-118.16784440653055, 34.295217856631915], [-118.16615856868769, 34.29535309683651], [-118.16580882880793, 34.295675593163466], [-118.16562970661796, 34.29657443513864], [-118.16513111866576, 34.296973981708625], [-118.16435026712136, 34.297021756295806], [-118.16296665381712, 34.29658670941497], [-118.16208230951993, 34.29671140839148], [-118.16072023995844, 34.2971935976839], [-118.16045705363699, 34.29756542883566], [-118.16045862238022, 34.2979215190658], [-118.16124327950388, 34.29873332611505], [-118.16128662012822, 34.29957971790435], [-118.16093426423808, 34.299950255613034], [-118.15959318335955, 34.30049321170228], [-118.15835839139312, 34.30148307261774], [-118.15765499079818, 34.301475283454735], [-118.15641006478018, 34.300987072276754], [-118.15517560418304, 34.301064038141064], [-118.15339230936802, 34.30017711917381], [-118.15136033918355, 34.29882019813926], [-118.14935570930436, 34.298460086321185], [-118.14879129822488, 34.29861258622387], [-118.14838528096706, 34.29911031936107], [-118.14853447548627, 34.29967232052743], [-118.14959697698151, 34.300418451521125], [-118.15017433392663, 34.30193336184552], [-118.1514800881067, 34.303656231943904], [-118.15349058478347, 34.305682865317934], [-118.15353993899316, 34.30607700472715], [-118.15328873404928, 34.306593944854384], [-118.15243936604084, 34.307748456070875], [-118.15163175470423, 34.3080047445083], [-118.1503173942329, 34.307714245173806], [-118.14937733620533, 34.307868380871895], [-118.14752090838041, 34.30714929537506], [-118.14596338710241, 34.30711182643584], [-118.14434849118811, 34.30802509680647], [-118.1430293952951, 34.30847580702946], [-118.14219394573357, 34.309306914988355], [-118.14102284156432, 34.30962883186765], [-118.14007576391545, 34.310270551352126], [-118.13839926548985, 34.31095006495728], [-118.13778717203839, 34.311963457325206], [-118.13620696795758, 34.31255573254728], [-118.13599003459447, 34.31283107104667], [-118.13578671029393, 34.3138406291863], [-118.13604110902385, 34.316659153507786], [-118.13593446321536, 34.31702568816384], [-118.1356006936573, 34.317366734708656], [-118.13496349021571, 34.31765885041692], [-118.13270208707578, 34.3174474867761], [-118.13143174093639, 34.31832922802453], [-118.13074442084044, 34.31993371761111], [-118.12888113116723, 34.32125580036169], [-118.12846607025426, 34.322228980593096], [-118.12773218248773, 34.32291807920114], [-118.12739073093157, 34.32402353479536], [-118.12621849001272, 34.32471905836461], [-118.12622175717507, 34.3259224592722], [-118.12589063850928, 34.32635152155702], [-118.12037167925791, 34.32919058390429], [-118.11848035053413, 34.32949386497784], [-118.11705428917656, 34.329967455047125], [-118.11656169738654, 34.330432249617445], [-118.11628149387451, 34.33156258746932], [-118.11596970425435, 34.331999728539], [-118.11413306119537, 34.333118397279726], [-118.11257808112931, 34.335108911870385], [-118.11065449054477, 34.33546663377653], [-118.10929016831486, 34.33616225025201], [-118.10884125574854, 34.33678757253824], [-118.10947055223112, 34.337633326114585], [-118.10979346615196, 34.33858226264617], [-118.11008428070147, 34.34054390043776], [-118.11063892069737, 34.34207317173688], [-118.11082307393038, 34.34347272639326], [-118.11067964314027, 34.3440393993995], [-118.11006067827364, 34.34497792516787], [-118.10981437495627, 34.345668594862616], [-118.11039580120318, 34.34739999912043], [-118.1099369483889, 34.34844353390261], [-118.10988632942788, 34.34890629335588], [-118.11063892069737, 34.35107317173675], [-118.1108321648394, 34.352418180938635], [-118.11061925005396, 34.35348620685588], [-118.10995871305934, 34.35484723987315], [-118.10963221952393, 34.35803048653472], [-118.10980357535678, 34.35994064109011], [-118.10936663876825, 34.3606575469793], [-118.107538472878, 34.3622941542485], [-118.10621515879978, 34.36582700126591], [-118.10329063850935, 34.36892424882926], [-118.10066783622618, 34.37067278210705], [-118.10052307393035, 34.371096285048495], [-118.10059444924836, 34.37198449027034], [-118.10092635412308, 34.372483800822394], [-118.10200480194644, 34.3733020985188], [-118.10207703311437, 34.37365439842655], [-118.10190243389069, 34.37421988968316], [-118.10156791469707, 34.37443993811336], [-118.09858364270605, 34.374906300785035], [-118.0979728481868, 34.37594382668351], [-118.09747510110806, 34.377359958577145], [-118.09731600677674, 34.37831212667155], [-118.09636014260859, 34.37931165949508], [-118.09657515005064, 34.38060751130057], [-118.09697836175113, 34.381557298861466], [-118.09829517476147, 34.38297391328167], [-118.09943534938537, 34.38502671252471], [-118.09941389285565, 34.385552445176124], [-118.09900497596738, 34.38596955633128], [-118.09831369984158, 34.38615019905301], [-118.09774374580078, 34.38595697846529], [-118.0971933364053, 34.38544601176044], [-118.09637816768672, 34.38535918380704], [-118.09492682738393, 34.38606619254468], [-118.0937474135909, 34.38612135521733], [-118.09138630015875, 34.38749565359815], [-118.09084374580071, 34.38740243301062], [-118.08972097777657, 34.38636437790049], [-118.08811645858746, 34.3863091159601], [-118.08690322178673, 34.387312399284035], [-118.08610882032744, 34.388278794283536], [-118.08495255387297, 34.38894435914714], [-118.08463536261235, 34.38928655336052], [-118.08482703675884, 34.39077146408389], [-118.08389982184077, 34.39232353479443], [-118.08334973287883, 34.392703574476634], [-118.08273188165977, 34.392759289961994], [-118.08218391758061, 34.39259571015741], [-118.07895161763768, 34.39008886662922], [-118.07843389380804, 34.389986486281906], [-118.0776609126637, 34.39017853239058], [-118.07711319311247, 34.39082386799923], [-118.07750357535663, 34.391941175332114], [-118.07739782495841, 34.392466672126126], [-118.07588773493691, 34.394269960603246], [-118.07562709456805, 34.39508717115804], [-118.07479428083307, 34.39572932632163], [-118.07464513023808, 34.396544405650424], [-118.07411515879991, 34.39751791035644], [-118.0730089447611, 34.39797703223432], [-118.07133793020007, 34.39788626214748], [-118.07086047367203, 34.39810871098322], [-118.07067217334733, 34.39837291241863], [-118.07067261403914, 34.39892701443746], [-118.07095548023099, 34.39921451751962], [-118.0733433551472, 34.40033156081001], [-118.0741089127499, 34.4010219179908], [-118.07437630262949, 34.40144117533204], [-118.07434169631996, 34.40265998885327], [-118.07459928358783, 34.40328282351454], [-118.07633426423799, 34.40358610626452], [-118.07810891274983, 34.40541282708168], [-118.07937055223108, 34.407215144295556], [-118.07969030547603, 34.40900854650804], [-118.08054116558289, 34.41002937124571], [-118.0815527740595, 34.41257937677837], [-118.08220229944034, 34.41356855086785], [-118.08295597132066, 34.41407390066697], [-118.08502202775678, 34.414626016532274], [-118.0855933429817, 34.4150073812841], [-118.08588539353866, 34.41569572078645], [-118.0858292747391, 34.41615605426869], [-118.08491953331468, 34.41725858809053], [-118.08470517161278, 34.41791350646616], [-118.08478173615985, 34.41860049107133], [-118.08549739119563, 34.41972738403603], [-118.08616727264737, 34.420238555296876], [-118.08822517332898, 34.4208770153552], [-118.08883027513195, 34.42134245126087], [-118.08920615923056, 34.42186820142752], [-118.08932307393053, 34.42228181730144], [-118.0891411610652, 34.423959803138445], [-118.08924685215595, 34.42502346329009], [-118.0913705522311, 34.42864241702248], [-118.09173201811481, 34.429786426233676], [-118.09162694841982, 34.430798951104556], [-118.08971956608714, 34.43489573161883], [-118.08968563395416, 34.43555132155726], [-118.08998245773273, 34.436204630770135], [-118.09247981210001, 34.43840154308602], [-118.10834518396388, 34.45126665850144], [-118.1100499371835, 34.453247005862124], [-118.11111164797006, 34.455682262644764], [-118.11565520479101, 34.47344878391756], [-118.11651937850999, 34.4749054939267], [-118.11795025649194, 34.47659300760837], [-118.1184043058416, 34.47788196344888], [-118.11786602693842, 34.480711990993775], [-118.09679656118362, 34.48076701266776]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Angeles Crest", "metadata": {"sqmi": 430.477491127, "type": "unincorporated-area", "name": "Angeles Crest", "slug": "angeles-crest"}, "cases": 1.0, "population": 0.012450199203187252, "external_id": "angeles-crest", "slug": "angeles-crest-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/angeles-crest-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.017052, 34.177181999122524], [-118.0181860000001, 34.17623199912254], [-118.018634, 34.17660299912245], [-118.01872000000013, 34.175410999122484], [-118.0196320000001, 34.1753949991225], [-118.019931, 34.174899999122516], [-118.020497, 34.174728999122465], [-118.021255, 34.17353399912244], [-118.021419, 34.173631999122485], [-118.0213140000001, 34.15980499912274], [-118.0211190000002, 34.15977999912267], [-118.02110600000012, 34.15905399912282], [-118.0212630000001, 34.15855199912263], [-118.020387, 34.157653999122765], [-118.02065200000014, 34.15746199912277], [-118.021288, 34.15793399912273], [-118.02127800000014, 34.15706299912267], [-118.02190600000023, 34.15705299912276], [-118.021883, 34.154752999122714], [-118.0213, 34.15476199912276], [-118.021009, 34.151107999122836], [-118.02070500000016, 34.15111199912289], [-118.020326, 34.131098999123076], [-118.02002000000013, 34.13114299912311], [-118.020009, 34.130163999123106], [-118.018055, 34.13019099912306], [-118.0180500000001, 34.129985999123114], [-118.016515, 34.12998099912304], [-118.016525, 34.13021799912306], [-118.01457800000016, 34.13002899912308], [-118.01256900000013, 34.130264999123035], [-118.00723700000019, 34.130328999123044], [-118.007219, 34.129333999123084], [-118.00673398079728, 34.129335998614835], [-118.00878597164689, 34.12588500584474], [-118.0085749716469, 34.12490700584151], [-118.00848998580382, 34.12192700423932], [-118.00859498582454, 34.11912900815097], [-118.01210597379277, 34.120335000497974], [-118.01237097165374, 34.11988500583734], [-118.01234698588746, 34.11868100519343], [-118.01310497165524, 34.11865500583442], [-118.01307798582963, 34.11701900414831], [-118.01341022989112, 34.11702806499554], [-118.01347456463638, 34.117282757049864], [-118.01392818149786, 34.117269543293666], [-118.01487698584295, 34.1156730040947], [-118.01523598620908, 34.115670000047366], [-118.015446, 34.11472699912321], [-118.016036, 34.113721999123285], [-118.0169199856587, 34.109929000937385], [-118.01671459353626, 34.10986860730083], [-118.01681073917541, 34.10933509867729], [-118.01594599829542, 34.10562899589348], [-118.0160619865792, 34.10556800396534], [-118.01555100000012, 34.10290199912331], [-118.007342, 34.10556599912338], [-118.00805400000012, 34.10410899912333], [-117.99509300000011, 34.099718999123525], [-117.99663900000012, 34.09654999912349], [-117.992226, 34.09505299912344], [-117.99145, 34.09505999912351], [-117.993758, 34.09310499912349], [-117.995296, 34.091548999123596], [-117.998653, 34.08700699912365], [-117.998926, 34.0872649991236], [-118.00186200000012, 34.0882619991236], [-117.997651, 34.096894999123414], [-117.99865000000015, 34.09728099912348], [-117.997717, 34.098185999123636], [-117.99753000000013, 34.09873899912338], [-118.000304, 34.099686999123406], [-118.001097, 34.098071999123505], [-118.009566, 34.10094599912344], [-118.010283, 34.09956499912343], [-118.01122, 34.09966899912337], [-118.01207, 34.09924899912338], [-118.012932, 34.09840399912345], [-118.01638600000018, 34.09672799912348], [-118.017388, 34.0968269991235], [-118.0201250000001, 34.09652799912344], [-118.02034, 34.09911499912341], [-118.01922497166923, 34.10278800581595], [-118.0178932836077, 34.10251638404463], [-118.01658998437082, 34.10528800032131], [-118.01731998592417, 34.10864900310407], [-118.0185859856585, 34.10846400153739], [-118.01846998592511, 34.107904003104416], [-118.02453727010318, 34.10700953067994], [-118.02455998589066, 34.107348003877824], [-118.02619898587858, 34.107286001719096], [-118.02923598566288, 34.10685100151048], [-118.0291779859347, 34.10656900314086], [-118.0304959927878, 34.106384000249186], [-118.030813, 34.107315999123195], [-118.0312040000001, 34.107260999123326], [-118.031018, 34.10640099912339], [-118.03269100000013, 34.10615799912335], [-118.03282700000015, 34.10632999912328], [-118.032748, 34.10593799912336], [-118.033622, 34.105813999123384], [-118.0337320000001, 34.1063449991234], [-118.0346990000001, 34.10620699912329], [-118.034824, 34.106804999123256], [-118.03621900000012, 34.10660599912335], [-118.036213, 34.10604799912332], [-118.03807500000012, 34.10577899912332], [-118.037972, 34.10528999912339], [-118.03874100000013, 34.10517899912334], [-118.03893800000017, 34.10615199912335], [-118.052244, 34.10420199912337], [-118.052778, 34.1068879991233], [-118.053496, 34.10678799912326], [-118.05367100000011, 34.10767999912329], [-118.05273500000013, 34.10794299912328], [-118.052843, 34.10843299912339], [-118.053044, 34.1084059991232], [-118.05315800000017, 34.10894199912329], [-118.052472, 34.109032999123315], [-118.05259700000013, 34.10966399912342], [-118.053293, 34.1095679991232], [-118.053701, 34.111456999123284], [-118.054012, 34.11141299912331], [-118.05417500000014, 34.11221799912326], [-118.054067, 34.11223299912332], [-118.0541780000001, 34.112780999123224], [-118.054027, 34.112801999123306], [-118.054209, 34.11369399912324], [-118.05463100000019, 34.11363599912327], [-118.054696, 34.11399299912325], [-118.055682, 34.113860999123276], [-118.056931, 34.12011199912326], [-118.05713800000012, 34.120726999123036], [-118.0579170000002, 34.1206179991232], [-118.05833100000014, 34.12267499912316], [-118.05961500000015, 34.12249599912313], [-118.05984800000022, 34.12362199912312], [-118.06047, 34.12353099912312], [-118.060544, 34.12391899912312], [-118.06123900000019, 34.12368099912307], [-118.06132000000015, 34.12410199912305], [-118.06649900000019, 34.12336299912308], [-118.06702000000017, 34.12301899912317], [-118.06716200000017, 34.12414499912317], [-118.06815800000024, 34.12398599912313], [-118.06794898588241, 34.12414600256583], [-118.06772998579073, 34.1253250006926], [-118.06728998594578, 34.12535500368526], [-118.06735398592642, 34.12978800384516], [-118.06787098579785, 34.12976300116211], [-118.06788798569235, 34.130726004711114], [-118.06931898592246, 34.1306490027234], [-118.06938798622404, 34.130989003417106], [-118.06903398666705, 34.13139800066027], [-118.06746798594676, 34.13150900367178], [-118.06795800000019, 34.15682099912275], [-118.038412, 34.15725899912279], [-118.038473, 34.1668809991226], [-118.029668, 34.16685399912255], [-118.029473, 34.16783199912259], [-118.03014100000014, 34.168927999122594], [-118.03014100000014, 34.16982099912254], [-118.029619, 34.169994999122586], [-118.0303540000001, 34.17036799912258], [-118.030007, 34.17077199912252], [-118.03022600000013, 34.17095199912257], [-118.030139, 34.1794019991225], [-118.017593, 34.179452999122375], [-118.017052, 34.177181999122524]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Arcadia", "metadata": {"sqmi": 11.1507969199, "type": "standalone-city", "name": "Arcadia", "slug": "arcadia"}, "cases": 43.0, "population": 0.6573295614292912, "external_id": "arcadia", "slug": "arcadia-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/arcadia-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.4220150000001, 34.22410299912182], [-118.42281500000016, 34.221702999121845], [-118.42781500000011, 34.221702999121845], [-118.435815, 34.22990299912176], [-118.440816, 34.23660299912161], [-118.45011600000012, 34.25000299912159], [-118.451816, 34.25170199912146], [-118.447916, 34.25740199912136], [-118.44230000000012, 34.26449699912131], [-118.44104100000013, 34.262545999121336], [-118.4398160000001, 34.26120199912132], [-118.42235900000014, 34.244721999121644], [-118.410514, 34.23380299912176], [-118.409699, 34.23339499912173], [-118.420515, 34.225602999121904], [-118.4220150000001, 34.22410299912182]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Arleta", "metadata": {"sqmi": 3.09617917557, "type": "segment-of-a-city", "name": "Arleta", "slug": "arleta"}, "cases": 111.0, "population": 0.3436958137230617, "external_id": "arleta", "slug": "arleta-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/arleta-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.315909, 34.05261099912384], [-118.313409, 34.05271099912387], [-118.31310900000011, 34.04961099912397], [-118.313008, 34.04001099912405], [-118.313408, 34.04001099912401], [-118.313408, 34.03751099912417], [-118.31500800000013, 34.03741099912408], [-118.315308, 34.037210999124255], [-118.320009, 34.03671099912401], [-118.323609, 34.036110999124155], [-118.32840900000011, 34.03571099912418], [-118.331409, 34.03521099912408], [-118.333809, 34.03501099912416], [-118.332709, 34.03671099912401], [-118.323009, 34.05480999912394], [-118.319609, 34.05351099912386], [-118.315909, 34.05261099912384]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Arlington Heights", "metadata": {"sqmi": 1.03141523527, "type": "segment-of-a-city", "name": "Arlington Heights", "slug": "arlington-heights"}, "cases": 64.0, "population": 0.1515295008997064, "external_id": "arlington-heights", "slug": "arlington-heights-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/arlington-heights-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.07489500000011, 33.88038299912613], [-118.07502400000014, 33.87962299912605], [-118.07498500000027, 33.87680599912615], [-118.07812800000022, 33.87675799912615], [-118.07741800000014, 33.8764709991261], [-118.080066, 33.8752609991262], [-118.08004300000019, 33.87305399912623], [-118.07027000000019, 33.87311199912628], [-118.07031100000023, 33.8698339991262], [-118.07250400000021, 33.8698209991263], [-118.07250200000021, 33.8696939991263], [-118.07026300000017, 33.86972699912622], [-118.07046900000033, 33.862153999126186], [-118.07013600000018, 33.860718999126384], [-118.0708230000002, 33.86031499912639], [-118.07112600000012, 33.86039299912631], [-118.07100600000018, 33.859142999126405], [-118.07113300000027, 33.858535999126275], [-118.06900700000011, 33.85855699912639], [-118.06891500000016, 33.85342299912643], [-118.07074600000014, 33.85340899912641], [-118.07223700000021, 33.85432499912644], [-118.07228700000016, 33.856939999126375], [-118.07492900000017, 33.857070999126464], [-118.07497200000016, 33.855989999126386], [-118.08211200000022, 33.86037199912636], [-118.08212800000011, 33.85931999912636], [-118.08278200000018, 33.85932099912635], [-118.08299900000017, 33.85844799912638], [-118.08211800000022, 33.85845399912641], [-118.08209400000015, 33.85621899912645], [-118.08669000000025, 33.856314999126376], [-118.08670300000011, 33.858422999126404], [-118.08639700000015, 33.8599889991264], [-118.09031300000014, 33.86010799912639], [-118.09039800000015, 33.8613169991264], [-118.09090100000012, 33.861312999126305], [-118.09101000000025, 33.87453199912623], [-118.09128700000018, 33.876414999126204], [-118.091167, 33.876648999126196], [-118.0877170000002, 33.87675199912617], [-118.08770700000014, 33.88033899912615], [-118.07489500000011, 33.88038299912613]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Artesia", "metadata": {"sqmi": 1.63220417689, "type": "standalone-city", "name": "Artesia", "slug": "artesia"}, "cases": 14.0, "population": 0.16794625719769674, "external_id": "artesia", "slug": "artesia-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/artesia-la-county-neighborhood-current/"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-118.29152497210494, 33.93096200565596], [-118.29160698235776, 33.91642200621436], [-118.31391298047903, 33.91645200007503], [-118.31398199285357, 33.91836100381049], [-118.31520998502528, 33.91843399843815], [-118.31648398731515, 33.91765600546545], [-118.31778797898059, 33.91752000315647], [-118.31776897986255, 33.92160600576327], [-118.31339099241845, 33.9234099992319], [-118.31339198594485, 33.93091114492958], [-118.31775297908976, 33.93090100164798], [-118.31771998251318, 33.94546299957149], [-118.3133719831622, 33.94546000472399], [-118.31338698955169, 33.93821400014257], [-118.30902499719825, 33.938210004721995], [-118.30901497491621, 33.94183300014395], [-118.30519099550496, 33.94184500291158], [-118.3051799749089, 33.94546700018521], [-118.30245399536287, 33.9454740034614], [-118.30244797491154, 33.94999300010937], [-118.30026199536103, 33.949999003468804], [-118.30026697479626, 33.95948100133601], [-118.29247298987285, 33.95951400322592], [-118.29159598256967, 33.959495004635755], [-118.29152497210494, 33.93096200565596]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Athens-Westmont", "metadata": {"sqmi": 1.33275332251, "type": "unincorporated-area", "name": "Athens-Westmont", "slug": "athens-westmont"}, "cases": 104.0, "population": 0.42442050277505716, "external_id": "athens-westmont", "slug": "athens-westmont-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/athens-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.27832473089676, 34.15300714529624], [-118.277068, 34.15325599912271], [-118.275613, 34.1532609991228], [-118.263206, 34.129167999123055], [-118.262, 34.12712899912304], [-118.260356, 34.124826999123094], [-118.258424, 34.12258499912305], [-118.25617, 34.12040799912307], [-118.254258, 34.118760999123246], [-118.25414859778775, 34.118850727904785], [-118.24780700000017, 34.11310899912321], [-118.246007, 34.112108999123265], [-118.248207, 34.11040899912321], [-118.24910700000017, 34.10860899912322], [-118.256407, 34.1085089991233], [-118.25880800000016, 34.109008999123176], [-118.261208, 34.11010899912324], [-118.262172, 34.11088899912317], [-118.263208, 34.11140899912329], [-118.265708, 34.11390899912315], [-118.2705080000001, 34.121507999123104], [-118.273308, 34.128907999122994], [-118.275708, 34.13710699912297], [-118.2764080000001, 34.14090699912273], [-118.27770900000013, 34.14540699912274], [-118.27873995932471, 34.15362371439506], [-118.278512, 34.15346999912281], [-118.27832473089676, 34.15300714529624]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Atwater Village", "metadata": {"sqmi": 1.77689394489, "type": "segment-of-a-city", "name": "Atwater Village", "slug": "atwater-village"}, "cases": 30.0, "population": 0.14666340747983378, "external_id": "atwater-village", "slug": "atwater-village-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/atwater-village-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.33043099518983, 33.354872974127886], [-118.32991997402621, 33.3543019751893], [-118.3300139918188, 33.353905017021916], [-118.32968700772204, 33.35358497771999], [-118.32964202439089, 33.35328498362191], [-118.32833598203858, 33.35229798094199], [-118.32828100241179, 33.35152300495716], [-118.32844599390452, 33.350917018983374], [-118.32757400123818, 33.349504016266096], [-118.32669001301709, 33.348941014364264], [-118.3253529821479, 33.3488110099068], [-118.32409697388672, 33.34827399837399], [-118.32377398830822, 33.34799299723788], [-118.32388899832206, 33.34792602205605], [-118.32460199727292, 33.348310984668515], [-118.32632499038414, 33.34811100614037], [-118.3268620019169, 33.34779801685765], [-118.32723902010487, 33.34684200269465], [-118.32723202269787, 33.34599899928637], [-118.32684700747332, 33.34507902440036], [-118.32627900742344, 33.344273007286375], [-118.32556001069501, 33.34360899018486], [-118.32398301611462, 33.342746993814494], [-118.32374299979125, 33.34277898196102], [-118.32283402083058, 33.343505975726075], [-118.32190099814784, 33.34388799206179], [-118.32186301222386, 33.34419398393744], [-118.32207098778858, 33.344663020658786], [-118.32186301222386, 33.34482101474453], [-118.32000801539596, 33.342498980454586], [-118.31860800786322, 33.3422700126685], [-118.31750999368775, 33.343044988653546], [-118.31714302440778, 33.342955021991266], [-118.31491800679899, 33.34069001919944], [-118.31314298033763, 33.33807298895914], [-118.3124299813866, 33.337408024840165], [-118.31065000938933, 33.336247981018616], [-118.30976002339061, 33.33343602301027], [-118.30878701552476, 33.33240198512795], [-118.30831997806266, 33.33110999020187], [-118.30761346955124, 33.33029922693018], [-118.3110860000002, 33.33034299913309], [-118.31397600000011, 33.32925399913315], [-118.31693800000014, 33.32772799913307], [-118.318311, 33.33059899913321], [-118.31828400000019, 33.33901099913299], [-118.32698800000013, 33.33032599913318], [-118.32709300000016, 33.31793199913343], [-118.3470510000002, 33.31868299913327], [-118.34687300000016, 33.32127399913316], [-118.34249500000017, 33.34034099913296], [-118.33928000000013, 33.34379799913297], [-118.33572200000012, 33.347315999132874], [-118.33108400000012, 33.3528599991329], [-118.33175300000016, 33.353608999132796], [-118.33257900000021, 33.3536369991328], [-118.33445800000013, 33.353367999132885], [-118.3346910000001, 33.35356699913278], [-118.3346640000001, 33.35392799913282], [-118.335263, 33.35394799913282], [-118.33543300000017, 33.35415199913268], [-118.33539600000033, 33.35529899913281], [-118.33502800000016, 33.35543499913274], [-118.3350640000002, 33.35500499913293], [-118.33417000000013, 33.354880999132796], [-118.3342530000001, 33.355472999132836], [-118.3333190000001, 33.35550199913278], [-118.33325900000014, 33.354896999132755], [-118.33209800000022, 33.3548089991328], [-118.33197900000022, 33.35569399913288], [-118.3314220000002, 33.35597699913274], [-118.33087100000019, 33.355701999132755], [-118.33089300000015, 33.355495999132756], [-118.33063258886256, 33.355493267547416], [-118.33043099518983, 33.354872974127886]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Avalon", "metadata": {"sqmi": 2.74469670567, "type": "standalone-city", "name": "Avalon", "slug": "avalon"}, "cases": 0.0, "population": 0, "external_id": "avalon", "slug": "avalon-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/avalon-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.96586897162146, 34.02597400570324], [-117.96596297947958, 34.02587601284918], [-117.96656997162205, 34.02642800570396], [-117.9649879872773, 34.02785699632573], [-117.96446997161901, 34.027449005704725], [-117.96586897162146, 34.02597400570324]]], [[[-118.00251597166293, 34.0533340057473], [-118.00224799071871, 34.05317200538983], [-118.00170298218944, 34.05378599853451], [-118.00036797166014, 34.05286200574619], [-118.0004529716603, 34.052574005745775], [-117.99941298722806, 34.05179800454573], [-117.99910798287382, 34.05199999983571], [-117.9921879716507, 34.047148005736936], [-117.99292098586503, 34.04612800989465], [-117.99342598141287, 34.04645199959851], [-117.99350897165277, 34.046369005736075], [-117.99311197165231, 34.04604500573569], [-117.99442498628575, 34.04438799967406], [-117.99316298537279, 34.04417900517633], [-117.99360497165388, 34.043605005732616], [-117.99328698495772, 34.04340300078726], [-117.99384398669628, 34.04310800406908], [-117.99300798858289, 34.04255201280275], [-117.99287797165304, 34.04303800573186], [-117.99271397682163, 34.042682016951076], [-117.99180297165131, 34.04374600573231], [-117.99273497165241, 34.0442870057333], [-117.99093698272372, 34.04629299973175], [-117.99002498833545, 34.04566999716919], [-117.9908429716496, 34.04476700573342], [-117.99051198684705, 34.04462000422618], [-117.99019198480218, 34.044802000631286], [-117.99003498611366, 34.043559003229184], [-117.98830498309547, 34.044504000012985], [-117.9851399716425, 34.04236200572914], [-117.98526597164292, 34.04213600572872], [-117.98405197164143, 34.041299005727325], [-117.98608698440327, 34.03896701003542], [-117.98656298190717, 34.03934499932285], [-117.98729797164691, 34.03864100572467], [-117.98590798544805, 34.03768501287095], [-117.9857619814745, 34.038029997597164], [-117.9852939838097, 34.03790000628786], [-117.98370398492462, 34.039504002227204], [-117.98309298262991, 34.03992699974632], [-117.98215999018599, 34.03932100526017], [-117.98176398155347, 34.039712999489296], [-117.98020397163702, 34.038635005723066], [-117.98069497163785, 34.03798300572233], [-117.9803669716375, 34.03770800572185], [-117.97958499036375, 34.03721100531134], [-117.97900698140191, 34.03780999940018], [-117.97383897162959, 34.034277005715836], [-117.9743459716304, 34.033758005715285], [-117.97375699050849, 34.033333005806156], [-117.97327498093978, 34.033897999245475], [-117.97185897162721, 34.032920005713606], [-117.97229897162829, 34.032266005713005], [-117.97178399036015, 34.03194500525211], [-117.97124498143941, 34.03249699940836], [-117.96590697162057, 34.02857800570656], [-117.96743197844708, 34.02721901209559], [-117.96903698209806, 34.02872199893779], [-117.9706039841572, 34.027171009083105], [-117.97761097163553, 34.03199400571374], [-117.97593297163276, 34.033667005715614], [-117.97741497163432, 34.035041005717744], [-117.97651797163269, 34.03591200571867], [-117.97843798138686, 34.037101999676345], [-117.98114898420067, 34.03439700915681], [-117.98396198127973, 34.03634099935116], [-117.98675397164781, 34.03334100571773], [-117.98403897164468, 34.03147600571466], [-117.98697598570892, 34.028623004124476], [-117.99045398142619, 34.030981999432875], [-117.99156597165562, 34.029840005714256], [-117.99069797165465, 34.029310005713505], [-117.99010697165404, 34.02871600571248], [-117.99535898433449, 34.028777997737066], [-117.9956249813516, 34.028580007566404], [-118.00202797166963, 34.031194005718454], [-118.00310298611431, 34.0315320025907], [-118.00530298599632, 34.03185800192839], [-118.00816898584496, 34.031714002304014], [-118.02587097863884, 34.02994400263659], [-118.0259089717024, 34.03245100572572], [-118.02679997170334, 34.03344000572721], [-118.02736398419013, 34.03373600014084], [-118.03095898603914, 34.030892002264174], [-118.0329719804131, 34.029621006855365], [-118.03502097171545, 34.03142600572652], [-118.03531797171571, 34.031520005726776], [-118.03510797171504, 34.03289000572845], [-118.03599998397983, 34.03206800869793], [-118.03778297171864, 34.033226005729524], [-118.03805298198338, 34.03431900503453], [-118.02783900000033, 34.038746999124164], [-118.03156000000021, 34.04198799912413], [-118.03002500000025, 34.043282999124145], [-118.03030800000022, 34.04356999912412], [-118.02877900000028, 34.04479799912416], [-118.02847800000023, 34.04454399912416], [-118.02799900000022, 34.04490999912409], [-118.02575700000024, 34.04309499912417], [-118.02466900000032, 34.044002999124174], [-118.02179100000033, 34.041392999124206], [-118.02068500000028, 34.04188299912416], [-118.02031698533641, 34.04076200124861], [-118.02549698629494, 34.03855800350864], [-118.02309397169692, 34.03713900573108], [-118.02082398679077, 34.03582900414445], [-118.0185829848373, 34.03705999941408], [-118.01778098590935, 34.037100003722394], [-118.01727898615154, 34.036639999940036], [-118.01641998635581, 34.03653400649724], [-118.01549899169386, 34.03700999839952], [-118.0151479865852, 34.038675003922705], [-118.00809898498004, 34.042310000802196], [-118.00779898593197, 34.044210003280774], [-118.00854097861317, 34.044127002808175], [-118.00941097167542, 34.04485400573809], [-118.008724971674, 34.046069005739284], [-118.00991497167473, 34.04851300574295], [-118.00832597167161, 34.05130000574607], [-118.00666497557282, 34.05588599479476], [-118.00251597166293, 34.0533340057473]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Avocado Heights", "metadata": {"sqmi": 2.94845892743, "type": "unincorporated-area", "name": "Avocado Heights", "slug": "avocado-heights"}, "cases": 43.0, "population": 0.2159207767807416, "external_id": "avocado-heights", "slug": "avocado-heights-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/avocado-heights-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.89508600000019, 34.16509599912266], [-117.889846, 34.16512099912265], [-117.88969200000018, 34.14682399912284], [-117.89003700000025, 34.13268999912309], [-117.88703700000025, 34.13263199912301], [-117.886709, 34.13116299912308], [-117.88598400000028, 34.13100099912308], [-117.88590800000016, 34.13003899912301], [-117.881345, 34.13009499912297], [-117.88136699040597, 34.127062002210145], [-117.88573097152019, 34.127063000081215], [-117.8857379857482, 34.125093004096776], [-117.88969497853888, 34.125087000701804], [-117.88968198583522, 34.12470100344173], [-117.89011597140308, 34.124659002873194], [-117.89009597145585, 34.12423300258651], [-117.88985498575457, 34.124235004081015], [-117.88985098577605, 34.12438200007377], [-117.8891989857579, 34.12438900406366], [-117.8892139858174, 34.12411800368733], [-117.89012097857358, 34.1240610013879], [-117.89014097880188, 34.12191100099788], [-117.88989198561559, 34.12189600455997], [-117.88985397869644, 34.12164500131513], [-117.88938298568546, 34.12163100434807], [-117.88933997861201, 34.121403001630306], [-117.88453898576601, 34.12144800400652], [-117.88467997147703, 34.1187800058044], [-117.88436897147702, 34.11769700580284], [-117.88438298579534, 34.114367003836136], [-117.88479897136477, 34.114350001670886], [-117.88480198455704, 34.11313800051419], [-117.88830998621938, 34.11146300559123], [-117.89023498580694, 34.11152700055656], [-117.89020898579155, 34.1136320038876], [-117.89071198569559, 34.11361500103465], [-117.89079098571766, 34.11413900423472], [-117.89113198576982, 34.114144000688356], [-117.89112398574048, 34.11468500035097], [-117.89019898579471, 34.11471900386725], [-117.89016298528847, 34.119628005231085], [-117.89123197148581, 34.11984000580727], [-117.89233398666032, 34.12054400180265], [-117.89462598638639, 34.12089100137685], [-117.89938897127028, 34.12099400175531], [-117.89942497149866, 34.115376005803405], [-117.89889897149864, 34.11330800580068], [-117.89894997850917, 34.10822900343195], [-117.89670798592563, 34.10860400326914], [-117.89023497148752, 34.11057400579506], [-117.89024297146236, 34.10842100257279], [-117.8868889857551, 34.1084480040658], [-117.88687798103985, 34.106766000403795], [-117.90599000000017, 34.106733999123385], [-117.903529, 34.10808399912335], [-117.90059400000021, 34.108217999123326], [-117.90059400000021, 34.10889899912334], [-117.89963100000028, 34.10889799912335], [-117.89949500000012, 34.11390699912318], [-117.899847, 34.1139009991233], [-117.89983159773665, 34.1141955674118], [-117.90159800000016, 34.11420199912332], [-117.90153700000018, 34.11073299912329], [-117.90339900000022, 34.11066699912331], [-117.90331600000019, 34.113499999123185], [-117.90371200000013, 34.11352999912331], [-117.90370800000017, 34.11422999912321], [-117.90542400000015, 34.11422799912322], [-117.90538500000015, 34.10776199912318], [-117.9075600000001, 34.107622999123286], [-117.907557, 34.10675099912338], [-117.9097149858919, 34.10684800246247], [-117.90979398570323, 34.110297004334775], [-117.91208998641427, 34.11040899940609], [-117.91209297151768, 34.111226005800944], [-117.9120959864062, 34.11314400383954], [-117.9111889859011, 34.11351400098339], [-117.90758098576599, 34.11348000408604], [-117.90757598558037, 34.114253004681274], [-117.91127598553399, 34.11426300016055], [-117.91222398528053, 34.1139440016758], [-117.91593798736055, 34.11202300471437], [-117.91602798572463, 34.11430100427779], [-117.91637597155905, 34.1143080003652], [-117.91645297851619, 34.1107920024343], [-117.91530098631505, 34.11087800471335], [-117.91419098567309, 34.11119900215239], [-117.9142039857155, 34.10821600430319], [-117.91654097875188, 34.10827100007273], [-117.91656098578416, 34.107086002557615], [-117.9180079857509, 34.10706400084796], [-117.91774497152676, 34.10753100579759], [-117.91691097152457, 34.11068700580149], [-117.9166789715233, 34.113540005805035], [-117.91679598577687, 34.11430400406761], [-117.92229697105482, 34.11430800098352], [-117.92224997180328, 34.11398100156753], [-117.92079198562456, 34.11388600459415], [-117.92096398576943, 34.11059800411385], [-117.9245989785914, 34.11057900052983], [-117.92456197860204, 34.1085630018636], [-117.92132098577581, 34.10859400408653], [-117.92133898576603, 34.10700700412918], [-117.9253629905264, 34.10696499949423], [-117.92530200000013, 34.1105729991233], [-117.92802700000021, 34.110446999123305], [-117.92811000000015, 34.10849299912331], [-117.92881200000014, 34.10850599912329], [-117.928569, 34.11432299912321], [-117.93839700000015, 34.11430799912317], [-117.93829500000014, 34.12164699912319], [-117.931395, 34.12166499912316], [-117.93135800000032, 34.120555999123155], [-117.92957200000022, 34.11958599912318], [-117.92776800000016, 34.119755999123186], [-117.92670700000022, 34.12084899912317], [-117.92672600000019, 34.122002999123126], [-117.92890200000016, 34.12583499912313], [-117.9293820000002, 34.12635599912304], [-117.92953500000017, 34.12937599912309], [-117.92939800000015, 34.140126999122955], [-117.93399100000016, 34.140812999122886], [-117.93936300000023, 34.13593899912301], [-117.93926600000017, 34.135308999123005], [-117.9390140000002, 34.134896999123036], [-117.93949700000033, 34.13459799912303], [-117.943592, 34.13734999912297], [-117.94324800000012, 34.13769199912292], [-117.94286200000015, 34.13872699912286], [-117.939702, 34.14053999912298], [-117.93751400000019, 34.14298499912285], [-117.9324260000002, 34.14798099912286], [-117.93157700000026, 34.14912999912286], [-117.930023, 34.15053199912274], [-117.93067300000014, 34.1506929991227], [-117.93087300000015, 34.15107599912282], [-117.934101, 34.15344299912278], [-117.93399000000018, 34.15372899912274], [-117.93516000000021, 34.154326999122766], [-117.9350590000003, 34.15382299912284], [-117.93815100000033, 34.15203899912283], [-117.93824700000015, 34.153504999122724], [-117.94150800000014, 34.15350599912281], [-117.94174700000015, 34.16522799912267], [-117.92479600000019, 34.165505999122644], [-117.91446400000012, 34.16534999912262], [-117.90735200000015, 34.16503899912266], [-117.90729100000011, 34.168205999122655], [-117.899117, 34.16809899912275], [-117.89916000000015, 34.16510599912266], [-117.89508600000019, 34.16509599912266]], [[-117.89021698349949, 34.11270697782308], [-117.89021845734253, 34.112576059014366], [-117.88944300000017, 34.112588999123176], [-117.88943200000018, 34.11331999912324], [-117.89021008673177, 34.11331800699467], [-117.89021698349949, 34.11270697782308]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Azusa", "metadata": {"sqmi": 9.8714355887, "type": "standalone-city", "name": "Azusa", "slug": "azusa"}, "cases": 89.0, "population": 0.6596232930057508, "external_id": "azusa", "slug": "azusa-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/azusa-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.35626100000013, 34.0248359991243], [-118.355009, 34.02471099912427], [-118.35490900000012, 34.02491099912423], [-118.3521180000001, 34.02469199912432], [-118.342709, 34.023710999124305], [-118.33620900000015, 34.022711999124354], [-118.335109, 34.02271199912422], [-118.33500900000011, 34.00831199912448], [-118.33567141630907, 34.00802810642058], [-118.33568798231354, 34.00825800203967], [-118.33661698558493, 34.00787400208213], [-118.33822898634969, 34.00630100259989], [-118.33972398572234, 34.00565800218119], [-118.34104198642595, 34.004850002764854], [-118.34190298615596, 34.00457200277982], [-118.34624998592786, 34.00450500271104], [-118.3495549862482, 34.00497800201242], [-118.35120098584709, 34.00462600223201], [-118.35184598553964, 34.00423100229119], [-118.35407998623731, 34.00205000247107], [-118.35593598608553, 34.000621002442976], [-118.35646898608597, 33.9996770024423], [-118.35681798608651, 33.997961002441265], [-118.35716898665846, 33.99751500257107], [-118.35780498568282, 33.997145001764935], [-118.35819098608724, 33.99927000244224], [-118.35903298608748, 34.001020002443525], [-118.35912298608751, 34.00163100244381], [-118.35749198608546, 34.00724300244727], [-118.35754298269568, 34.00914500436614], [-118.35861498591085, 34.00905700130354], [-118.3614359768944, 34.00833200489529], [-118.36144798608805, 34.007690002447895], [-118.36198197493405, 34.007483004918704], [-118.36206098608872, 34.006952002447626], [-118.36265599492434, 34.00631599923097], [-118.36502698221526, 34.00555500519087], [-118.36622998609162, 34.00635200244764], [-118.36684299051298, 34.00707600371883], [-118.36717298965301, 34.00708799994492], [-118.36671898321352, 34.01562200503545], [-118.37264897701603, 34.01583900084288], [-118.37285799549115, 34.011921003115674], [-118.37309299594295, 34.011913002729266], [-118.373926, 34.013866999124446], [-118.37407000000012, 34.015133999124416], [-118.373736, 34.01637599912447], [-118.372627, 34.01847099912439], [-118.372813, 34.01836299912441], [-118.37589100000011, 34.01851999912437], [-118.375832, 34.01804999912445], [-118.377973, 34.01801799912436], [-118.37921200000012, 34.01956799912443], [-118.380483, 34.020835999124316], [-118.378335, 34.02118099912438], [-118.37875, 34.0220469991244], [-118.376697, 34.02398799912436], [-118.376369, 34.025848999124314], [-118.376693, 34.026036999124294], [-118.37654816091967, 34.026795539354126], [-118.35626100000013, 34.0248359991243]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Baldwin Hills/Crenshaw", "metadata": {"sqmi": 2.88370467344, "type": "segment-of-a-city", "name": "Baldwin Hills/Crenshaw", "slug": "baldwin-hillscrenshaw"}, "cases": 111.0, "population": 0.44953812181194136, "external_id": "baldwin-hillscrenshaw", "slug": "baldwin-hillscrenshaw-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/baldwin-hillscrenshaw-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.94295300000017, 34.1070639991234], [-117.94298000000019, 34.0997489991235], [-117.95459800000019, 34.09961899912344], [-117.95459700000016, 34.096007999123515], [-117.95350900000014, 34.09589099912354], [-117.95354600000019, 34.092353999123546], [-117.95477800000012, 34.09234299912355], [-117.95473500000013, 34.08904999912356], [-117.95229500000018, 34.09123199912354], [-117.950993, 34.091923999123516], [-117.94949100000015, 34.09233999912357], [-117.94879500000015, 34.09241999912351], [-117.94890700000013, 34.0892969991236], [-117.94500100000013, 34.0901779991236], [-117.94548700000013, 34.086630999123635], [-117.9441630000002, 34.08655799912357], [-117.94418, 34.0861149991237], [-117.944489, 34.08296299912359], [-117.945607, 34.08296299912359], [-117.94596700000011, 34.07929299912367], [-117.9482130000002, 34.07934399912366], [-117.954241, 34.07357899912377], [-117.95658000000032, 34.0753089991237], [-117.958122, 34.073877999123646], [-117.95574000000015, 34.072134999123776], [-117.95745600000032, 34.07034999912381], [-117.95819400000013, 34.070253999123736], [-117.95782300000022, 34.069973999123754], [-117.95991600000018, 34.06812299912384], [-117.960523, 34.068428999123824], [-117.96042600000018, 34.06853399912381], [-117.96120600000022, 34.069129999123724], [-117.96106100000017, 34.06937399912377], [-117.9612020000002, 34.0695619991238], [-117.96137100000016, 34.06939599912381], [-117.96220800000026, 34.069297999123805], [-117.963225, 34.068364999123744], [-117.96370200000021, 34.06855199912378], [-117.96392200000014, 34.068339999123765], [-117.9620320000002, 34.06695799912384], [-117.96130200000016, 34.06669299912384], [-117.96221200000019, 34.06536699912383], [-117.96470800000021, 34.065774999123846], [-117.96713800000016, 34.063457999123784], [-117.96622398528982, 34.0627849974329], [-117.96712399019049, 34.06182000567302], [-117.96918498179873, 34.063340999480246], [-117.96938398898794, 34.0631560056749], [-117.97041698663828, 34.063809004037346], [-117.96907397161253, 34.064870005754265], [-117.9697359816567, 34.06535099940913], [-117.97010696542523, 34.06498503399117], [-117.96996897161353, 34.0655220057554], [-117.97066097592683, 34.066028982383756], [-117.9707410000002, 34.0654319991238], [-117.97292398994098, 34.06338100550757], [-117.97561698615077, 34.06377800156824], [-117.97619998873459, 34.06359600527532], [-117.97670098155953, 34.06388499998655], [-117.97786998922624, 34.0628380056428], [-117.97851098545136, 34.06326900150109], [-117.97953798618062, 34.062873005012904], [-117.98117598572236, 34.06286800049174], [-117.98182698599258, 34.06268500378895], [-117.985106, 34.06239999912394], [-117.98524500000028, 34.06272399912387], [-117.98596200000019, 34.06326699912387], [-117.98653700000015, 34.062657999123964], [-117.98816700000019, 34.06260899912386], [-117.988098, 34.06288099912392], [-117.989507, 34.06292799912383], [-117.98977200000012, 34.062596999123755], [-117.99005400000016, 34.062806999123886], [-117.99037500000016, 34.06224099912392], [-117.9907980000002, 34.062530999123965], [-118.00032200000022, 34.06148499912391], [-118.000696, 34.06124899912386], [-118.00161200000014, 34.058913999123874], [-118.00363500000024, 34.055154999123985], [-118.00742800000022, 34.057790999123995], [-118.00615900000015, 34.06150599912391], [-118.00576000000015, 34.06158499912389], [-118.00464200000013, 34.064376999123844], [-118.0046320000002, 34.06498899912382], [-118.00489900000018, 34.065160999123925], [-118.00176500000013, 34.07417099912369], [-118.00117500000017, 34.07693599912375], [-117.9983540000001, 34.07745599912367], [-117.98279600000014, 34.08108299912359], [-117.982902, 34.09201499912345], [-117.984404, 34.092007999123545], [-117.98441900000014, 34.092205999123514], [-117.98407300000021, 34.09912299912341], [-117.97799200000023, 34.099377999123405], [-117.97792500000017, 34.105384999123295], [-117.97756200000013, 34.10671899912338], [-117.97630300000012, 34.1065569991234], [-117.97264, 34.10660599912335], [-117.96103800000013, 34.10696299912327], [-117.95372000000023, 34.106956999123334], [-117.95373900000028, 34.10677099912333], [-117.95287600000016, 34.10671199912331], [-117.95210100000014, 34.10677499912329], [-117.95210700000014, 34.10697299912337], [-117.94828700000015, 34.107011999123394], [-117.94826300000015, 34.10674199912334], [-117.947921, 34.10668999912334], [-117.94720400000017, 34.10677099912333], [-117.9471420000003, 34.107023999123285], [-117.94295300000017, 34.1070639991234]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Baldwin Park", "metadata": {"sqmi": 6.77801613616, "type": "standalone-city", "name": "Baldwin Park", "slug": "baldwin-park"}, "cases": 89.0, "population": 0.7677046493573708, "external_id": "baldwin-park", "slug": "baldwin-park-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/baldwin-park-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.469015, 34.12950599912302], [-118.467415, 34.12920599912294], [-118.46641400000011, 34.129705999123], [-118.465514, 34.12990599912287], [-118.464114, 34.12980599912294], [-118.463114, 34.13080599912306], [-118.459614, 34.13040599912301], [-118.458514, 34.1293059991229], [-118.458414, 34.12740599912311], [-118.459414, 34.12670599912297], [-118.45841400000013, 34.125905999123084], [-118.457614, 34.12620599912294], [-118.45711400000013, 34.12590699912301], [-118.45561400000011, 34.12430699912305], [-118.455814, 34.11910699912304], [-118.455514, 34.11840699912314], [-118.455634, 34.118006999123175], [-118.45531400000014, 34.11800699912312], [-118.456714, 34.11580699912312], [-118.456114, 34.11420699912311], [-118.4570140000001, 34.113806999123206], [-118.456014, 34.11280699912317], [-118.457314, 34.111306999123144], [-118.45581400000016, 34.11020699912312], [-118.45521400000013, 34.10950699912325], [-118.456814, 34.10920699912326], [-118.45521400000013, 34.10770699912313], [-118.45261400000012, 34.10480699912331], [-118.451014, 34.106006999123174], [-118.449413, 34.10330699912332], [-118.449713, 34.102706999123235], [-118.449013, 34.10250699912321], [-118.447713, 34.10170699912329], [-118.447013, 34.100906999123346], [-118.44691300000011, 34.100406999123386], [-118.44701300000017, 34.09970699912333], [-118.446113, 34.09950699912327], [-118.443913, 34.09860799912334], [-118.44401300000011, 34.09930699912333], [-118.443613, 34.099706999123356], [-118.442313, 34.09840799912337], [-118.4411130000001, 34.096807999123406], [-118.440713, 34.09430799912329], [-118.440013, 34.0937079991234], [-118.438713, 34.0918079991234], [-118.438213, 34.09020799912341], [-118.4365130000001, 34.0881079991234], [-118.43541300000012, 34.08530799912362], [-118.43481300000015, 34.082407999123454], [-118.43531300000014, 34.080607999123615], [-118.4378130000001, 34.07940799912361], [-118.440513, 34.077607999123586], [-118.44281300000013, 34.07750799912367], [-118.444013, 34.07700799912366], [-118.444513, 34.076607999123546], [-118.44531300000011, 34.07370799912366], [-118.44881300000011, 34.07350799912363], [-118.45011300000012, 34.07510799912376], [-118.45391300000013, 34.076907999123584], [-118.454913, 34.076507999123535], [-118.457535, 34.07432899912359], [-118.459142, 34.074453999123776], [-118.461113, 34.073207999123724], [-118.46241200000011, 34.07329599912366], [-118.463376, 34.07401599912372], [-118.464019, 34.07417299912364], [-118.465995, 34.07322299912365], [-118.46832500000014, 34.07607599912354], [-118.468977, 34.077366999123626], [-118.469885, 34.07803099912362], [-118.47238800000012, 34.08068899912367], [-118.47456, 34.08385799912344], [-118.47513600000012, 34.08609199912342], [-118.475826, 34.092393999123495], [-118.475596, 34.095743999123385], [-118.475945, 34.09636699912333], [-118.47730100000014, 34.0966799991235], [-118.477906, 34.09890299912347], [-118.47785200000013, 34.100127999123366], [-118.47716600000011, 34.102919999123365], [-118.47720100000012, 34.10400799912322], [-118.47764900000014, 34.10503999912328], [-118.48200500000014, 34.110963999123186], [-118.482018, 34.11783699912312], [-118.48157000000012, 34.11864099912314], [-118.477815, 34.12330599912307], [-118.476115, 34.126005999122974], [-118.474815, 34.126305999122934], [-118.473215, 34.1293059991229], [-118.471615, 34.13090599912296], [-118.469015, 34.12950599912302]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Bel Air", "metadata": {"sqmi": 6.37332143094, "type": "segment-of-a-city", "name": "Bel Air", "slug": "bel-air"}, "cases": 29.0, "population": 0.08429007411713413, "external_id": "bel-air", "slug": "bel-air-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/bel-air-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.1385740000002, 33.90897099912573], [-118.13777500000015, 33.90901599912575], [-118.13519700000026, 33.909684999125695], [-118.13409000000016, 33.90976399912579], [-118.10935900000018, 33.90970999912575], [-118.10836400000011, 33.90663699912581], [-118.10819200000017, 33.90449599912583], [-118.10817400000013, 33.89558199912588], [-118.10835800000017, 33.89532899912593], [-118.10827000000015, 33.88707399912596], [-118.10856600000012, 33.887050999125925], [-118.1085470000002, 33.879842999126126], [-118.10676900000014, 33.872942999126245], [-118.10853900000012, 33.87290399912619], [-118.1084290000002, 33.8655869991264], [-118.114279, 33.865573999126326], [-118.11431000000015, 33.86923699912637], [-118.11720400000023, 33.86814199912629], [-118.12515200000014, 33.86817799912623], [-118.12902000000011, 33.86903699912624], [-118.151239, 33.8689699991262], [-118.15129400000018, 33.87971699912616], [-118.14996200000017, 33.87987799912619], [-118.146878, 33.879871999126095], [-118.14710400000024, 33.88200999912611], [-118.146901, 33.88641499912616], [-118.14697100000015, 33.889179999125965], [-118.14257400000025, 33.889196999125964], [-118.14290600000018, 33.90796099912578], [-118.14269400000032, 33.909771999125724], [-118.14240400000018, 33.91045299912579], [-118.13959300000019, 33.90915699912575], [-118.1385740000002, 33.90897099912573]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Bellflower", "metadata": {"sqmi": 6.19531162394, "type": "standalone-city", "name": "Bellflower", "slug": "bellflower"}, "cases": 137.0, "population": 0.7773490694507489, "external_id": "bellflower", "slug": "bellflower-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/bellflower-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.14857, 33.973972999124946], [-118.13437600000012, 33.97239999912505], [-118.13256200000015, 33.97252099912495], [-118.13059500000016, 33.97318999912501], [-118.12942300000017, 33.97093399912495], [-118.13360200000011, 33.97111299912486], [-118.1366680000001, 33.96745299912506], [-118.13741200000014, 33.965836999125095], [-118.13947800000017, 33.963029999125055], [-118.1405890000003, 33.96263599912503], [-118.155064, 33.95474199912517], [-118.157647, 33.952884999125224], [-118.15849300000022, 33.9520359991252], [-118.16396000000017, 33.95335999912523], [-118.17044900000022, 33.954373999125075], [-118.17043800000019, 33.95568699912525], [-118.16934400000014, 33.963605999125086], [-118.16775600000013, 33.966443999124934], [-118.16656800000021, 33.96713999912507], [-118.16616500000019, 33.96778999912499], [-118.16528500000013, 33.96798499912493], [-118.16589000000018, 33.96816299912507], [-118.16711900000017, 33.969797999125085], [-118.16771200000012, 33.97204899912504], [-118.16783100000019, 33.97336599912501], [-118.16737300000011, 33.97650499912492], [-118.167315, 33.979335999124835], [-118.14973200000013, 33.9774839991249], [-118.14961200000013, 33.97664599912495], [-118.15027100000015, 33.974151999124906], [-118.14857, 33.973972999124946]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Bell Gardens", "metadata": {"sqmi": 2.48028549043, "type": "standalone-city", "name": "Bell Gardens", "slug": "bell-gardens"}, "cases": 106.0, "population": 0.4307017187436512, "external_id": "bell-gardens", "slug": "bell-gardens-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/bell-gardens-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.165504, 33.998112999124665], [-118.16044100000029, 33.99537799912475], [-118.15208900000023, 33.99198599912478], [-118.15268000000029, 33.99065099912463], [-118.15445300000012, 33.99121299912477], [-118.155353, 33.99133299912472], [-118.159241, 33.99129699912484], [-118.16014300000012, 33.991538999124735], [-118.16108700000014, 33.99201799912472], [-118.1618050000001, 33.98735999912476], [-118.1634410000001, 33.98726999912477], [-118.16476000000019, 33.98767299912485], [-118.17047100000012, 33.98788899912475], [-118.16947100000029, 33.98642599912479], [-118.16871600000016, 33.98494199912487], [-118.16774700000016, 33.98209899912481], [-118.167441, 33.98058499912488], [-118.16732400000018, 33.977084999124955], [-118.16784000000018, 33.973013999124994], [-118.167295, 33.97019299912508], [-118.16589000000018, 33.96816299912507], [-118.16528500000013, 33.96798499912493], [-118.16616500000019, 33.96778999912499], [-118.16656800000021, 33.96713999912507], [-118.16775600000013, 33.966443999124934], [-118.1693080000003, 33.963698999125135], [-118.170853, 33.96410999912504], [-118.1703190000002, 33.964604999125044], [-118.17010500000022, 33.966215999124984], [-118.171116, 33.96633099912505], [-118.1709620000002, 33.96727999912497], [-118.1711210000002, 33.967280999124995], [-118.171076, 33.967533999125045], [-118.171491, 33.96761599912505], [-118.17168500000014, 33.96628699912503], [-118.17322200000011, 33.9664389991251], [-118.173003, 33.967713999125095], [-118.17509100000015, 33.96801299912498], [-118.17528600000023, 33.967511999125016], [-118.17698900000016, 33.967700999125086], [-118.17698000000016, 33.96798099912502], [-118.177794, 33.968097999124936], [-118.17773900000016, 33.96838299912507], [-118.18574300000016, 33.9690789991249], [-118.18563800000017, 33.97005199912493], [-118.18800900000014, 33.970303999125015], [-118.1878400000002, 33.96950599912507], [-118.19021500000015, 33.96938999912511], [-118.19016000000013, 33.96895399912503], [-118.190608, 33.968952999125044], [-118.19065100000012, 33.968272999125], [-118.19192600000012, 33.96840899912511], [-118.1918440000001, 33.96908499912505], [-118.19196500000018, 33.969103999125], [-118.19206300000018, 33.968423999125065], [-118.1921960000002, 33.96843799912501], [-118.19210400000031, 33.96931399912497], [-118.194031, 33.969418999125075], [-118.19397900000017, 33.969782999125066], [-118.19434700000018, 33.96982199912502], [-118.194261, 33.970399999125064], [-118.19443900000016, 33.970463999125016], [-118.19984200000017, 33.97120599912505], [-118.19979300000016, 33.97156599912492], [-118.20276300000017, 33.97187099912492], [-118.20350800000011, 33.97394699912489], [-118.20391100000023, 33.9759189991249], [-118.2061660000002, 33.976240999124876], [-118.20624300000014, 33.97963799912487], [-118.20428500000018, 33.979504999124906], [-118.20429, 33.97987699912491], [-118.20233700000023, 33.9796609991248], [-118.20254400000017, 33.980037999124825], [-118.20258100000014, 33.98256899912484], [-118.19753600000014, 33.98206399912484], [-118.1974110000002, 33.98265399912484], [-118.17003500000013, 33.98000799912491], [-118.16994500000013, 33.98023799912481], [-118.17085000000014, 33.98385199912482], [-118.17219800000014, 33.98627299912471], [-118.17257900000021, 33.986436999124805], [-118.17362800000014, 33.98788699912474], [-118.17495300000016, 33.98926499912485], [-118.17698600000016, 33.99085699912471], [-118.175433, 33.9927099991246], [-118.17805100000017, 33.995516999124625], [-118.17765000000021, 33.99574499912472], [-118.17746700000018, 33.995409999124696], [-118.17627500000012, 33.99590599912472], [-118.17676100000018, 33.99720499912472], [-118.17653500000016, 33.997831999124706], [-118.17545500000016, 33.99834699912466], [-118.16833, 33.99602499912466], [-118.16715600000022, 33.99862299912464], [-118.165504, 33.998112999124665]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Bell", "metadata": {"sqmi": 2.55402884183, "type": "standalone-city", "name": "Bell", "slug": "bell"}, "cases": 132.0, "population": 0.36331608499394474, "external_id": "bell", "slug": "bell-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/bell-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.45321400000012, 34.13180599912284], [-118.45121400000014, 34.131505999122986], [-118.4498140000001, 34.13190599912297], [-118.44811400000012, 34.130705999122924], [-118.443414, 34.130005999123064], [-118.44251400000017, 34.13050599912295], [-118.442014, 34.131005999123], [-118.44061400000017, 34.13150599912293], [-118.439314, 34.13110599912288], [-118.438414, 34.13150599912304], [-118.43541400000014, 34.130406999123096], [-118.4339130000001, 34.13070699912293], [-118.432713, 34.13170699912294], [-118.43111300000012, 34.132006999122936], [-118.42641300000011, 34.131006999123045], [-118.424313, 34.13020699912291], [-118.423713, 34.13030699912297], [-118.423213, 34.13020699912299], [-118.422413, 34.12970699912293], [-118.42121300000011, 34.129606999122984], [-118.42081300000011, 34.12850699912306], [-118.41961300000015, 34.12770699912296], [-118.41841300000014, 34.12700699912298], [-118.417213, 34.12720699912302], [-118.4156130000001, 34.12620699912292], [-118.414013, 34.12800699912292], [-118.414213, 34.12900699912305], [-118.41321300000016, 34.12880699912298], [-118.412013, 34.1294069991229], [-118.40911300000013, 34.1294069991229], [-118.406913, 34.12890699912307], [-118.40611300000015, 34.12740699912298], [-118.403912, 34.127906999123056], [-118.40351200000012, 34.12720699912302], [-118.4030120000001, 34.125206999122994], [-118.398912, 34.122306999123076], [-118.3982120000001, 34.12070699912301], [-118.398112, 34.11960699912314], [-118.397412, 34.1191069991231], [-118.395112, 34.11960699912314], [-118.394412, 34.11990699912323], [-118.39351200000013, 34.12000699912309], [-118.39141200000014, 34.122006999123165], [-118.38761200000013, 34.12340699912316], [-118.386912, 34.12180699912304], [-118.388712, 34.12090699912319], [-118.390012, 34.121106999123114], [-118.392112, 34.120406999123105], [-118.39091200000014, 34.11990699912309], [-118.390912, 34.11920699912309], [-118.388812, 34.11870699912312], [-118.39031200000016, 34.118306999123234], [-118.3906120000001, 34.11760699912322], [-118.3906120000001, 34.11710699912318], [-118.391712, 34.11700699912314], [-118.391012, 34.115206999123146], [-118.391651, 34.11419499912319], [-118.392096, 34.11448699912313], [-118.39192000000011, 34.11421499912314], [-118.39157958912189, 34.1124259760246], [-118.395856, 34.11241399912317], [-118.396006, 34.11120299912339], [-118.396365, 34.111615999123224], [-118.397202, 34.11161899912329], [-118.399203, 34.11148699912335], [-118.400073, 34.11093499912331], [-118.398655, 34.108609999123296], [-118.401038, 34.10873299912325], [-118.400888, 34.09399399912349], [-118.401399, 34.09383999912344], [-118.401677, 34.09420499912348], [-118.402064, 34.09379099912339], [-118.402419, 34.09366699912339], [-118.40532, 34.09629999912352], [-118.405144, 34.097155999123395], [-118.40529900000011, 34.097998999123426], [-118.40541, 34.101460999123354], [-118.40826, 34.10150199912341], [-118.408171, 34.10128999912336], [-118.408723, 34.10065999912341], [-118.408606, 34.1004579991234], [-118.409058, 34.100155999123395], [-118.409005, 34.09900099912345], [-118.408785, 34.09845199912338], [-118.409067, 34.0975539991234], [-118.408641, 34.09714699912344], [-118.408892, 34.09711899912351], [-118.409054, 34.09656999912338], [-118.40949400000011, 34.09614999912339], [-118.40919, 34.095537999123465], [-118.40944, 34.094858999123446], [-118.411471, 34.093495999123526], [-118.411883, 34.09224399912341], [-118.411969, 34.09247899912348], [-118.412609, 34.0929169991234], [-118.41393400000011, 34.09426799912353], [-118.42274, 34.09431499912344], [-118.42268900000012, 34.09056099912354], [-118.423318, 34.090534999123456], [-118.424032, 34.09011099912351], [-118.42455300000016, 34.09032199912355], [-118.42450000000011, 34.09063799912348], [-118.427041, 34.090630999123505], [-118.426962, 34.083043999123625], [-118.422778, 34.08309299912365], [-118.422647, 34.080008999123606], [-118.4232312833546, 34.079927282478124], [-118.425812, 34.08080799912359], [-118.42771200000011, 34.080607999123565], [-118.42901200000011, 34.07910799912349], [-118.429912, 34.07930799912365], [-118.431812, 34.08220799912358], [-118.434213, 34.082707999123656], [-118.43481300000015, 34.082407999123454], [-118.43541300000012, 34.08530799912362], [-118.4365130000001, 34.0881079991234], [-118.438213, 34.09020799912341], [-118.438713, 34.0918079991234], [-118.440013, 34.0937079991234], [-118.440713, 34.09430799912329], [-118.4411130000001, 34.096807999123406], [-118.442313, 34.09840799912337], [-118.443613, 34.099706999123356], [-118.44401300000011, 34.09930699912333], [-118.443913, 34.09860799912334], [-118.446113, 34.09950699912327], [-118.44701300000017, 34.09970699912333], [-118.44691300000011, 34.100406999123386], [-118.447013, 34.100906999123346], [-118.447713, 34.10170699912329], [-118.449013, 34.10250699912321], [-118.449713, 34.102706999123235], [-118.449413, 34.10330699912332], [-118.451014, 34.106006999123174], [-118.45261400000012, 34.10480699912331], [-118.45521400000013, 34.10770699912313], [-118.456814, 34.10920699912326], [-118.45521400000013, 34.10950699912325], [-118.45581400000016, 34.11020699912312], [-118.457314, 34.111306999123144], [-118.456014, 34.11280699912317], [-118.4570140000001, 34.113806999123206], [-118.456114, 34.11420699912311], [-118.456714, 34.11580699912312], [-118.45531400000014, 34.11800699912312], [-118.455634, 34.118006999123175], [-118.455514, 34.11840699912314], [-118.455814, 34.11910699912304], [-118.45561400000011, 34.12430699912305], [-118.45711400000013, 34.12590699912301], [-118.457614, 34.12620599912294], [-118.45841400000013, 34.125905999123084], [-118.459414, 34.12670599912297], [-118.458414, 34.12740599912311], [-118.458514, 34.1293059991229], [-118.459614, 34.13040599912301], [-118.455914, 34.13260599912286], [-118.454914, 34.132905999123004], [-118.45321400000012, 34.13180599912284]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Beverly Crest", "metadata": {"sqmi": 8.23609299869, "type": "segment-of-a-city", "name": "Beverly Crest", "slug": "beverly-crest"}, "cases": 32.0, "population": 0.12524952052917923, "external_id": "beverly-crest", "slug": "beverly-crest-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/beverly-crest-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.372486, 34.08575499912359], [-118.372485, 34.085437999123606], [-118.37023, 34.085608999123515], [-118.370233, 34.08708399912362], [-118.36643, 34.08713899912364], [-118.366443, 34.088923999123544], [-118.363269, 34.088970999123525], [-118.363267, 34.08877799912355], [-118.362712, 34.088786999123506], [-118.362701, 34.08719099912351], [-118.3617163861687, 34.08720063095923], [-118.361486, 34.07396099912366], [-118.36161000000014, 34.06580999912373], [-118.36151, 34.0630099991238], [-118.37223126490076, 34.06420125077948], [-118.37203, 34.06418199912384], [-118.373017, 34.06539499912382], [-118.375864, 34.07029899912369], [-118.375892, 34.06978399912366], [-118.37635400000016, 34.06978699912375], [-118.376317, 34.06933599912372], [-118.377375, 34.069323999123775], [-118.377403, 34.069708999123826], [-118.383728, 34.069683999123676], [-118.383764, 34.072121999123745], [-118.390704, 34.07208299912372], [-118.390718, 34.07650099912364], [-118.381694, 34.0763959991237], [-118.3816929999999, 34.0767109991237], [-118.380517, 34.07669399912379], [-118.379754, 34.07639099912363], [-118.377192, 34.07647899912375], [-118.37722, 34.07817299912363], [-118.377567, 34.07874199912361], [-118.377777, 34.078652999123676], [-118.377991, 34.078942999123704], [-118.3773020000002, 34.07922699912362], [-118.37689300000011, 34.07896599912369], [-118.377248, 34.080206999123625], [-118.37526400000013, 34.08015899912364], [-118.37525, 34.08201099912358], [-118.37420200000011, 34.08201899912357], [-118.374209, 34.0801609991236], [-118.370294, 34.08016899912358], [-118.37030200000011, 34.08315699912354], [-118.37703300000013, 34.08303999912355], [-118.376951, 34.088629999123555], [-118.376284, 34.08898899912352], [-118.37538300000011, 34.0891399991235], [-118.375186, 34.089417999123484], [-118.37475700000012, 34.089424999123494], [-118.37475700000012, 34.08969899912348], [-118.374328, 34.08970599912346], [-118.37413, 34.089956999123565], [-118.372498, 34.09025599912344], [-118.372486, 34.08575499912359]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Beverly Grove", "metadata": {"sqmi": 1.64868313332, "type": "segment-of-a-city", "name": "Beverly Grove", "slug": "beverly-grove"}, "cases": null, "population": null, "external_id": "beverly-grove", "slug": "beverly-grove-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/beverly-grove-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.3911400000002, 34.11242299912339], [-118.39057400000029, 34.10920299912332], [-118.3911970000002, 34.107485999123355], [-118.39175700000015, 34.10668199912335], [-118.392227, 34.106516999123336], [-118.39207900000015, 34.10635799912334], [-118.39208100000013, 34.09979399912348], [-118.394894, 34.096975999123394], [-118.39541200000018, 34.09617299912345], [-118.39650600000013, 34.0961819991235], [-118.396504, 34.09506599912343], [-118.396154, 34.09516299912351], [-118.39591400000018, 34.095012999123526], [-118.3957280000002, 34.090585999123526], [-118.39451400000019, 34.0905799991235], [-118.39358600000021, 34.08963499912361], [-118.38975500000015, 34.08849499912371], [-118.38973300000019, 34.076489999123716], [-118.39071800000019, 34.07650099912368], [-118.39070400000018, 34.07208299912377], [-118.383764, 34.072121999123766], [-118.38372800000016, 34.06968399912372], [-118.37740300000019, 34.06970899912385], [-118.37737500000013, 34.069323999123824], [-118.37631700000014, 34.0693359991238], [-118.37635400000026, 34.0697869991238], [-118.37589200000012, 34.0697839991237], [-118.3758640000002, 34.07029899912374], [-118.37301700000017, 34.06539499912384], [-118.37203000000017, 34.0641819991239], [-118.3722580000002, 34.064244999123815], [-118.37202700000017, 34.06386699912386], [-118.3722440000002, 34.062199999123884], [-118.376001, 34.05996499912385], [-118.37600600000016, 34.05961099912387], [-118.37617400000016, 34.05946199912391], [-118.3772660000001, 34.05938399912396], [-118.37733000000016, 34.06295399912389], [-118.38353400000014, 34.06293699912394], [-118.383666, 34.05709899912396], [-118.39971300000023, 34.05709599912397], [-118.400002, 34.0568769991239], [-118.400428, 34.057096999123935], [-118.400785, 34.05686699912395], [-118.40090700000015, 34.05699699912401], [-118.40075100000011, 34.05709799912393], [-118.40127100000016, 34.05709799912393], [-118.40158400000023, 34.05691499912388], [-118.40167900000023, 34.05702899912394], [-118.4015560000002, 34.057098999123994], [-118.40188200000021, 34.05709799912393], [-118.40227, 34.05688599912402], [-118.40237100000012, 34.05699599912386], [-118.4021830000002, 34.057098999123994], [-118.4024630000002, 34.05709899912393], [-118.40277100000021, 34.056886999124096], [-118.40292700000015, 34.05705499912389], [-118.403261, 34.056830999123925], [-118.40345500000022, 34.057022999123866], [-118.40399300000011, 34.057100999123925], [-118.40592200000013, 34.05710399912395], [-118.40592900000019, 34.054829999124], [-118.40545200000015, 34.05486099912397], [-118.4052850000001, 34.05440199912407], [-118.40556200000019, 34.054311999123954], [-118.40556200000012, 34.054140999123824], [-118.40612200000018, 34.054144999123935], [-118.405484, 34.052846999124], [-118.40602300000015, 34.05266599912401], [-118.41155100000017, 34.06042499912394], [-118.41220400000027, 34.06010099912391], [-118.414166, 34.062840999123814], [-118.41351400000018, 34.06316499912383], [-118.4172530000002, 34.0683829991238], [-118.416371, 34.06883999912381], [-118.41738200000023, 34.0702059991239], [-118.418462, 34.07236099912385], [-118.41964200000018, 34.072651999123714], [-118.42092800000013, 34.07542799912364], [-118.42183900000022, 34.07509299912382], [-118.42254600000017, 34.07527299912372], [-118.42328900000012, 34.07568899912373], [-118.42276700000018, 34.07704799912372], [-118.423296, 34.077568999123685], [-118.42363200000011, 34.078763999123744], [-118.4234770000001, 34.0788129991237], [-118.4238280000002, 34.079739999123696], [-118.42264700000018, 34.080008999123656], [-118.42277800000019, 34.08309299912367], [-118.42696200000017, 34.08304399912366], [-118.42704100000013, 34.090630999123526], [-118.42450000000021, 34.09063799912352], [-118.42455300000027, 34.090321999123574], [-118.42403200000011, 34.09011099912354], [-118.42331800000017, 34.090534999123484], [-118.42268900000022, 34.09056099912355], [-118.42274000000012, 34.09431499912346], [-118.41393400000021, 34.09426799912356], [-118.41260900000019, 34.09291699912346], [-118.41196900000013, 34.09247899912351], [-118.411883, 34.09224399912347], [-118.41147100000019, 34.09349599912358], [-118.4094400000002, 34.094858999123495], [-118.40919000000018, 34.09553799912351], [-118.40949400000021, 34.096149999123426], [-118.4090540000002, 34.09656999912345], [-118.40889200000012, 34.09711899912352], [-118.40864100000012, 34.09714699912348], [-118.40906700000012, 34.09755399912345], [-118.40878500000015, 34.09845199912343], [-118.4090050000001, 34.09900099912349], [-118.4090580000002, 34.10015599912345], [-118.40860600000013, 34.10045799912343], [-118.40872300000014, 34.10065999912344], [-118.40817100000017, 34.1012899991234], [-118.40826000000014, 34.10150199912345], [-118.40541000000015, 34.10146099912339], [-118.40529900000021, 34.09799899912344], [-118.40514400000013, 34.097155999123444], [-118.40532000000012, 34.09629999912357], [-118.40241900000012, 34.09366699912342], [-118.40206400000015, 34.09379099912343], [-118.401677, 34.094204999123505], [-118.40139900000014, 34.09383999912347], [-118.400888, 34.093993999123526], [-118.40103800000016, 34.1087329991233], [-118.39865500000018, 34.108609999123345], [-118.40007300000016, 34.110934999123344], [-118.39920300000023, 34.1114869991234], [-118.39720200000018, 34.1116189991233], [-118.39636500000013, 34.11161599912327], [-118.39600600000018, 34.11120299912339], [-118.39585600000012, 34.11241399912322], [-118.3911400000002, 34.11242299912339]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Beverly Hills", "metadata": {"sqmi": 5.70224133167, "type": "standalone-city", "name": "Beverly Hills", "slug": "beverly-hills"}, "cases": 108.0, "population": 0.34520232691938885, "external_id": "beverly-hills", "slug": "beverly-hills-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/beverly-hills-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.38961100000014, 34.052309999123885], [-118.38951100000013, 34.04950999912385], [-118.385411, 34.04880999912388], [-118.38831000000013, 34.03900999912411], [-118.38841, 34.03820999912405], [-118.38941, 34.03470999912416], [-118.394111, 34.0361099991241], [-118.39851100000017, 34.037209999124116], [-118.39921100000014, 34.039709999124135], [-118.398511, 34.041209999124064], [-118.398711, 34.04370999912402], [-118.399011, 34.043809999123965], [-118.39885900000017, 34.0454799991239], [-118.402553, 34.04635299912396], [-118.401531, 34.0519669991239], [-118.397711, 34.052309999123935], [-118.38961100000014, 34.052309999123885]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Beverlywood", "metadata": {"sqmi": 0.794341836932, "type": "segment-of-a-city", "name": "Beverlywood", "slug": "beverlywood"}, "cases": 31.0, "population": 0.13172991118854374, "external_id": "beverlywood", "slug": "beverlywood-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/beverlywood-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.192705, 34.061810999123814], [-118.19238400382756, 34.034002470454126], [-118.19184085280028, 34.03400446002813], [-118.19184585281442, 34.03441646002893], [-118.19129100000016, 34.034416999124225], [-118.19126900000012, 34.0336129991242], [-118.191286, 34.033273999124134], [-118.192377, 34.0332329991241], [-118.192219, 34.0150799991244], [-118.191436, 34.015083999124364], [-118.191428, 34.01276099912442], [-118.201273, 34.0135839991245], [-118.205058, 34.01437399912449], [-118.205026, 34.01262599912447], [-118.20534, 34.012815999124456], [-118.207041, 34.01277699912451], [-118.208166, 34.01500599912457], [-118.21270100000011, 34.014988999124355], [-118.21269800000012, 34.01429499912439], [-118.218069, 34.0159849991244], [-118.218064, 34.01496499912438], [-118.22291280880971, 34.01494244501524], [-118.223906, 34.01851299912442], [-118.2262060000001, 34.02931199912413], [-118.22646400000012, 34.02943499912414], [-118.227406, 34.03451199912409], [-118.228406, 34.038611999124115], [-118.230306, 34.048011999124036], [-118.22890600000017, 34.053210999123834], [-118.227306, 34.05511099912379], [-118.22580600000012, 34.05441099912397], [-118.219306, 34.05691099912389], [-118.213506, 34.06141099912384], [-118.20750600000012, 34.06521099912367], [-118.2048050000001, 34.06571099912376], [-118.202105, 34.06571099912376], [-118.198405, 34.06511099912373], [-118.192805, 34.06391099912392], [-118.192705, 34.061810999123814]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Boyle Heights", "metadata": {"sqmi": 6.51900530941, "type": "segment-of-a-city", "name": "Boyle Heights", "slug": "boyle-heights"}, "cases": 209.0, "population": 0.8688422365412596, "external_id": "boyle-heights", "slug": "boyle-heights-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/boyle-heights-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.96005300000026, 34.156947999122785], [-117.96005200000019, 34.151784999122825], [-117.95150500000013, 34.150420999122794], [-117.95129700000027, 34.1483059991228], [-117.95130800000018, 34.14577899912286], [-117.95159800000016, 34.14451799912283], [-117.95155, 34.14351699912286], [-117.96002900000015, 34.14342599912286], [-117.961586, 34.143499999122824], [-117.96312400000016, 34.143679999122874], [-117.96312300000014, 34.14378199912293], [-117.97538053584937, 34.143677262903644], [-117.97538236966402, 34.14690429647322], [-117.9803610000002, 34.146870999122854], [-117.98033500000015, 34.14791699912287], [-117.98196600000024, 34.14782499912286], [-117.98208000000015, 34.15041799912286], [-117.98339000000026, 34.15058699912279], [-117.983556, 34.15117799912281], [-117.9838840000003, 34.1515619991228], [-117.98507600000015, 34.15155799912276], [-117.98537800000027, 34.15400899912272], [-117.985851, 34.15512499912271], [-117.98556700000013, 34.15511799912272], [-117.98513600000018, 34.15573399912274], [-117.9848770000002, 34.155712999122755], [-117.98473700000018, 34.15638499912276], [-117.98269900000021, 34.15629899912278], [-117.98256500000019, 34.156519999122715], [-117.98191900000013, 34.15663499912275], [-117.98109500000015, 34.15643099912273], [-117.98090200000019, 34.156833999122775], [-117.980112, 34.156509999122804], [-117.9800180000002, 34.15669799912275], [-117.9774460000001, 34.155866999122786], [-117.977198, 34.16500599912263], [-117.960054, 34.1650539991226], [-117.96005300000026, 34.156947999122785]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Bradbury", "metadata": {"sqmi": 1.92842214364, "type": "standalone-city", "name": "Bradbury", "slug": "bradbury"}, "cases": 1.0, "population": 0.010689470871191877, "external_id": "bradbury", "slug": "bradbury-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/bradbury-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.488415, 34.130005999123064], [-118.47998500000011, 34.13001299912292], [-118.479364, 34.12951599912305], [-118.478519, 34.126655999123], [-118.478241, 34.12618399912304], [-118.47763700000012, 34.125944999123114], [-118.476115, 34.126005999122974], [-118.477815, 34.12330599912307], [-118.481864, 34.11821799912312], [-118.48206900000011, 34.117339999123004], [-118.48208100000011, 34.11132299912321], [-118.48191500000011, 34.11070699912317], [-118.47764900000014, 34.10503999912328], [-118.47720100000012, 34.10400799912322], [-118.47716600000011, 34.102919999123365], [-118.47785200000013, 34.100127999123366], [-118.477906, 34.09890299912347], [-118.47730100000014, 34.0966799991235], [-118.475945, 34.09636699912333], [-118.475596, 34.095743999123385], [-118.475826, 34.092393999123495], [-118.47513600000012, 34.08609199912342], [-118.474802, 34.084475999123484], [-118.47427700000011, 34.083280999123545], [-118.47238800000012, 34.08068899912367], [-118.469885, 34.07803099912362], [-118.468977, 34.077366999123626], [-118.46832500000014, 34.07607599912354], [-118.465995, 34.07322299912365], [-118.466532, 34.072917999123675], [-118.460203, 34.065374999123804], [-118.45962600000017, 34.06550399912379], [-118.45516100000013, 34.060242999123716], [-118.458781, 34.05807299912396], [-118.4611000000002, 34.06004599912379], [-118.46281400000015, 34.06310899912391], [-118.4632000000001, 34.06506599912379], [-118.465336, 34.06698899912373], [-118.466731, 34.06770799912381], [-118.468893, 34.06587099912373], [-118.467953, 34.060909999123794], [-118.45922941167468, 34.05079463890208], [-118.47096, 34.04127599912417], [-118.471513, 34.04174899912413], [-118.471275, 34.04194199912395], [-118.473721, 34.04403599912408], [-118.474278, 34.044313999124], [-118.474382, 34.04420799912411], [-118.477283, 34.046698999124054], [-118.47834800000015, 34.04626499912402], [-118.478438, 34.045628999124006], [-118.479015, 34.045686999123916], [-118.479136, 34.04518899912394], [-118.479647, 34.0451069991241], [-118.479745, 34.044702999124056], [-118.480161, 34.04452899912417], [-118.48001500000011, 34.044455999124025], [-118.483766, 34.04142999912406], [-118.49410321379318, 34.05024852326198], [-118.493814, 34.05010799912388], [-118.493014, 34.05180799912383], [-118.49251400000011, 34.05350799912392], [-118.49311400000012, 34.056407999123955], [-118.49271400000013, 34.05840799912377], [-118.49345900000013, 34.05891999912381], [-118.49347800000011, 34.059944999123886], [-118.49363700000015, 34.060310999123786], [-118.494368, 34.06062999912375], [-118.49505, 34.0605539991238], [-118.495513, 34.0601659991238], [-118.496172, 34.05633599912391], [-118.496359, 34.056018999123985], [-118.498628, 34.0549209991238], [-118.499054, 34.05440699912382], [-118.499256, 34.053689999123996], [-118.4995440000001, 34.053288999123865], [-118.500614, 34.05290799912391], [-118.50294, 34.05272199912398], [-118.503885, 34.05227999912387], [-118.508014, 34.046607999124], [-118.508427, 34.0462399991239], [-118.509166, 34.04618899912392], [-118.51000600000015, 34.04668699912401], [-118.510059, 34.047279999123994], [-118.509297, 34.048561999124054], [-118.509212, 34.04898999912393], [-118.50927100000014, 34.050516999123886], [-118.509541, 34.050902999123934], [-118.50996100000012, 34.051087999123936], [-118.506807, 34.05532399912385], [-118.506814, 34.06150799912376], [-118.50711400000013, 34.06410799912384], [-118.511514, 34.06690799912384], [-118.516515, 34.07220799912368], [-118.51521500000011, 34.07500799912373], [-118.51751500000012, 34.07600799912372], [-118.520515, 34.081806999123486], [-118.518415, 34.081806999123486], [-118.519515, 34.08280699912348], [-118.5180150000001, 34.08310699912364], [-118.52071500000018, 34.08860699912339], [-118.525516, 34.104406999123285], [-118.525616, 34.10730699912323], [-118.5279160000001, 34.11820599912323], [-118.52751600000012, 34.11850599912308], [-118.5283160000001, 34.118905999123136], [-118.529216, 34.122005999123026], [-118.528616, 34.12550599912302], [-118.52711600000013, 34.12910599912314], [-118.510716, 34.13030599912292], [-118.51041600000013, 34.130705999122924], [-118.508516, 34.131205999122926], [-118.50411600000014, 34.128005999123026], [-118.5026160000001, 34.12840599912297], [-118.502016, 34.13060599912289], [-118.5022160000001, 34.12950599912306], [-118.500916, 34.12910599912313], [-118.496815, 34.1305059991229], [-118.49601500000014, 34.130005999122936], [-118.494415, 34.130105999122975], [-118.4928150000001, 34.13110599912298], [-118.490415, 34.131205999122926], [-118.490015, 34.13060599912304], [-118.488415, 34.130005999123064]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Brentwood", "metadata": {"sqmi": 15.2237014135, "type": "segment-of-a-city", "name": "Brentwood", "slug": "brentwood"}, "cases": 66.0, "population": 0.3407935282154035, "external_id": "brentwood", "slug": "brentwood-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/brentwood-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.278207, 33.96001399912514], [-118.269506, 33.96001399912504], [-118.2694377868819, 33.923101994170985], [-118.27733197487852, 33.92328100042939], [-118.2772889860438, 33.922856002383824], [-118.27753398960863, 33.92243300664812], [-118.27822098879062, 33.92250900026267], [-118.27822598175104, 33.92321799797693], [-118.28126527806717, 33.923199001298045], [-118.279848, 33.93494499912537], [-118.27980600000011, 33.94291399912524], [-118.27960600000013, 33.94551399912521], [-118.27930600000012, 33.947213999125104], [-118.2807070000002, 33.95661399912518], [-118.280807, 33.95991399912499], [-118.278207, 33.96001399912514]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Broadway-Manchester", "metadata": {"sqmi": 1.55848582484, "type": "segment-of-a-city", "name": "Broadway-Manchester", "slug": "broadway-manchester"}, "cases": 96.0, "population": 0.33765959691885616, "external_id": "broadway-manchester", "slug": "broadway-manchester-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/broadway-manchester-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.29276100000021, 34.221653999121976], [-118.28020900000014, 34.2071039991222], [-118.28010900000015, 34.190204999122294], [-118.283377, 34.18598399912235], [-118.28783100000015, 34.18763199912238], [-118.28827200000015, 34.18715399912236], [-118.29009200000031, 34.18461599912246], [-118.29287500000018, 34.181633999122504], [-118.29759900000018, 34.1770039991226], [-118.29639200000017, 34.176121999122564], [-118.29890600000016, 34.17369899912255], [-118.29918, 34.1732759991225], [-118.29688700000011, 34.171559999122515], [-118.30203000000012, 34.16657099912258], [-118.304583, 34.16435199912262], [-118.30701700000017, 34.16178299912268], [-118.3078490000002, 34.16115199912266], [-118.30872800000022, 34.16143899912264], [-118.30964600000013, 34.161258999122644], [-118.3103200000002, 34.16075999912264], [-118.31218900000025, 34.155344999122796], [-118.31467500000012, 34.15427799912275], [-118.31581800000016, 34.15445299912275], [-118.316002, 34.15466099912266], [-118.3172170000002, 34.15479199912278], [-118.31767700000016, 34.156312999122676], [-118.32211000000015, 34.155726999122734], [-118.32572100000016, 34.153252999122934], [-118.3290260000002, 34.15018099912281], [-118.33006700000017, 34.14974699912281], [-118.33102800000013, 34.148317999122845], [-118.33663700000024, 34.14649399912297], [-118.33880400000018, 34.14522799912289], [-118.33989100000018, 34.14555899912285], [-118.34034300000016, 34.145491999122925], [-118.34088, 34.144934999122825], [-118.34483800000021, 34.142691999122825], [-118.34566500000024, 34.142366999122906], [-118.345949, 34.14457299912285], [-118.35310300000016, 34.16128899912276], [-118.35715100000026, 34.16128699912271], [-118.3571580000002, 34.164907999122626], [-118.35472700000014, 34.16490899912257], [-118.35775800000022, 34.1721619991226], [-118.3608240000002, 34.19248499912229], [-118.36119000000012, 34.19397099912232], [-118.36115100000015, 34.194650999122324], [-118.3703130000002, 34.196378999122274], [-118.37031200000017, 34.201196999122146], [-118.36226100000019, 34.20123399912221], [-118.362171, 34.20141899912221], [-118.36298700000022, 34.2068179991221], [-118.33993000000021, 34.206502999122215], [-118.33980600000015, 34.21119399912206], [-118.33773700000015, 34.21127099912208], [-118.3377060000002, 34.21258899912205], [-118.33603200000017, 34.21430899912203], [-118.33641700000011, 34.21456799912196], [-118.33484500000019, 34.21551399912199], [-118.33512800000015, 34.21675299912208], [-118.33746200000014, 34.22131199912201], [-118.29276100000021, 34.221653999121976]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Burbank", "metadata": {"sqmi": 17.3418424792, "type": "standalone-city", "name": "Burbank", "slug": "burbank"}, "cases": 241.0, "population": 1.0717779951970114, "external_id": "burbank", "slug": "burbank-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/burbank-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.69454400000014, 34.16841799912253], [-118.67437700000019, 34.16816499912262], [-118.67423362477263, 34.16590926695656], [-118.6742138066609, 34.15466427129864], [-118.66866798532526, 34.15465890900171], [-118.66866584456169, 34.154816921119846], [-118.6685032790368, 34.15481653174864], [-118.6685029780249, 34.15465880269921], [-118.66751211260497, 34.15465834410004], [-118.6675212123453, 34.15222263722826], [-118.66692500000016, 34.15230299912284], [-118.66638000000023, 34.15217899912277], [-118.66568111540369, 34.15136367309613], [-118.66531031872236, 34.15411004888559], [-118.66437201417665, 34.15465504916218], [-118.65868724738726, 34.15465040694591], [-118.65867792463554, 34.15795845714115], [-118.65517700000015, 34.158082999122655], [-118.65522400000016, 34.161092999122694], [-118.65431200000016, 34.16083699912271], [-118.65435300000017, 34.1581129991227], [-118.65130900000015, 34.15808899912272], [-118.65129500000018, 34.157747999122606], [-118.64998600000018, 34.157735999122615], [-118.64994868451143, 34.158922308094034], [-118.64936800000021, 34.15896499912266], [-118.64828700000015, 34.1587059991227], [-118.64677600000014, 34.1576689991228], [-118.64672200000012, 34.15724799912277], [-118.64472200000023, 34.15797199912276], [-118.64473900000017, 34.15745899912269], [-118.64575300000017, 34.15600399912271], [-118.64127, 34.157923999122694], [-118.64127600000022, 34.15663299912269], [-118.63848300000019, 34.157596999122724], [-118.63216200000014, 34.15052499912285], [-118.63125, 34.151086999122775], [-118.6302550000002, 34.15038099912279], [-118.63007500000016, 34.149832999122886], [-118.62981100000013, 34.149892999122784], [-118.62897800000012, 34.14734899912291], [-118.62915300000017, 34.14689899912289], [-118.62288800000013, 34.147267999122825], [-118.61497100000021, 34.14727699912286], [-118.61497800000026, 34.149266999122815], [-118.61014600000019, 34.14742999912275], [-118.6108020000002, 34.147440999122914], [-118.61102000000015, 34.14524799912287], [-118.61139440905694, 34.14365265032877], [-118.61424080146257, 34.143656412310676], [-118.61531000000019, 34.1428329991229], [-118.61509400000013, 34.141478999122924], [-118.61363300000015, 34.141381999122856], [-118.61280500000014, 34.14064499912291], [-118.61277600000022, 34.13977299912288], [-118.60620347078762, 34.13965862411661], [-118.60624564505898, 34.12900110415265], [-118.61060906154134, 34.12902239431132], [-118.61062967278785, 34.12533058044352], [-118.64110746287987, 34.125308348765614], [-118.64483221289649, 34.125322329703664], [-118.64495519704698, 34.12905448796756], [-118.65006176134513, 34.129070536850755], [-118.65020531404721, 34.12153142579452], [-118.65094418079703, 34.12083674087975], [-118.65136378612557, 34.11986019652828], [-118.65149345428054, 34.11829238819136], [-118.65180461149343, 34.11729987862495], [-118.66052800000018, 34.117070999123236], [-118.676932, 34.117703999123165], [-118.68858400000019, 34.1174659991232], [-118.6886840000002, 34.11426799912323], [-118.70638300000022, 34.11426699912325], [-118.70669000000021, 34.10712099912328], [-118.7107384972251, 34.10718476072527], [-118.71077200000019, 34.10420399912333], [-118.71134300000018, 34.10391199912329], [-118.71173100000016, 34.10483399912338], [-118.7117740000002, 34.10542199912336], [-118.711359, 34.107006999123385], [-118.71144000000011, 34.10892099912326], [-118.71131800000015, 34.1097999991233], [-118.71096900000022, 34.1110569991233], [-118.708409, 34.11752199912322], [-118.70641900000015, 34.12498099912311], [-118.7195020000001, 34.12500799912309], [-118.71958900000016, 34.128165999123], [-118.71978727889746, 34.12816757903454], [-118.71979021515855, 34.12897251688813], [-118.72014571764694, 34.12897218047323], [-118.72015854939072, 34.129857545593424], [-118.7206210000002, 34.13065899912307], [-118.72074019325878, 34.13171053903597], [-118.72018200000016, 34.132063999123034], [-118.71941000000017, 34.132051999123014], [-118.71968500000018, 34.13624099912306], [-118.7241120000002, 34.13631199912296], [-118.72413386088797, 34.13829962092446], [-118.7267972395646, 34.137998650484825], [-118.72795645566335, 34.13810158993966], [-118.7291821088183, 34.13843288950915], [-118.73063830005931, 34.139239215941366], [-118.7349370457869, 34.142153456231014], [-118.7358719329437, 34.14267020794711], [-118.7370238572315, 34.14304324369543], [-118.73706000000028, 34.15435299912277], [-118.73232400000016, 34.1543019991227], [-118.726317, 34.16787499912258], [-118.72337400000029, 34.16786099912268], [-118.71167400000034, 34.168516999122595], [-118.70506600000019, 34.168596999122606], [-118.69454400000014, 34.16841799912253]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Calabasas", "metadata": {"sqmi": 18.5426135082, "type": "standalone-city", "name": "Calabasas", "slug": "calabasas"}, "cases": 38.0, "population": 0.2432311335850989, "external_id": "calabasas", "slug": "calabasas-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/calabasas-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.60301700000011, 34.23530599912172], [-118.58832000000014, 34.23530299912163], [-118.588319, 34.18820399912227], [-118.597311, 34.18821299912225], [-118.60674, 34.18643499912233], [-118.61462, 34.186403999122305], [-118.61452, 34.19830399912214], [-118.61472, 34.199703999122164], [-118.61452, 34.20470399912215], [-118.61472, 34.211903999121915], [-118.61452, 34.21540399912199], [-118.614621, 34.21940399912192], [-118.61012, 34.219403999121845], [-118.605814, 34.21960199912184], [-118.605818, 34.225696999121865], [-118.605704, 34.2264239991219], [-118.605122, 34.227319999121846], [-118.60305200000012, 34.22890699912174], [-118.60263400000012, 34.2298629991218], [-118.602821, 34.231302999121745], [-118.604821, 34.235302999121664], [-118.60301700000011, 34.23530599912172]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Canoga Park", "metadata": {"sqmi": 4.34851812528, "type": "segment-of-a-city", "name": "Canoga Park", "slug": "canoga-park"}, "cases": 285.0, "population": 0.6528910473746907, "external_id": "canoga-park", "slug": "canoga-park-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/canoga-park-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.25760500000024, 33.88626799912611], [-118.2572130000001, 33.8840009991261], [-118.25814100000014, 33.88397199912608], [-118.26130600000016, 33.8813429991261], [-118.26151200000018, 33.88011199912614], [-118.26081400000018, 33.880181999126144], [-118.25909800000018, 33.87996199912611], [-118.25337600000016, 33.88011599912611], [-118.25366600000015, 33.881716999126155], [-118.24874100000022, 33.881716999126155], [-118.24873400000017, 33.88041499912604], [-118.24729800000017, 33.880451999126166], [-118.24742400000018, 33.87891199912617], [-118.248642, 33.878812999126175], [-118.24866000000023, 33.87007999912622], [-118.244139, 33.87018599912626], [-118.2423990000001, 33.8698939991262], [-118.24207700000015, 33.86773999912622], [-118.23563400000015, 33.86789999912624], [-118.2338910000002, 33.84663599912649], [-118.20549600000017, 33.84662299912655], [-118.2057840000003, 33.84500599912656], [-118.2073320000002, 33.83941899912664], [-118.21126200000019, 33.838306999126566], [-118.21179800000017, 33.83663599912664], [-118.21265800000016, 33.835459999126684], [-118.213191, 33.83442099912667], [-118.21596800000012, 33.834383999126686], [-118.216847, 33.83171499912677], [-118.21687500000014, 33.83015199912677], [-118.21576200000013, 33.8260749991268], [-118.21888500000016, 33.82568199912674], [-118.22228300000032, 33.82581399912671], [-118.22229700000031, 33.82429199912682], [-118.22457600000011, 33.824287999126824], [-118.22662200000013, 33.829530999126774], [-118.22850300000012, 33.824374999126796], [-118.228066, 33.824194999126895], [-118.22538700000014, 33.81100799912689], [-118.22537300000013, 33.80845799912703], [-118.2252800000002, 33.808152999127024], [-118.22392600000015, 33.80642299912703], [-118.22394000000024, 33.80621899912704], [-118.2244320000002, 33.80458599912709], [-118.22718100000016, 33.80009999912715], [-118.22885600000015, 33.79526399912712], [-118.23026100000013, 33.79277199912721], [-118.237482, 33.800480999127075], [-118.2584450000002, 33.79944199912712], [-118.25651200000019, 33.80477399912712], [-118.2622610000002, 33.804615999127165], [-118.26225900000018, 33.804511999127136], [-118.263361, 33.80470499912719], [-118.264603, 33.804696999127046], [-118.26440200000019, 33.80097499912715], [-118.26450200000015, 33.79913199912722], [-118.28299700000012, 33.7982409991272], [-118.28293000000015, 33.79763099912714], [-118.28673697845058, 33.79781800251274], [-118.28765197214331, 33.79878000548371], [-118.28815197214371, 33.79955800548481], [-118.28876697214416, 33.80108900548693], [-118.28884197214349, 33.80293100548938], [-118.28745397213956, 33.809191005497226], [-118.28724397213877, 33.811037005499486], [-118.28714497212994, 33.837136005533246], [-118.28491699046697, 33.84623900519849], [-118.28601699480046, 33.84625300575105], [-118.2860360000003, 33.8522479991265], [-118.2852750000002, 33.85224999912638], [-118.28525400000022, 33.85415699912644], [-118.2905180000002, 33.854222999126506], [-118.29052300000029, 33.858698999126275], [-118.28561500000012, 33.861043999126366], [-118.28548800000013, 33.86063599912634], [-118.28521100000017, 33.86048099912635], [-118.28513600000021, 33.86068399912632], [-118.28536300000015, 33.8611559991263], [-118.28155500000013, 33.86280199912634], [-118.28164300000014, 33.872018999126254], [-118.28184500000015, 33.87269699912616], [-118.2822470000002, 33.87263899912632], [-118.28210700000017, 33.872852999126266], [-118.28228000000017, 33.87412699912617], [-118.28272898597481, 33.88546600124116], [-118.2613629906937, 33.88609100127599], [-118.26116100000011, 33.88523399912604], [-118.26023100000013, 33.88521999912603], [-118.259841, 33.885247999126044], [-118.259878, 33.885616999126], [-118.25936600000027, 33.885707999126076], [-118.25946200000013, 33.88621199912609], [-118.25760500000024, 33.88626799912611]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Carson", "metadata": {"sqmi": 19.1495884923, "type": "standalone-city", "name": "Carson", "slug": "carson"}, "cases": 245.0, "population": 0.9384456276094534, "external_id": "carson", "slug": "carson-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/carson-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.36841, 34.063709999123894], [-118.36151, 34.0630099991238], [-118.36381, 34.05840999912383], [-118.36691, 34.05150999912393], [-118.3762100000001, 34.05330999912392], [-118.37631, 34.059452684055366], [-118.376006, 34.05961099912381], [-118.376001, 34.05996499912383], [-118.372244, 34.062199999123855], [-118.372027, 34.063866999123796], [-118.37223126490076, 34.06420125077948], [-118.36841, 34.063709999123894]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Carthay", "metadata": {"sqmi": 0.504675757272, "type": "segment-of-a-city", "name": "Carthay", "slug": "carthay"}, "cases": 88.0, "population": 0.24958070361740797, "external_id": "carthay", "slug": "carthay-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/carthay-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.51795148187844, 34.70111969676171], [-118.51588939094466, 34.700320194670354], [-118.5120734005443, 34.699257168812096], [-118.50980949967273, 34.69882256627427], [-118.50770481275563, 34.6986308470868], [-118.50575108458867, 34.69799839703525], [-118.50573100650888, 34.695538035963864], [-118.50132527245597, 34.69555223985396], [-118.50130565933127, 34.69373762684356], [-118.49689143454508, 34.693729818165004], [-118.49687130024982, 34.69191104388089], [-118.4924566577594, 34.69190029798465], [-118.49244633218828, 34.69098955522151], [-118.48801644318834, 34.69098003266682], [-118.48800896152179, 34.690069274583756], [-118.48358207512067, 34.690058204865046], [-118.48354921249134, 34.68642067737859], [-118.47916126713548, 34.68647122839292], [-118.47914908980258, 34.684597491374426], [-118.47472792424404, 34.68464518297056], [-118.47468479270215, 34.68111568107172], [-118.4657171150526, 34.681138409598596], [-118.46560342089224, 34.65556530705647], [-118.48311766926828, 34.65560738646941], [-118.48304670132727, 34.64918513041515], [-118.48415357488499, 34.649196172481425], [-118.48415445056611, 34.648285375763415], [-118.48857219557706, 34.64833626885912], [-118.48855461551909, 34.64654000465064], [-118.48965274770255, 34.64655180064317], [-118.48964374891939, 34.64582610522837], [-118.48992538598962, 34.645659912657784], [-118.49403039434151, 34.64566702222385], [-118.49401125852637, 34.64476946798624], [-118.50059696455224, 34.64467475053702], [-118.50069681476567, 34.64054377844867], [-118.50035323389628, 34.639941192599274], [-118.49863479771042, 34.64005615739776], [-118.49769630235866, 34.64038298161678], [-118.49679622998639, 34.6403924043029], [-118.49465755581326, 34.6419791158663], [-118.49443463689428, 34.642773430371186], [-118.49203777852055, 34.64473553560444], [-118.48306498401051, 34.64462158339332], [-118.48305744148657, 34.64643492909422], [-118.47868554587683, 34.64644627938949], [-118.47870308978528, 34.64829640172775], [-118.46992262950332, 34.648295991771526], [-118.4699421311451, 34.6501093140024], [-118.46555331779746, 34.65010887976348], [-118.46557275829456, 34.651922201222824], [-118.4567122221968, 34.65197115408582], [-118.45674103668516, 34.65923129946811], [-118.43039909496181, 34.6594373198312], [-118.40776264102543, 34.65941992776606], [-118.40772403675865, 34.6557424703629], [-118.39456925757831, 34.655778460541896], [-118.39458324333593, 34.644862788494365], [-118.37708549561563, 34.64492917936304], [-118.37705086789477, 34.64136573099436], [-118.36393494143661, 34.64140969804397], [-118.36391953513262, 34.63780936817746], [-118.35949499766032, 34.63781120648563], [-118.35947878904905, 34.630692465990485], [-118.35830330518176, 34.630681289234396], [-118.35828491022616, 34.627078435432466], [-118.34074386687143, 34.62715342024595], [-118.3405235736448, 34.602024823826305], [-118.30552347099166, 34.60174827383202], [-118.30551944945326, 34.589326782836636], [-118.30770228200844, 34.589325892974706], [-118.30770113975275, 34.587518019510014], [-118.31425015141154, 34.58754811395973], [-118.31422612206536, 34.58574436573664], [-118.31748640343669, 34.585724242529984], [-118.31746518523266, 34.58389163492596], [-118.3142014971496, 34.58390011627063], [-118.3141783936552, 34.582135466362416], [-118.30981318123483, 34.58223770863373], [-118.30978963140966, 34.58047380088577], [-118.30540787407287, 34.58061708965032], [-118.300433346711, 34.580447466402255], [-118.30044003063611, 34.58015699056883], [-118.2879236038458, 34.58002449645255], [-118.287297993655, 34.55815273972219], [-118.30697323479328, 34.558303349015844], [-118.30830565820204, 34.54023712905305], [-118.32611380868697, 34.54019150458609], [-118.34326775559877, 34.53990710112496], [-118.34406139577973, 34.52566643581506], [-118.36165485424554, 34.52567753123508], [-118.36181283433287, 34.5111524516377], [-118.36149945609571, 34.49660130538342], [-118.37897468288001, 34.49633109825049], [-118.37908175523032, 34.48759590132626], [-118.37952994222128, 34.48740946077916], [-118.37909563574739, 34.48651946673609], [-118.37949695195, 34.467626696550035], [-118.34325518543041, 34.467355723077766], [-118.3433097734245, 34.4612423989712], [-118.34440649867803, 34.45999905271218], [-118.34846534484105, 34.45753879669202], [-118.34963974012848, 34.456457169825434], [-118.35017964296584, 34.45565758126997], [-118.35135858840404, 34.452935863343164], [-118.35244926917652, 34.45149319596216], [-118.35417979177228, 34.45016843227362], [-118.3626653449881, 34.44561152377869], [-118.36389697678037, 34.4445270010848], [-118.36517428248405, 34.4425849005869], [-118.36603596329746, 34.44159713021213], [-118.3716977861883, 34.437823100490874], [-118.37218658491987, 34.43756537018774], [-118.380635210738, 34.43511764370383], [-118.38114499978435, 34.437127998974034], [-118.38144599992316, 34.43710199920371], [-118.38164500008413, 34.43844999925286], [-118.38080099993556, 34.4386109990095], [-118.37759700004386, 34.43857899918099], [-118.37689900003089, 34.438384999292666], [-118.37607100027013, 34.4373099990872], [-118.37694899978659, 34.448908999269186], [-118.38645900006671, 34.4488929992908], [-118.38659599977217, 34.447254999245715], [-118.38833599983508, 34.44834999895965], [-118.38780600010506, 34.449073999286405], [-118.38857899975116, 34.44938299929581], [-118.38809299976069, 34.44983599928297], [-118.38853399975027, 34.449615998937475], [-118.38843000026269, 34.451681999118975], [-118.38872600012651, 34.45168999900751], [-118.38870800019971, 34.45309099907062], [-118.38770800009954, 34.45309799913166], [-118.38757300009001, 34.461002999278605], [-118.39215400012833, 34.46113399920954], [-118.39219399986463, 34.45792299928447], [-118.39207199975766, 34.45719399899468], [-118.39289400016477, 34.457200999169835], [-118.39342599976925, 34.456000999005916], [-118.39437500012264, 34.45637199904078], [-118.39451900004372, 34.45611099896533], [-118.39398400026215, 34.45569899907523], [-118.39417799976442, 34.455352999260384], [-118.39433200019272, 34.45534299892596], [-118.39428599974177, 34.455078999153], [-118.39244599981313, 34.45504199897711], [-118.39237600021049, 34.454674999022394], [-118.3932109997542, 34.45423099914616], [-118.39364000010634, 34.45441099890375], [-118.39412000020779, 34.45405899905096], [-118.3935730002428, 34.45364299921159], [-118.39732999980696, 34.45383999934338], [-118.39725700005395, 34.44940899899578], [-118.39580499987413, 34.44940899919633], [-118.39467999981765, 34.44708099915365], [-118.3961459998989, 34.446539998958094], [-118.39766399983183, 34.44767099899638], [-118.3981650001411, 34.44781099898192], [-118.39781599982126, 34.447921999332344], [-118.39748899987845, 34.448398998976664], [-118.39715599992155, 34.44844499905109], [-118.39709200015682, 34.44916199890274], [-118.39825600016282, 34.449161999069574], [-118.3990719998799, 34.44880399898486], [-118.3992299997591, 34.44964999932586], [-118.39999900000196, 34.44964599916191], [-118.40259799997393, 34.44936399916951], [-118.4020269998181, 34.44708299906645], [-118.40248400014121, 34.44654199915763], [-118.40286099988356, 34.44672199900755], [-118.40348999998871, 34.44657699911908], [-118.40408200020735, 34.44543699917982], [-118.40474200003685, 34.44614799915697], [-118.40576000000374, 34.44644199932375], [-118.40579799982076, 34.444654999248115], [-118.4150950002278, 34.44499999909433], [-118.41502700024004, 34.43929999898243], [-118.41773800026026, 34.439257998936625], [-118.41754200021785, 34.437544999252566], [-118.41630600026721, 34.437479999292364], [-118.41477600006458, 34.437639999337804], [-118.4149380001269, 34.43493499919136], [-118.41568400003086, 34.43308899910538], [-118.42070800004872, 34.431059999170266], [-118.4203629997764, 34.43190299896151], [-118.41897000026147, 34.433289999257276], [-118.41894899980569, 34.43431499904229], [-118.42738400023066, 34.4340669990328], [-118.42747600018419, 34.43693199918727], [-118.43038999975127, 34.43769399919801], [-118.43685299978087, 34.437855999100336], [-118.43674500022841, 34.43395199891732], [-118.44609600022646, 34.433827999013374], [-118.44613700025506, 34.429874998991615], [-118.44721099979948, 34.428926999262416], [-118.44725900020663, 34.42852099911755], [-118.44807999999269, 34.42854899914168], [-118.44840399998223, 34.428148998975736], [-118.44778400016318, 34.427663999343366], [-118.44821900022166, 34.427254999155245], [-118.45745500018555, 34.42705199893773], [-118.45752500000474, 34.431078999235446], [-118.46307699985644, 34.43104499922929], [-118.46325300014988, 34.437413999058236], [-118.46310700026966, 34.4413919988958], [-118.46771499990847, 34.44138199933189], [-118.4676089997805, 34.439062999238374], [-118.47618399982466, 34.43872899891852], [-118.48203299978361, 34.43867299905617], [-118.48196099977929, 34.44171399910179], [-118.49040499989803, 34.44171599933412], [-118.4903490000084, 34.43859999906502], [-118.49864699977002, 34.43848599895359], [-118.49871199976803, 34.445011999114534], [-118.49226999993887, 34.44503699902887], [-118.4895880001237, 34.44489299902315], [-118.48976900016818, 34.44729999917818], [-118.49116100026896, 34.44801099898757], [-118.49091000018964, 34.44889999915068], [-118.49173099972835, 34.449105999135], [-118.4918900000335, 34.45011899928682], [-118.4910760001493, 34.450072999023945], [-118.49204999994016, 34.451351999248416], [-118.49125499978243, 34.450759999223074], [-118.49083600017154, 34.450820998935306], [-118.49046999990199, 34.451134999024156], [-118.49198100024196, 34.45213499889898], [-118.49219900004454, 34.45323999933831], [-118.49049300012842, 34.456441999119896], [-118.49038999981785, 34.45924899934435], [-118.49062699979243, 34.459827999332205], [-118.49157800002216, 34.46005199903389], [-118.49209799984992, 34.4599229989769], [-118.49197100005702, 34.460728999157176], [-118.49282199994367, 34.46158899921108], [-118.49248300017156, 34.46398199889905], [-118.49789299985136, 34.46381799909114], [-118.49794199992779, 34.46102499913107], [-118.50031299987569, 34.46036099911664], [-118.50082700009003, 34.46034699926014], [-118.50349799982945, 34.46112899931639], [-118.50653600009397, 34.46147899934365], [-118.50316299985187, 34.46088699920576], [-118.50300199975229, 34.460185998942116], [-118.50303500004517, 34.45235799902399], [-118.5041989999062, 34.45244599895585], [-118.50402799992322, 34.453784999272045], [-118.50433900017305, 34.45378199896154], [-118.5068390000724, 34.453652999063436], [-118.50678499985611, 34.45231699933831], [-118.51045600014037, 34.45220699932808], [-118.51073599991199, 34.453461999238435], [-118.51104800002364, 34.4535149993436], [-118.51058399998294, 34.456564999164144], [-118.51172800008018, 34.45662299915076], [-118.51170800022383, 34.45973999921131], [-118.51743599987884, 34.45978499905487], [-118.51997800022234, 34.45917999902411], [-118.52120100020147, 34.4590429992533], [-118.52327999993271, 34.459343999021776], [-118.52636499976838, 34.45920299933408], [-118.52894899985279, 34.459314999116515], [-118.52898700009379, 34.466448999190064], [-118.52444999976915, 34.46653099895971], [-118.52513600008905, 34.46894299920659], [-118.52521500004102, 34.47088499924046], [-118.52479799985814, 34.4730489990869], [-118.52493900011244, 34.474843998950604], [-118.5242329999655, 34.47707899890976], [-118.52471200012162, 34.477212999134196], [-118.52966799995242, 34.47718199909442], [-118.52989499986798, 34.475301998904705], [-118.5301660000294, 34.475468999090616], [-118.53050700024555, 34.47541899924416], [-118.53145499993668, 34.47470199931605], [-118.53195499983872, 34.4749369990967], [-118.53217600024823, 34.475254999172165], [-118.53227799996462, 34.475124998987006], [-118.53326399981191, 34.47512499910249], [-118.53351899998238, 34.4744139990619], [-118.53470499980362, 34.47443499917803], [-118.53470000021335, 34.47358299934157], [-118.53521800020657, 34.473989999226475], [-118.53556699981807, 34.47399499889615], [-118.53564800026122, 34.47306999910107], [-118.5364269997862, 34.47214899897541], [-118.53741300016175, 34.47218999927366], [-118.53692299988424, 34.4654699992308], [-118.53690899988413, 34.463429999104875], [-118.5397509999671, 34.46595699893061], [-118.54081499983032, 34.46598899930666], [-118.54098700002424, 34.46520399928843], [-118.54084300018695, 34.46509699901977], [-118.54130199996911, 34.464344999042595], [-118.54327400020586, 34.46462099914137], [-118.54360499973545, 34.46591099915639], [-118.54448300007583, 34.46685499920495], [-118.54808400021403, 34.46700599897772], [-118.5489150001036, 34.46550999933452], [-118.54918800002278, 34.464583999220324], [-118.54926000025304, 34.46298099892187], [-118.54983000026374, 34.462790999139095], [-118.55002799982965, 34.4622389989006], [-118.55186500000296, 34.46243499908824], [-118.55299000010804, 34.461488999162974], [-118.55354699996084, 34.46080199926155], [-118.55385700026223, 34.45940699903719], [-118.55656100006891, 34.45562999914406], [-118.55665200018672, 34.45530199932228], [-118.55639299991122, 34.45345899915291], [-118.55684300005753, 34.45220799931172], [-118.55697300014539, 34.45081199912221], [-118.55830000013158, 34.44864899913962], [-118.55824700016242, 34.44650999892389], [-118.55836499980333, 34.44625699918924], [-118.5534570000834, 34.44425199933779], [-118.55749399978963, 34.44297699898955], [-118.5614170000163, 34.44317399908666], [-118.56131699978991, 34.44453599927245], [-118.56340900001832, 34.44476099920589], [-118.56514900004193, 34.44528099889968], [-118.5667499997979, 34.44613699905631], [-118.5682500002424, 34.44742599910032], [-118.57250700023707, 34.44605599932543], [-118.57420300019398, 34.44483699898006], [-118.57439499994706, 34.44685199902919], [-118.57513600016905, 34.44920699899956], [-118.57431699997149, 34.45090899905939], [-118.57478699989917, 34.45124099890685], [-118.57505600009192, 34.452014999304794], [-118.57498899995613, 34.453230998926465], [-118.57458599987596, 34.45428199893185], [-118.57566000001911, 34.45483499893636], [-118.57619699987025, 34.45744399894559], [-118.57686799990786, 34.45931399926351], [-118.57753999986612, 34.4599219991642], [-118.57901700008307, 34.46041999917843], [-118.57915099993238, 34.461857999198955], [-118.58559600012175, 34.46119399898559], [-118.5886170001877, 34.45688099928317], [-118.58442400009288, 34.453688999329486], [-118.58130399991119, 34.44773899900516], [-118.587686000113, 34.44787699900164], [-118.58894499975798, 34.44839199900292], [-118.59635000019252, 34.44692299900116], [-118.59756600019914, 34.448040999058556], [-118.5985960000908, 34.44836099897697], [-118.5992439997385, 34.44794399919257], [-118.59971900015813, 34.44819799891624], [-118.60074700017927, 34.447508999267335], [-118.60231699999007, 34.44760399928421], [-118.60379099977743, 34.447329999031254], [-118.60429300001243, 34.4480959990228], [-118.60510000002529, 34.448638999332154], [-118.60518999992885, 34.449149999213546], [-118.60574299977962, 34.44951699903447], [-118.6076770002043, 34.44917799899874], [-118.60821999985039, 34.44926899932669], [-118.60820100013541, 34.45015399902312], [-118.60840599992096, 34.45049299924876], [-118.60900999987152, 34.451017999117525], [-118.60967899987071, 34.451275999239456], [-118.60986199987876, 34.451275999205286], [-118.61056800017144, 34.45064999903679], [-118.61335209725377, 34.449620248801224], [-118.61687539853617, 34.45148357622982], [-118.61703286545502, 34.452285192256475], [-118.61667887765284, 34.45427273283133], [-118.617704919303, 34.45572465436047], [-118.61935253788315, 34.45549341708166], [-118.62103650532, 34.454749005174676], [-118.6213704762824, 34.455089217024955], [-118.62005677156924, 34.45584482164597], [-118.6196158852021, 34.45674390451144], [-118.61953617259907, 34.457364128025155], [-118.61845257194652, 34.45727466025373], [-118.6178797474495, 34.45752851639631], [-118.61748361064195, 34.45797525223299], [-118.61722856019516, 34.45787157996231], [-118.616484205598, 34.458782554758], [-118.61603716640691, 34.459650989551285], [-118.61580892760767, 34.46176885256383], [-118.61622307486508, 34.463805469655384], [-118.61700925882981, 34.46404667019377], [-118.61775855091075, 34.465896863046346], [-118.61860514245245, 34.46484321174772], [-118.61931782869948, 34.46530825810431], [-118.61900843439874, 34.466046767095804], [-118.61967805788083, 34.46629643158183], [-118.61954615107894, 34.46720245376527], [-118.61730182179248, 34.467009996367416], [-118.61724960319158, 34.468487146318374], [-118.61653570434228, 34.47178058161353], [-118.61773852741835, 34.47179213475051], [-118.61807168774064, 34.47189057155604], [-118.61847909185923, 34.47211483004655], [-118.61778230055407, 34.47184249997066], [-118.61646815138315, 34.47200471360351], [-118.61528323655995, 34.477244500779044], [-118.61499392477063, 34.48001150158964], [-118.61520618604088, 34.48177429772728], [-118.62108994389628, 34.48174702750116], [-118.62116455705535, 34.48539980356397], [-118.61898862868989, 34.485408555661635], [-118.61902787786681, 34.487548990163916], [-118.62056027498751, 34.48768609011086], [-118.62122034222276, 34.48815205349322], [-118.62134276592064, 34.4885608628269], [-118.62126847732046, 34.491106120363675], [-118.62223996552973, 34.492702532517896], [-118.61683541067443, 34.49321025214219], [-118.61652284094049, 34.49745842151352], [-118.61019365840289, 34.497168696132874], [-118.60965618297568, 34.497256745127714], [-118.60887416373107, 34.497620978125674], [-118.60821468522481, 34.498146250708984], [-118.60675989948396, 34.4999361843714], [-118.60435720539914, 34.50148541953909], [-118.60397003006528, 34.502040604949784], [-118.60360242362727, 34.503118356809985], [-118.60294903557397, 34.505795420978366], [-118.60269571103011, 34.50756153601973], [-118.60193262651374, 34.50847254825425], [-118.59832435505086, 34.51096293911665], [-118.59719647914325, 34.512215617233196], [-118.59659906809969, 34.51477217335607], [-118.5965399388082, 34.51631336821591], [-118.59640941548197, 34.51632622394917], [-118.59637981618295, 34.51595586062031], [-118.59629403374984, 34.516404941867755], [-118.59657398240978, 34.51651293579931], [-118.59636197213885, 34.51652669205209], [-118.59581152483265, 34.51801079878253], [-118.595023535628, 34.51878163922348], [-118.5941725813629, 34.51908612299178], [-118.59312299421401, 34.51903993827007], [-118.58429721830343, 34.516522143329], [-118.58337110942406, 34.51650460989803], [-118.58217641311471, 34.516843350704306], [-118.58100143958016, 34.5176864604866], [-118.57910672977629, 34.51980807150637], [-118.57850663049184, 34.520622399129095], [-118.57798163983706, 34.52181444388053], [-118.57451209347217, 34.52598481986255], [-118.57148071679885, 34.52805236558498], [-118.57041800351254, 34.530323535016485], [-118.56701110348291, 34.53372967436338], [-118.56514527647603, 34.53791444389839], [-118.56182424986231, 34.54165427403064], [-118.56016336593223, 34.54326970346909], [-118.55846791486583, 34.544130847267375], [-118.55600647151483, 34.54419563970623], [-118.55497755587608, 34.544446401190534], [-118.54988485458051, 34.54719782407594], [-118.54677228357123, 34.54843132305195], [-118.541534524242, 34.55240744193792], [-118.5403812271805, 34.55357318131263], [-118.54023239241997, 34.55418465817191], [-118.54036284422384, 34.55471728012507], [-118.54176146138646, 34.557042416807946], [-118.54304990674582, 34.56018320347641], [-118.54378646998069, 34.56093579650797], [-118.54457037565963, 34.56130571426388], [-118.54603139724743, 34.561323419973355], [-118.54694573027523, 34.56092328560973], [-118.54797878128467, 34.560220356187635], [-118.54885454544346, 34.56003147052465], [-118.54962121858657, 34.560183992340505], [-118.55146496316979, 34.56135232866104], [-118.55258520058214, 34.561405668629604], [-118.55631426961133, 34.559993174391465], [-118.55821922999756, 34.5586639599567], [-118.55982860674546, 34.558431911283684], [-118.561032360718, 34.55873050189611], [-118.56166489169665, 34.559441607818115], [-118.56169346601894, 34.56026318996254], [-118.56133262659468, 34.56085436648395], [-118.56075839152709, 34.56120125465427], [-118.55860568911154, 34.561687631214006], [-118.55641437641204, 34.56313643297795], [-118.55571960998597, 34.56404073713034], [-118.55553254271365, 34.56517883388429], [-118.55566375164862, 34.56569220001353], [-118.55610428697038, 34.56637960418846], [-118.55751389303373, 34.56762937129984], [-118.55868149408005, 34.570273774239595], [-118.55874110878914, 34.57074084451066], [-118.55857550307582, 34.57125573640958], [-118.55762467544623, 34.572450295157964], [-118.55719571095268, 34.57398880873569], [-118.55656025193869, 34.57463684562422], [-118.55624829574613, 34.575200601162024], [-118.55627431974102, 34.575878094444874], [-118.55673761889079, 34.57693251659908], [-118.55680357533038, 34.57749518657133], [-118.55564894791469, 34.578909240880925], [-118.55532307394677, 34.57972840907368], [-118.5554376562716, 34.57999155379957], [-118.55659475491939, 34.58025328910954], [-118.55710882050762, 34.58059393141194], [-118.55772509749654, 34.581315144457754], [-118.55797170575153, 34.582458816725385], [-118.55856061330987, 34.58292754264172], [-118.55879451529759, 34.58341249791587], [-118.56002517330307, 34.5839679242684], [-118.56039571078985, 34.58433846224234], [-118.56045580083594, 34.58504929958277], [-118.55986388190777, 34.58597215172119], [-118.56106748231774, 34.586198743919276], [-118.56141389284063, 34.586465734906824], [-118.56151398302673, 34.58680909000904], [-118.56129633477308, 34.58757125212864], [-118.5613316114519, 34.58914176355501], [-118.56234066964208, 34.590563781540624], [-118.56224513014742, 34.591180769224245], [-118.56171162122058, 34.592166856136664], [-118.5616762512541, 34.59324601436301], [-118.56181930318829, 34.59334873276721], [-118.5630177365352, 34.59327016932594], [-118.56373807211138, 34.59359756503325], [-118.56404976028648, 34.59396378150228], [-118.56398873383145, 34.594612126581545], [-118.56297261799418, 34.596250717675126], [-118.56195754780188, 34.59753027405138], [-118.56024175768927, 34.599082634453495], [-118.5592333404746, 34.60090881957165], [-118.55799852015194, 34.6018590829597], [-118.55767752930245, 34.60281608150047], [-118.55717840363414, 34.603380832489385], [-118.55735812107743, 34.60427700463528], [-118.55685943771041, 34.605062067166465], [-118.55693501815688, 34.60529089100695], [-118.55714077486111, 34.60534853431785], [-118.55857924581713, 34.60493784016399], [-118.55937646421029, 34.604127449840036], [-118.56024589984936, 34.60361562393114], [-118.56057576402439, 34.60363853799654], [-118.56092852822873, 34.60394160780316], [-118.56079341228619, 34.60504520813433], [-118.56030689294943, 34.606005119095315], [-118.56037166546523, 34.60622750859522], [-118.5609406548108, 34.60660003282423], [-118.56063085456404, 34.6073980955193], [-118.56063876926477, 34.60845666325173], [-118.56249626310259, 34.60948199556683], [-118.56285020009173, 34.610231880701186], [-118.56271515882646, 34.6107088192586], [-118.5608418767229, 34.61232795448033], [-118.5603029530358, 34.61308488329649], [-118.56041343444195, 34.61345153769751], [-118.56125710260314, 34.61405498995307], [-118.56121785763847, 34.61489895106972], [-118.56052428651286, 34.61594385136355], [-118.56100255687872, 34.61706408101835], [-118.56100317798617, 34.6177826500775], [-118.56161389284937, 34.61831118944304], [-118.56173157882847, 34.61913621646443], [-118.56130606790173, 34.619854273878786], [-118.55974335540873, 34.6212866194174], [-118.55864998919255, 34.62179192573674], [-118.55594030596927, 34.62262487373487], [-118.55095546036321, 34.62526676081019], [-118.54889134851543, 34.62660331268217], [-118.54695625426541, 34.628111523753674], [-118.54618788967038, 34.628438227264525], [-118.54580480214962, 34.629534263514344], [-118.54532121861003, 34.630016005833475], [-118.54463175448839, 34.63019565371748], [-118.5432371991756, 34.63011741045445], [-118.54210699136121, 34.63126843764525], [-118.54035882356136, 34.6318126651863], [-118.53879968591815, 34.63189571533373], [-118.53795882359923, 34.63215812004793], [-118.53534084548942, 34.63249565363772], [-118.53416967470967, 34.632365436216325], [-118.53318485469512, 34.63318873316585], [-118.53098079832566, 34.63394069713075], [-118.52955765214115, 34.63531266306264], [-118.52962175730116, 34.63625882298118], [-118.52928671023882, 34.63744438187473], [-118.52925710274566, 34.63812682651302], [-118.52889972938051, 34.63870606692475], [-118.5273080428667, 34.639708765629656], [-118.52610792669027, 34.63973289570174], [-118.52583287666181, 34.63986403636681], [-118.52530882037966, 34.64070606688184], [-118.5237657830749, 34.641366452001485], [-118.52297443621943, 34.64232970566717], [-118.51929251023903, 34.64425045980793], [-118.51940724444997, 34.701104914775065], [-118.51936217187207, 34.70124057821689], [-118.51795148187844, 34.70111969676171]], [[-118.41234565779162, 34.63078851028207], [-118.41225093641265, 34.62720171601253], [-118.42102502507537, 34.627254939511026], [-118.42093866985638, 34.624802064853164], [-118.42985275334088, 34.62147511041281], [-118.42979519628157, 34.61639452789538], [-118.434461220097, 34.61637027746956], [-118.43445306169242, 34.615293212409824], [-118.43629832135102, 34.61528344484679], [-118.4362870396065, 34.61379921811665], [-118.43824802317089, 34.61283715764544], [-118.43797279455374, 34.60922931358011], [-118.42987054120378, 34.60923586590669], [-118.42975374003514, 34.61280631305668], [-118.41635359724984, 34.61281642293858], [-118.41642183155668, 34.61638490188102], [-118.41221354693887, 34.61636841150878], [-118.41128739234487, 34.60925022555681], [-118.3946982970034, 34.60917018758794], [-118.39463446252995, 34.616394755783624], [-118.39022514704162, 34.616388159004245], [-118.39018514376424, 34.62349824934721], [-118.3945628169649, 34.62348879362937], [-118.39449164996637, 34.6305814496146], [-118.40329289450843, 34.63084472740236], [-118.41234565779162, 34.63078851028207]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Castaic Canyons", "metadata": {"sqmi": 192.702636576, "type": "unincorporated-area", "name": "Castaic Canyons", "slug": "castaic-canyons"}, "cases": null, "population": null, "external_id": "castaic-canyons", "slug": "castaic-canyons-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/castaic-canyons-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.63936124998374, 34.51543067978628], [-118.63916280507458, 34.51527616619625], [-118.63892379927942, 34.51536450425173], [-118.63845582276828, 34.51492832049645], [-118.63799971885547, 34.514966166103726], [-118.63642762759619, 34.512552152008524], [-118.63654444380006, 34.51249553806917], [-118.63598143920673, 34.51162295573024], [-118.63621560692009, 34.511519342460716], [-118.63576650892743, 34.51083389816561], [-118.63526678261819, 34.51083357370493], [-118.63436040256609, 34.50900788868631], [-118.63320219993415, 34.5080171106167], [-118.63343298993657, 34.50786738322758], [-118.63279476027965, 34.50716763580372], [-118.62211151232559, 34.507223144708135], [-118.6203172721885, 34.50548140708759], [-118.61842241436109, 34.506220600573144], [-118.61767053905164, 34.50628672296425], [-118.61690534585281, 34.50593110684916], [-118.61692000113601, 34.50446050131412], [-118.61795601157966, 34.504495379219314], [-118.61863647474472, 34.50384910090503], [-118.61892730389535, 34.50322813456262], [-118.61814241305626, 34.502934536954], [-118.61646303856394, 34.49822410076037], [-118.61683541067443, 34.49321025214219], [-118.62223996552973, 34.492702532517896], [-118.62126847732046, 34.491106120363675], [-118.62134276592064, 34.4885608628269], [-118.62122034222276, 34.48815205349322], [-118.62056027498751, 34.48768609011086], [-118.61902787786681, 34.487548990163916], [-118.61898862868989, 34.485408555661635], [-118.62116455705535, 34.48539980356397], [-118.62108994389628, 34.48174702750116], [-118.61520611719355, 34.48177396811336], [-118.61500302483445, 34.480223647686145], [-118.61506238599408, 34.47846722364118], [-118.61646815138315, 34.47200471360351], [-118.61778230055407, 34.47184249997066], [-118.61847909185923, 34.47211483004655], [-118.61773852741835, 34.47179213475051], [-118.61653570434228, 34.47178058161353], [-118.61724960319158, 34.468487146318374], [-118.61730182179248, 34.467009996367416], [-118.61954615107894, 34.46720245376527], [-118.61967805788083, 34.46629643158183], [-118.61900843439874, 34.466046767095804], [-118.61931782869948, 34.46530825810431], [-118.61860514245245, 34.46484321174772], [-118.61775855091075, 34.465896863046346], [-118.61700925882981, 34.46404667019377], [-118.61622307486508, 34.463805469655384], [-118.61587087613016, 34.46242033913089], [-118.61582131077213, 34.46092669730892], [-118.61614394327283, 34.45937123356964], [-118.61722856019516, 34.45787157996231], [-118.61748361064195, 34.45797525223299], [-118.6178797474495, 34.45752851639631], [-118.61845257194652, 34.45727466025373], [-118.61953617259907, 34.457364128025155], [-118.6196158852021, 34.45674390451144], [-118.62005677156924, 34.45584482164597], [-118.6213704762824, 34.455089217024955], [-118.62103650532, 34.454749005174676], [-118.61944051640499, 34.45546702800357], [-118.61779342434282, 34.45575298814896], [-118.61667887765284, 34.45427273283133], [-118.61703286545502, 34.452285192256475], [-118.61689852820065, 34.45138659847386], [-118.61785542506973, 34.449990716011186], [-118.61870552933654, 34.449061193305575], [-118.61883020615502, 34.44768034298696], [-118.62140745718331, 34.446936339234426], [-118.62355410607178, 34.448343160595314], [-118.62378862424988, 34.4522312499704], [-118.6241886215053, 34.45278586751856], [-118.62575140424316, 34.451165758471774], [-118.63077237980292, 34.4528880851518], [-118.6349225586595, 34.45613993200198], [-118.63657882168457, 34.45696884248467], [-118.63846569097105, 34.457357897186014], [-118.64262106997685, 34.45727828392202], [-118.64527559644658, 34.4580313572231], [-118.64534579344603, 34.45817678742956], [-118.64748039561744, 34.45907123540406], [-118.64887010805842, 34.45945648764872], [-118.6497416093069, 34.459430143387976], [-118.6497463011086, 34.46002300595639], [-118.64535411778773, 34.45999021612978], [-118.64538578275082, 34.46725432211406], [-118.64980648670902, 34.46726697219288], [-118.65067468760626, 34.47454181573773], [-118.65169570014407, 34.47454484928101], [-118.65139075903231, 34.477767254873704], [-118.6513140597724, 34.47818218061476], [-118.65111217490944, 34.47818128657047], [-118.65154886795871, 34.48182075767659], [-118.64284203003172, 34.481796149037805], [-118.643096315977, 34.49271235614901], [-118.63003986567593, 34.4926984378849], [-118.63012480698447, 34.49634705965063], [-118.62781743658375, 34.49634846200512], [-118.6278183501601, 34.497314230650865], [-118.62808483912619, 34.49808017296587], [-118.62847947009791, 34.498224868523465], [-118.62859566665668, 34.498180437842805], [-118.62853284668178, 34.497834556645785], [-118.62900744492052, 34.49784031439963], [-118.62940224423005, 34.49827485295406], [-118.62973677371647, 34.498323515048995], [-118.63146427920373, 34.4978783695836], [-118.63211083294728, 34.497232492937435], [-118.63247608435995, 34.49752010855625], [-118.63308972660292, 34.49766697288239], [-118.6339617399341, 34.49837376883295], [-118.63404470553277, 34.49959208049052], [-118.63144408261913, 34.50015065009351], [-118.63036313958482, 34.50092122482144], [-118.63031098860803, 34.501424167278955], [-118.6322755157313, 34.504138183213335], [-118.6316633442705, 34.50446660972265], [-118.63247684722712, 34.50550736939287], [-118.6329770710197, 34.50523687104469], [-118.63306988812268, 34.50543860451466], [-118.63533294056182, 34.50552100899098], [-118.63579474370327, 34.50564491231973], [-118.63577566568485, 34.50593702989988], [-118.63726050996567, 34.50620549118244], [-118.63736389982537, 34.50617403480643], [-118.63716772401699, 34.50579679038477], [-118.63765893510309, 34.50579421167156], [-118.63888216475837, 34.506535783929195], [-118.63888626933603, 34.50721306264498], [-118.63933774405231, 34.507213296209564], [-118.63928564083274, 34.507512925860176], [-118.63903271110452, 34.50748639661552], [-118.63896211011352, 34.508132766630695], [-118.6366941508092, 34.5079611759781], [-118.63658013221021, 34.50837835404414], [-118.63705040176072, 34.50844376074915], [-118.6371179444342, 34.50876782161785], [-118.63880906292567, 34.509038039544244], [-118.63942833802002, 34.508501497533395], [-118.64039904680152, 34.509269253045794], [-118.64348059560706, 34.51507725025385], [-118.64266178190435, 34.51523992058791], [-118.64288279486698, 34.51586958277141], [-118.64173536167299, 34.51656320140545], [-118.63936124998374, 34.51543067978628]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Castaic", "metadata": {"sqmi": 5.476575183, "type": "unincorporated-area", "name": "Castaic", "slug": "castaic"}, "cases": 21.0, "population": 0.2719150589149294, "external_id": "castaic", "slug": "castaic-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/castaic-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.2433060000001, 34.02071299912436], [-118.23950600000016, 34.0200129991243], [-118.239745, 34.01349399912444], [-118.239593, 34.0088869991245], [-118.23791800000012, 33.98939299912469], [-118.25643597484513, 33.989498000008], [-118.256506, 33.98921506329079], [-118.256406, 33.99881399912459], [-118.25650700000011, 34.01471299912435], [-118.254407, 34.01991299912431], [-118.25410700000012, 34.020512999124335], [-118.25050700000011, 34.02451299912422], [-118.246006, 34.021912999124304], [-118.24400600000013, 34.02091299912429], [-118.2433060000001, 34.02071299912436]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Central-Alameda", "metadata": {"sqmi": 2.18269484806, "type": "segment-of-a-city", "name": "Central-Alameda", "slug": "central-alameda"}, "cases": 204.0, "population": 0.5199836867862969, "external_id": "central-alameda", "slug": "central-alameda-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/central-alameda-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.41442789354493, 34.06444100521822], [-118.413514, 34.06316499912383], [-118.414166, 34.06284099912377], [-118.41220400000016, 34.060100999123875], [-118.411551, 34.06042499912388], [-118.40595400000011, 34.05262599912396], [-118.417111, 34.04620999912391], [-118.42151200000018, 34.0512089991238], [-118.421612, 34.0523089991239], [-118.42271200000013, 34.053308999123985], [-118.423212, 34.05530899912395], [-118.4239120000001, 34.05710899912385], [-118.424212, 34.057508999123755], [-118.41442789354493, 34.06444100521822]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Century City", "metadata": {"sqmi": 0.700611362635, "type": "segment-of-a-city", "name": "Century City", "slug": "century-city"}, "cases": 30.0, "population": 0.1279208596281767, "external_id": "century-city", "slug": "century-city-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/century-city-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.03782900000017, 33.88739699912591], [-118.03326400000023, 33.88492099912605], [-118.02889000000019, 33.882797999126105], [-118.028709, 33.86622199912628], [-118.03762500000015, 33.86600699912627], [-118.03753900000011, 33.8625129991263], [-118.041997, 33.862413999126396], [-118.04175300000013, 33.85870199912643], [-118.04620600000014, 33.85867899912629], [-118.046086, 33.853509999126494], [-118.04979700000018, 33.85361499912653], [-118.0505970000002, 33.853514999126446], [-118.05049300000019, 33.85069599912652], [-118.05070300000015, 33.84991599912639], [-118.05539200000017, 33.84980599912646], [-118.05471100000013, 33.84967699912649], [-118.05470000000021, 33.846218999126506], [-118.05960500000026, 33.84639699912659], [-118.062393, 33.846160999126504], [-118.081981, 33.84600599912656], [-118.082027, 33.85013299912645], [-118.0835120000002, 33.85018799912647], [-118.08653300000017, 33.850125999126355], [-118.08680400000013, 33.84596899912648], [-118.09893900000017, 33.845874999126565], [-118.1000850000001, 33.84827599912654], [-118.10278800000027, 33.85831999912643], [-118.10391000000021, 33.85831299912632], [-118.10394400000017, 33.85851999912636], [-118.10574700000032, 33.85851299912631], [-118.10636200000013, 33.85829699912642], [-118.108316, 33.8582829991263], [-118.10853900000012, 33.87290399912619], [-118.10676900000014, 33.872942999126245], [-118.1085140000002, 33.879562999126094], [-118.10856600000012, 33.887050999125925], [-118.10437200000013, 33.88700699912595], [-118.10440000000014, 33.887522999126055], [-118.10425300000014, 33.88760999912601], [-118.10051700000024, 33.887533999126], [-118.10050500000018, 33.887076999126016], [-118.09988400000015, 33.88706899912604], [-118.0998880000001, 33.887536999126056], [-118.09552900000013, 33.88756699912602], [-118.09571000000018, 33.88031199912615], [-118.08770700000014, 33.88033899912615], [-118.0877170000002, 33.87675199912617], [-118.091167, 33.876648999126196], [-118.09128700000018, 33.876414999126204], [-118.09101000000025, 33.87453199912623], [-118.09090100000012, 33.861312999126305], [-118.09039800000015, 33.8613169991264], [-118.09031300000014, 33.86010799912639], [-118.08639700000015, 33.8599889991264], [-118.08670300000011, 33.858422999126404], [-118.08669000000025, 33.856314999126376], [-118.08209400000015, 33.85621899912645], [-118.08211800000022, 33.85845399912641], [-118.08299900000017, 33.85844799912638], [-118.08278200000018, 33.85932099912635], [-118.08212800000011, 33.85931999912636], [-118.08211200000022, 33.86037199912636], [-118.07497200000016, 33.855989999126386], [-118.07492900000017, 33.857070999126464], [-118.07228700000016, 33.856939999126375], [-118.07223700000021, 33.85432499912644], [-118.07074600000014, 33.85340899912641], [-118.06891500000016, 33.85342299912643], [-118.06900700000011, 33.85855699912639], [-118.07113300000027, 33.858535999126275], [-118.07100600000018, 33.859142999126405], [-118.07112600000012, 33.86039299912631], [-118.0708230000002, 33.86031499912639], [-118.07013600000018, 33.860718999126384], [-118.07046900000033, 33.862153999126186], [-118.07026300000017, 33.86972699912622], [-118.07250200000021, 33.8696939991263], [-118.07250400000021, 33.8698209991263], [-118.07031100000023, 33.8698339991262], [-118.07027000000019, 33.87311199912628], [-118.08004300000019, 33.87305399912623], [-118.080066, 33.8752609991262], [-118.07741800000014, 33.8764709991261], [-118.07812800000022, 33.87675799912615], [-118.07498500000027, 33.87680599912615], [-118.07502400000014, 33.87962299912605], [-118.07489500000011, 33.88038299912613], [-118.07270800000029, 33.88039199912627], [-118.07283200000028, 33.88615099912607], [-118.06848300000031, 33.886022999126034], [-118.06846900000018, 33.88771099912609], [-118.06409400000015, 33.887723999126116], [-118.06408500000022, 33.887164999126064], [-118.05537600000018, 33.88721599912604], [-118.055385, 33.88778899912604], [-118.03884300000023, 33.88790999912599], [-118.03782900000017, 33.88739699912591]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Cerritos", "metadata": {"sqmi": 8.85825545795, "type": "standalone-city", "name": "Cerritos", "slug": "cerritos"}, "cases": 52.0, "population": 0.5006739842095128, "external_id": "cerritos", "slug": "cerritos-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/cerritos-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.86379698568639, 34.10666800427394], [-117.83764099046479, 34.1066110044204], [-117.83765198481088, 34.09728700076394], [-117.83992097972111, 34.09611800640663], [-117.83990098571091, 34.09943400244614], [-117.84005097852317, 34.099833001054606], [-117.83965099294187, 34.099850002818], [-117.83973899284968, 34.10123700330201], [-117.84200098561192, 34.10121600023179], [-117.84190197142429, 34.09941500576913], [-117.84227398555379, 34.09580100243831], [-117.84418497863714, 34.095818001359966], [-117.84417597979002, 34.09887000648508], [-117.84386198572736, 34.09891200404707], [-117.84382498571362, 34.09940600410821], [-117.84636597857305, 34.099419001616155], [-117.84636497887782, 34.10014600503732], [-117.84564698545876, 34.10038900171236], [-117.84564698569226, 34.10154500420121], [-117.8463549786059, 34.10155400148137], [-117.8463539857148, 34.103036004112106], [-117.8479959785838, 34.103041001574994], [-117.84796597856294, 34.10396900162387], [-117.84718198553922, 34.10402700578785], [-117.8471579786299, 34.104640000795584], [-117.8463659857535, 34.10466100392322], [-117.84636698573088, 34.10491800404015], [-117.84826497854982, 34.10489900172602], [-117.8482699999753, 34.10539916340791], [-117.84834998572752, 34.10304100406204], [-117.8523469857092, 34.103048999880436], [-117.85234198573272, 34.10250200405129], [-117.85269197855821, 34.10249900171001], [-117.8528389714384, 34.102577005775885], [-117.85283998570591, 34.10305200416878], [-117.85438998559157, 34.10304500006785], [-117.85428698583743, 34.10168800521508], [-117.8550849857477, 34.10170799968725], [-117.8550639857456, 34.09781000399834], [-117.85636297854792, 34.09779000178165], [-117.85632298571785, 34.09939800412894], [-117.86157097859515, 34.09942400159053], [-117.8616039857294, 34.10304000409759], [-117.86465797858253, 34.10303600165665], [-117.86479398578618, 34.10330800380288], [-117.86600498547294, 34.10325700040013], [-117.86601698570827, 34.101538004197245], [-117.86782598581138, 34.101545999656125], [-117.86778298573022, 34.09942200411234], [-117.87005398575843, 34.099420999877594], [-117.87009198570591, 34.09575500516969], [-117.87049298571671, 34.095753000147035], [-117.87049198573281, 34.09509500410862], [-117.8724619857077, 34.094999000474495], [-117.87246498576226, 34.09400400397784], [-117.87292098578946, 34.09399500017376], [-117.8729399857788, 34.093586003888916], [-117.87635197853966, 34.09348200194407], [-117.87639297860514, 34.09572200078581], [-117.872460985754, 34.0957290040197], [-117.87245897866299, 34.096451999694786], [-117.87167798570806, 34.09641900514698], [-117.87169398565635, 34.09731500439084], [-117.87247597871618, 34.09734600119783], [-117.87250197857752, 34.09880000006691], [-117.87143198596054, 34.098774005684845], [-117.87151597857023, 34.09997300127877], [-117.87127098581095, 34.09998800363694], [-117.87123698559517, 34.100402004567314], [-117.87248698579604, 34.10048099931512], [-117.87249898571352, 34.09943500494486], [-117.87739897860527, 34.09942400161877], [-117.87736197868044, 34.10306399984335], [-117.87250198572741, 34.10306100501808], [-117.87250897865113, 34.10470899987413], [-117.87038898567249, 34.1046430043382], [-117.87043798577463, 34.10434200390234], [-117.87079198584692, 34.10434099961213], [-117.87081198585707, 34.10389400036628], [-117.87046298560585, 34.10387300453901], [-117.87049598573145, 34.10304300078776], [-117.8692979856927, 34.103035004392524], [-117.86919497863825, 34.10478800151568], [-117.86818098574628, 34.104810004043266], [-117.86815498546682, 34.105882004866515], [-117.86919697871132, 34.105940001199336], [-117.86919998089097, 34.10646500102042], [-117.86379698568639, 34.10666800427394]], [[-117.85508197144165, 34.10250800577629], [-117.8550839857171, 34.10214800080326], [-117.85465498572457, 34.10214900409613], [-117.85463898571675, 34.102651004129314], [-117.85508198572275, 34.10265199993085], [-117.85508197144165, 34.10250800577629]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Charter Oak", "metadata": {"sqmi": 0.921541249085, "type": "unincorporated-area", "name": "Charter Oak", "slug": "charter-oak"}, "cases": 14.0, "population": 0.13144305698995398, "external_id": "charter-oak", "slug": "charter-oak-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/charter-oak-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.58509099991984, 34.30347799919912], [-118.57176199992755, 34.29861899923004], [-118.571578999896, 34.29794999932509], [-118.5710169999807, 34.296930999034586], [-118.5701590001585, 34.295803999043734], [-118.572476, 34.29467699912104], [-118.57033200000016, 34.28698899912099], [-118.569577, 34.27999999912114], [-118.569535, 34.275454999121216], [-118.55982, 34.2745019991212], [-118.559484, 34.27403499912135], [-118.557959, 34.273449999121155], [-118.556651, 34.27121399912134], [-118.556702, 34.26697499912122], [-118.55695700000017, 34.26644199912128], [-118.55672, 34.26620199912139], [-118.55672, 34.26550199912127], [-118.55852, 34.26320199912134], [-118.55782, 34.25900199912152], [-118.55872000000012, 34.25720199912154], [-118.55842000000013, 34.25720199912154], [-118.55982, 34.25550199912147], [-118.55964700000014, 34.253408999121476], [-118.56222, 34.24900299912151], [-118.56282, 34.248402999121524], [-118.56342000000015, 34.24710299912152], [-118.56452, 34.2425029991216], [-118.56432, 34.23530299912171], [-118.56342000000015, 34.234802999121804], [-118.56322, 34.234102999121674], [-118.57102100000012, 34.23558199912164], [-118.57102000000013, 34.231502999121666], [-118.58036200000012, 34.23149999912173], [-118.580705, 34.2316319991218], [-118.580938, 34.231993999121705], [-118.581068, 34.234351999121664], [-118.581418, 34.234887999121696], [-118.58231900000013, 34.23527099912172], [-118.604821, 34.235302999121664], [-118.604949, 34.235545999121754], [-118.60765354766113, 34.23769560681683], [-118.60914727963052, 34.238621630574016], [-118.61060541048782, 34.238867886769924], [-118.61292560466912, 34.238153871179414], [-118.61626366265062, 34.238507572068], [-118.61811764783995, 34.23828352960979], [-118.62011602973863, 34.23852691095383], [-118.62091854883687, 34.23904951246072], [-118.62134671277168, 34.23976911116555], [-118.62137818765608, 34.24084188968266], [-118.62188905567744, 34.24250299924526], [-118.625421, 34.24040299912175], [-118.63023500000013, 34.23924099912181], [-118.629945, 34.23872299912175], [-118.6304780060361, 34.238556985864925], [-118.630725, 34.237771999121854], [-118.63146295259078, 34.237018047559225], [-118.64698115168137, 34.238081976016446], [-118.64971200001935, 34.22711500225083], [-118.65286100308413, 34.22711074544825], [-118.652862, 34.22735199912176], [-118.653292, 34.22734899912189], [-118.653291, 34.227109999121836], [-118.65404708247469, 34.22710902341229], [-118.65407200000013, 34.22468799912179], [-118.658735, 34.22457799912178], [-118.65930800000012, 34.22221199912178], [-118.65975200000017, 34.22114899912195], [-118.65981700000015, 34.218085999121875], [-118.659205, 34.21691799912181], [-118.6589590000002, 34.21594599912199], [-118.655916, 34.215945999121956], [-118.6546200000002, 34.216417999121894], [-118.65237500000016, 34.216418999121935], [-118.65324107201008, 34.212945997571374], [-118.66277077198214, 34.21292340088551], [-118.66276400000015, 34.209342999122036], [-118.667796, 34.20932899912203], [-118.66773800000023, 34.21211199912197], [-118.668058, 34.22398799912191], [-118.6675460000001, 34.240402999121685], [-118.64807400000021, 34.24043499912167], [-118.6375010000001, 34.24027199912156], [-118.635787, 34.240505999121616], [-118.63249500000018, 34.24042599912177], [-118.63251000497867, 34.2582690037844], [-118.63229897780433, 34.26356698772205], [-118.6332486404081, 34.26968305703512], [-118.62874600009418, 34.27330399931528], [-118.62686299999649, 34.274378999198845], [-118.62521199988572, 34.27503299931598], [-118.62257099974576, 34.27564199930243], [-118.60733600023481, 34.27774399889798], [-118.6059840001408, 34.27778299911409], [-118.6043390001363, 34.27752299891747], [-118.5962079999324, 34.274520999236394], [-118.5937230000746, 34.27718399913047], [-118.59257199980426, 34.278036999247284], [-118.59199700016823, 34.27918499928423], [-118.59169900025265, 34.280229998907146], [-118.59190899992912, 34.28062699923555], [-118.59217000012926, 34.282356999165444], [-118.59101399979654, 34.28243699909401], [-118.59108600000225, 34.28364099900939], [-118.59127200025249, 34.283833998996215], [-118.59176399992964, 34.285572999225096], [-118.59196700022063, 34.286853999310125], [-118.59163599984952, 34.28770399922698], [-118.59118000012269, 34.29179699926832], [-118.5909380001942, 34.29766999910409], [-118.58853300000119, 34.30321899914454], [-118.5868779999033, 34.3031499989456], [-118.58509099991984, 34.30347799919912]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Chatsworth", "metadata": {"sqmi": 15.2435966589, "type": "segment-of-a-city", "name": "Chatsworth", "slug": "chatsworth"}, "cases": 99.0, "population": 0.3870436960319827, "external_id": "chatsworth", "slug": "chatsworth-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/chatsworth-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.62091854883687, 34.23904951246072], [-118.62011602973863, 34.23852691095383], [-118.61811764783995, 34.23828352960979], [-118.61626366265062, 34.238507572068], [-118.61292560466912, 34.238153871179414], [-118.61060541048782, 34.238867886769924], [-118.60914727963052, 34.238621630574016], [-118.60765354766113, 34.23769560681683], [-118.604949, 34.235545999121754], [-118.604821, 34.235302999121664], [-118.61021900000014, 34.235222999121824], [-118.61055300000014, 34.234986999121745], [-118.610792, 34.23445999912178], [-118.611323, 34.23388899912171], [-118.612519, 34.2331639991219], [-118.614061, 34.231715999121775], [-118.61496400000016, 34.23138599912181], [-118.61584100000016, 34.22776399912188], [-118.61624, 34.22714899912192], [-118.625314, 34.227948999121836], [-118.62595, 34.22783999912187], [-118.626563, 34.227458999121794], [-118.628031, 34.226171999121775], [-118.629872, 34.225210999121906], [-118.631221, 34.22470299912194], [-118.6366600000001, 34.22446399912191], [-118.6428680000001, 34.22364199912186], [-118.643415, 34.2239689991219], [-118.647094, 34.2239689991219], [-118.64696000000012, 34.22944999912187], [-118.647105, 34.22955399912183], [-118.64713400000012, 34.23049499912179], [-118.647502, 34.230869999121786], [-118.648034, 34.23098699912177], [-118.6488460000001, 34.230254999121875], [-118.64872200000015, 34.22960299912184], [-118.64908551423557, 34.22963270231993], [-118.64698115168137, 34.238081976016446], [-118.63146295259078, 34.237018047559225], [-118.630725, 34.237771999121854], [-118.6304780060361, 34.238556985864925], [-118.629945, 34.23872299912175], [-118.63023500000013, 34.23924099912181], [-118.625421, 34.24040299912175], [-118.6219210000001, 34.242502999121655], [-118.62137818765608, 34.24084188968266], [-118.62134671277168, 34.23976911116555], [-118.62091854883687, 34.23904951246072]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Chatsworth Reservoir", "metadata": {"sqmi": 1.8010929772, "type": "segment-of-a-city", "name": "Chatsworth Reservoir", "slug": "chatsworth-reservoir"}, "cases": null, "population": null, "external_id": "chatsworth-reservoir", "slug": "chatsworth-reservoir-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/chatsworth-reservoir-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.308908, 33.9930129991246], [-118.3090080000001, 33.98891299912483], [-118.308808, 33.98661299912474], [-118.308907, 33.97441299912499], [-118.31760800000012, 33.97441299912493], [-118.317508, 33.98171299912489], [-118.31760800000012, 33.98891299912483], [-118.31710800000018, 33.988912999124764], [-118.317108, 33.9930129991246], [-118.311308, 33.993112999124776], [-118.308908, 33.9930129991246]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Chesterfield Square", "metadata": {"sqmi": 0.633386374403, "type": "segment-of-a-city", "name": "Chesterfield Square", "slug": "chesterfield-square"}, "cases": null, "population": null, "external_id": "chesterfield-square", "slug": "chesterfield-square-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/chesterfield-square-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.400911, 34.02990999912417], [-118.401211, 34.029409999124226], [-118.40591100000012, 34.02980999912429], [-118.41121100000011, 34.03080999912419], [-118.414799, 34.03228199912421], [-118.41611100000011, 34.03320999912413], [-118.418411, 34.03620999912418], [-118.4214110000001, 34.03710999912423], [-118.421511, 34.03740999912408], [-118.42331100000011, 34.03950999912405], [-118.423711, 34.04030999912415], [-118.4248120000001, 34.041809999123984], [-118.406541, 34.05229699912386], [-118.401531, 34.0519669991239], [-118.402553, 34.04635299912396], [-118.39885900000017, 34.0454799991239], [-118.399011, 34.043809999123965], [-118.398711, 34.04370999912402], [-118.398511, 34.041209999124064], [-118.39921100000014, 34.039709999124135], [-118.398111, 34.03570999912416], [-118.399911, 34.03130999912419], [-118.400911, 34.02990999912417]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Cheviot Hills", "metadata": {"sqmi": 1.53643338074, "type": "segment-of-a-city", "name": "Cheviot Hills", "slug": "cheviot-hills"}, "cases": 18.0, "population": 0.09171039894023539, "external_id": "cheviot-hills", "slug": "cheviot-hills-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/cheviot-hills-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.22510599999983, 34.07190999912357], [-118.224806, 34.07060999912362], [-118.2247059999999, 34.06771099912363], [-118.22700599999983, 34.06231099912373], [-118.22710599999989, 34.0618109991237], [-118.22650599999983, 34.05673099912389], [-118.22663399999986, 34.055754999123735], [-118.22730599999984, 34.05511099912374], [-118.22980599999983, 34.056110999123796], [-118.23770599999985, 34.05841099912366], [-118.23950699999982, 34.05841099912366], [-118.240207, 34.05871099912377], [-118.244607, 34.06131099912378], [-118.24930699999989, 34.06531099912365], [-118.24910699999988, 34.06551099912359], [-118.24850699999983, 34.06541099912367], [-118.24770699999982, 34.06581099912384], [-118.245807, 34.06881099912376], [-118.244407, 34.06981099912365], [-118.241807, 34.06771099912374], [-118.24030699999987, 34.06711099912356], [-118.239807, 34.06761099912359], [-118.2392069999998, 34.067810999123566], [-118.23590599999977, 34.06691099912358], [-118.235406, 34.06741099912367], [-118.23000599999988, 34.07111099912354], [-118.22690599999973, 34.07180999912373], [-118.22510599999983, 34.07190999912357]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Chinatown", "metadata": {"sqmi": 0.909367075497, "type": "segment-of-a-city", "name": "Chinatown", "slug": "chinatown"}, "cases": 9.0, "population": 0.08020675519115944, "external_id": "chinatown", "slug": "chinatown-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/chinatown-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.88944300000027, 34.112588999123275], [-117.89021845734264, 34.11257605901443], [-117.89021008673184, 34.113318006994724], [-117.88943200000026, 34.113319999123284], [-117.88944300000027, 34.112588999123275]]], [[[-117.90332800000029, 34.11104499912336], [-117.90339900000029, 34.11066699912336], [-117.90153700000027, 34.11073299912333], [-117.90159800000026, 34.114201999123345], [-117.89983159773675, 34.11419556741183], [-117.89984700000014, 34.11390099912332], [-117.89949500000024, 34.113906999123216], [-117.89963100000035, 34.10889799912341], [-117.90059400000032, 34.10889899912339], [-117.90059400000032, 34.10821799912335], [-117.90352900000022, 34.10808399912338], [-117.9059674260114, 34.106746884212946], [-117.90755700000017, 34.1067509991234], [-117.9075600000002, 34.10762299912334], [-117.90538500000025, 34.10776199912322], [-117.90542400000025, 34.11422799912328], [-117.90370800000026, 34.114229999123246], [-117.90371200000025, 34.11352999912334], [-117.90331600000029, 34.113499999123235], [-117.90332800000029, 34.11104499912336]]], [[[-117.88130698582941, 34.127070003178034], [-117.88129198564053, 34.126817001763825], [-117.87930898574004, 34.12683900411299], [-117.87925498572159, 34.125101000849384], [-117.87716898571655, 34.125104004203806], [-117.8771649858985, 34.124744000268485], [-117.876767985566, 34.12471400466507], [-117.87716698392724, 34.12434000500397], [-117.88035298571722, 34.12433700000827], [-117.8803569857263, 34.12143900417299], [-117.88137098575272, 34.12144300016416], [-117.88147698571103, 34.10740900423193], [-117.88238598577442, 34.10742299979245], [-117.88239498574355, 34.106642000770954], [-117.88148998573857, 34.106646998113305], [-117.8791079714738, 34.10596900578659], [-117.87874498555469, 34.105853997798654], [-117.87875698583237, 34.10549000323672], [-117.88039298564232, 34.10529000167258], [-117.88039699993736, 34.105416002704594], [-117.88148598564347, 34.105415001692435], [-117.88148900008947, 34.106140999567025], [-117.88290998569497, 34.10585500223349], [-117.88288800002181, 34.1066390023606], [-117.88328998662293, 34.10670800095382], [-117.88687798103996, 34.10676600040382], [-117.8868889857552, 34.10844800406585], [-117.89024297146246, 34.10842100257284], [-117.89023497148762, 34.110574005795115], [-117.89670798592573, 34.108604003269186], [-117.89894997850928, 34.108229003432], [-117.89889897149877, 34.1133080058007], [-117.89942497149876, 34.11537600580345], [-117.89938897127038, 34.12099400175532], [-117.89462598638649, 34.1208910013769], [-117.89233398666042, 34.120544001802706], [-117.89123197148591, 34.119840005807326], [-117.8901629852886, 34.119628005231135], [-117.89019898579478, 34.114719003867314], [-117.89112398574058, 34.11468500035102], [-117.89113198576995, 34.11414400068838], [-117.89079098571776, 34.11413900423483], [-117.89071198569569, 34.113615001034695], [-117.89020898579162, 34.113632003887616], [-117.89023498580701, 34.111527000556585], [-117.88830998621948, 34.111463005591276], [-117.88480198455714, 34.113138000514226], [-117.88479897136489, 34.114350001670935], [-117.88438298579545, 34.11436700383616], [-117.88436897147712, 34.117697005802896], [-117.88467997147713, 34.11878000580443], [-117.88453898576611, 34.12144800400656], [-117.88933997861209, 34.12140300163036], [-117.88938298568553, 34.12163100434811], [-117.88985397869651, 34.12164500131517], [-117.88989198561566, 34.12189600456002], [-117.890140978802, 34.12191100099794], [-117.89012097857365, 34.12406100138801], [-117.88921398581748, 34.124118003687364], [-117.889198985758, 34.12438900406371], [-117.88985098577615, 34.124382000073815], [-117.88985498575467, 34.12423500408107], [-117.89009597145595, 34.124233002586564], [-117.8901159714032, 34.12465900287322], [-117.88968198583535, 34.12470100344176], [-117.88969497853898, 34.12508700070184], [-117.88573798574826, 34.125093004096826], [-117.88573097152029, 34.12706300008124], [-117.88130698582941, 34.127070003178034]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Citrus", "metadata": {"sqmi": 1.01155085149, "type": "unincorporated-area", "name": "Citrus", "slug": "citrus"}, "cases": null, "population": null, "external_id": "citrus", "slug": "citrus-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/citrus-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.75580626049015, 34.165320277901984], [-117.72488934305406, 34.16491793848483], [-117.72488900000012, 34.16530599912259], [-117.715968, 34.16524399912261], [-117.71578700000015, 34.15813599912282], [-117.70628500000016, 34.158446999122674], [-117.703106, 34.15826199912271], [-117.702572, 34.15437899912272], [-117.69205200000012, 34.15364099912268], [-117.6920070000003, 34.15349199912284], [-117.6873560000002, 34.154428999122764], [-117.68707600000016, 34.15357299912279], [-117.68662600000013, 34.153456999122916], [-117.684295, 34.155850999122684], [-117.684024, 34.15655099912276], [-117.68383500000012, 34.15798199912264], [-117.682572, 34.15975699912284], [-117.68255800000016, 34.16066199912275], [-117.68378500000017, 34.16064899912271], [-117.68373000000014, 34.15989299912282], [-117.68551200000016, 34.1578369991227], [-117.698276, 34.15795199912272], [-117.69807200000011, 34.16499399912263], [-117.677745, 34.16479899912266], [-117.68134600000025, 34.15700099912272], [-117.682868, 34.155182999122744], [-117.686388, 34.142707999122884], [-117.68718800000012, 34.13890799912297], [-117.6935880000001, 34.1215089991231], [-117.70247900000012, 34.09953299912343], [-117.70299000000016, 34.09885699912349], [-117.704595, 34.095114999123396], [-117.70429000000016, 34.09505499912341], [-117.70472500000015, 34.09395699912345], [-117.71106700000018, 34.079535999123756], [-117.72799700000013, 34.079409999123584], [-117.72798200000015, 34.09035899912352], [-117.7319900000002, 34.09027899912359], [-117.73197600000022, 34.09398599912348], [-117.73252300000017, 34.098728999123445], [-117.736794, 34.09885799912345], [-117.736809, 34.111114999123274], [-117.73751800000021, 34.111223999123304], [-117.73804800000013, 34.11088799912335], [-117.73906600000016, 34.110824999123224], [-117.73888700000019, 34.10834999912323], [-117.73978400000018, 34.10820099912334], [-117.741192, 34.10819399912328], [-117.74132100000016, 34.108574999123334], [-117.74210400000023, 34.108603999123325], [-117.74208100000018, 34.110891999123254], [-117.74656800000015, 34.11118799912331], [-117.74852800000015, 34.11106499912315], [-117.74855000000011, 34.11285399912323], [-117.74994700000023, 34.11293599912327], [-117.74991300000015, 34.11138899912326], [-117.74974700000018, 34.111289999123215], [-117.74963800000013, 34.11073999912332], [-117.75071300000016, 34.110894999123275], [-117.7507690000003, 34.12067399912311], [-117.755192, 34.12068299912316], [-117.7550710000002, 34.11931399912323], [-117.759794, 34.11944499912324], [-117.75969700000019, 34.12952999912306], [-117.750242, 34.12942399912305], [-117.75009300000015, 34.13032699912309], [-117.75036900000012, 34.132380999122965], [-117.7488450000001, 34.132407999123], [-117.7487840000002, 34.13328699912292], [-117.74813800000014, 34.13468899912292], [-117.747667, 34.13756599912299], [-117.74768700000011, 34.14015799912295], [-117.749659, 34.14111899912281], [-117.75018, 34.141133999122935], [-117.75015200000023, 34.14332999912294], [-117.75100200000018, 34.142595999122925], [-117.75213400000015, 34.14379399912282], [-117.753586, 34.14366199912281], [-117.753811, 34.143776999122835], [-117.753597, 34.14533399912298], [-117.75582900000016, 34.14519999912289], [-117.755723, 34.1458929991228], [-117.75443300000012, 34.14962699912298], [-117.75333400000017, 34.14952999912279], [-117.75054900000022, 34.15097399912282], [-117.750419, 34.150915999122795], [-117.75052500000015, 34.157061999122746], [-117.755601, 34.15711099912283], [-117.75548100000016, 34.16356699912275], [-117.75572363527098, 34.16356965591402], [-117.75580626049015, 34.165320277901984]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Claremont", "metadata": {"sqmi": 16.6616865732, "type": "standalone-city", "name": "Claremont", "slug": "claremont"}, "cases": 24.0, "population": 0.3648525387655822, "external_id": "claremont", "slug": "claremont-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/claremont-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.14617596896117, 34.01793287497825], [-118.1462244718976, 34.017611002179756], [-118.14654768826203, 34.01767173975717], [-118.14696232960766, 34.014367375566366], [-118.14663880141656, 34.014320148607496], [-118.14676066575267, 34.013388260696765], [-118.14707347316664, 34.013431924637466], [-118.14753357406855, 34.0097670949776], [-118.127398, 34.00803299912455], [-118.127411, 34.00776399912449], [-118.1277870000002, 34.00763999912465], [-118.12782800000015, 34.007257999124676], [-118.12732100000011, 34.00722499912457], [-118.12989500000019, 34.0025089991246], [-118.12961600000025, 34.00219699912453], [-118.12892700000013, 34.001979999124565], [-118.12952700000018, 34.00089099912472], [-118.12852700000012, 34.00047699912465], [-118.12886300000015, 33.999920999124704], [-118.12847800000021, 33.99972799912467], [-118.12881600000014, 33.999018999124665], [-118.128398, 33.99884599912463], [-118.12976300000022, 33.993215999124764], [-118.1281090000002, 33.99225999912481], [-118.12670200000015, 33.99181299912475], [-118.12517900000022, 33.99095499912476], [-118.12860500000022, 33.98530299912491], [-118.13099600000014, 33.98490199912482], [-118.132721, 33.98601699912478], [-118.13316500000013, 33.984556999124806], [-118.12963500000015, 33.98104899912482], [-118.12658000000016, 33.9776449991249], [-118.12636900000027, 33.97778299912492], [-118.1212110000002, 33.97289899912497], [-118.12491300000023, 33.97052799912506], [-118.12726900000021, 33.97095199912505], [-118.12942300000017, 33.97093399912495], [-118.13059500000016, 33.97318999912501], [-118.13256200000015, 33.97252099912495], [-118.13437600000012, 33.97239999912505], [-118.15027100000015, 33.974151999124906], [-118.14961200000013, 33.97664599912495], [-118.14973200000013, 33.9774839991249], [-118.167315, 33.979335999124835], [-118.16774700000016, 33.98209899912481], [-118.16871600000016, 33.98494199912487], [-118.16947100000029, 33.98642599912479], [-118.17047100000012, 33.98788899912475], [-118.16476000000019, 33.98767299912485], [-118.1634410000001, 33.98726999912477], [-118.1618050000001, 33.98735999912476], [-118.16108700000014, 33.99201799912472], [-118.16014300000012, 33.991538999124735], [-118.159241, 33.99129699912484], [-118.155353, 33.99133299912472], [-118.15445300000012, 33.99121299912477], [-118.15268000000029, 33.99065099912463], [-118.15208900000023, 33.99198599912478], [-118.16044100000029, 33.99537799912475], [-118.165504, 33.998112999124665], [-118.17287200000017, 34.00036299912461], [-118.17446500000031, 34.0010379991246], [-118.17428600000025, 34.00133699912469], [-118.18127300000013, 34.00555999912462], [-118.18641300000016, 34.007309999124566], [-118.19088700000013, 34.00862799912465], [-118.19351400000022, 34.00970699912452], [-118.1928230000001, 34.01147599912448], [-118.192531, 34.01138799912436], [-118.19230900000024, 34.01283699912447], [-118.19142800000016, 34.01276099912445], [-118.19143600000017, 34.015083999124414], [-118.19221900000011, 34.01507999912446], [-118.19223100459234, 34.01654650668326], [-118.18734085217548, 34.016569460112], [-118.18732768432436, 34.015647148061], [-118.18129380228595, 34.015663901491514], [-118.18123985197946, 34.01203646024979], [-118.17591285192168, 34.01141146037478], [-118.17589985215548, 34.018273460383945], [-118.15890151107354, 34.010618527753905], [-118.15365285204997, 34.01963046091161], [-118.14624085194636, 34.01807646108474], [-118.14617596896117, 34.01793287497825]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Commerce", "metadata": {"sqmi": 6.58056684961, "type": "standalone-city", "name": "Commerce", "slug": "commerce"}, "cases": 13.0, "population": 0.13069267115713282, "external_id": "commerce", "slug": "commerce-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/commerce-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.22409300000014, 33.92219999912564], [-118.22000600000018, 33.92231799912575], [-118.21995900000023, 33.92275099912556], [-118.21962500000018, 33.922086999125675], [-118.21866000000016, 33.921313999125594], [-118.21818400000014, 33.92123799912561], [-118.21679700000014, 33.91222699912574], [-118.21392200000012, 33.91260299912577], [-118.21383900000018, 33.91306099912571], [-118.20640800000011, 33.91061899912573], [-118.20582700000023, 33.91262199912573], [-118.20186200000025, 33.91166399912581], [-118.19872600000012, 33.910560999125714], [-118.198387, 33.91067899912584], [-118.19997900000013, 33.906676999125764], [-118.19714900000017, 33.90646799912588], [-118.195122, 33.9112719991258], [-118.1938910000002, 33.91093299912574], [-118.19579200000011, 33.906330999125814], [-118.19019, 33.90581899912588], [-118.19019500000014, 33.9060999991258], [-118.189516, 33.90606099912576], [-118.18931500000018, 33.907339999125746], [-118.1867750000003, 33.90689299912581], [-118.18702700000011, 33.90548499912583], [-118.1896100000002, 33.90574899912587], [-118.18977650612186, 33.905578125741954], [-118.18964699051189, 33.903726874487454], [-118.18908000801547, 33.90373325363013], [-118.18892724927014, 33.90345501375035], [-118.18735200000016, 33.90335199912586], [-118.18683000000028, 33.902980999125774], [-118.1881035111767, 33.90316906253989], [-118.18810179036132, 33.90282479573148], [-118.18952328324457, 33.902812315369246], [-118.18947771259658, 33.90222241474434], [-118.18893163509475, 33.90222692931056], [-118.18893607138651, 33.90194216307571], [-118.18842305750726, 33.90194717704712], [-118.18842035170076, 33.90153660598428], [-118.18867905308784, 33.901533796095485], [-118.18867600000017, 33.90169499912575], [-118.18943433442477, 33.90164079565193], [-118.18936087311195, 33.900569240061664], [-118.18988650409615, 33.90056758561334], [-118.1894649054185, 33.894704405936025], [-118.18814917625677, 33.89471969848663], [-118.18812558453843, 33.89487619155366], [-118.18610000000017, 33.89485799912598], [-118.18589600000017, 33.89623399912592], [-118.182306, 33.89621199912588], [-118.18235600000023, 33.89425199912585], [-118.1816870000002, 33.894264999126], [-118.18159000000014, 33.892544999125946], [-118.17996200000019, 33.89253699912598], [-118.1824020000003, 33.88910599912613], [-118.18416900000031, 33.88913699912604], [-118.18429900000012, 33.89251899912604], [-118.18689700000013, 33.892419999126], [-118.1882070000001, 33.885223999126005], [-118.18762900000013, 33.88522999912612], [-118.1883680000002, 33.88132499912618], [-118.190069, 33.88141199912617], [-118.19162600000018, 33.88091699912609], [-118.1923870000002, 33.88143699912611], [-118.20889600000022, 33.88129199912605], [-118.2088980000002, 33.8806529991261], [-118.20861600000023, 33.880660999126], [-118.208513, 33.879775999126174], [-118.20856600000019, 33.8748569991262], [-118.20823800000015, 33.87482499912618], [-118.2082400000002, 33.87426399912617], [-118.20796300000012, 33.87426499912625], [-118.20792500000017, 33.874802999126196], [-118.2071570000002, 33.87471699912619], [-118.207155, 33.874268999126116], [-118.20560700000017, 33.87428599912616], [-118.20589500000014, 33.87289399912625], [-118.20560300000027, 33.872015999126276], [-118.20566600000015, 33.87038999912621], [-118.206321, 33.87034299912627], [-118.20709200000017, 33.87318399912618], [-118.21545800000017, 33.8729529991262], [-118.21616600000017, 33.872603999126326], [-118.21549800000012, 33.8716759991262], [-118.2150950000002, 33.869326999126265], [-118.218658, 33.86924799912619], [-118.21862500000015, 33.86817299912632], [-118.22578400000016, 33.868151999126184], [-118.22638400000014, 33.86429099912637], [-118.22680800000013, 33.86313799912633], [-118.22943800000019, 33.863085999126355], [-118.23084700000013, 33.863407999126345], [-118.2309420000002, 33.864691999126364], [-118.23171200000029, 33.864879999126316], [-118.232372, 33.86556599912629], [-118.23238600000013, 33.86666799912635], [-118.234127, 33.866641999126315], [-118.23412000000022, 33.86740099912629], [-118.23560200000013, 33.86734199912628], [-118.23563400000015, 33.86789999912624], [-118.24207700000015, 33.86773999912622], [-118.2423990000001, 33.8698939991262], [-118.244139, 33.87018599912626], [-118.24866000000023, 33.87007999912622], [-118.248642, 33.878812999126175], [-118.24742400000018, 33.87891199912617], [-118.24729800000017, 33.880451999126166], [-118.24873400000017, 33.88041499912604], [-118.24874100000022, 33.881716999126155], [-118.25366600000015, 33.881716999126155], [-118.25337600000016, 33.88011599912611], [-118.25909800000018, 33.87996199912611], [-118.26081400000018, 33.880181999126144], [-118.26151200000018, 33.88011199912614], [-118.26130600000016, 33.8813429991261], [-118.25814100000014, 33.88397199912608], [-118.2572130000001, 33.8840009991261], [-118.25760500000024, 33.88626799912611], [-118.25946200000013, 33.88621199912609], [-118.25936600000027, 33.885707999126076], [-118.259878, 33.885616999126], [-118.259841, 33.885247999126044], [-118.26116100000011, 33.88523399912604], [-118.2613629906937, 33.88609100127599], [-118.26069498607885, 33.886110003774945], [-118.26077298589425, 33.88672200121104], [-118.2598999861299, 33.88682700312434], [-118.2603929859447, 33.890061001778804], [-118.25918998610432, 33.890271002747795], [-118.26024698747334, 33.89472700449063], [-118.25982298413071, 33.89503899918145], [-118.2594039861287, 33.89508600318929], [-118.25947998571344, 33.895390000057176], [-118.25912498605328, 33.8953940039045], [-118.25941798555387, 33.89628899999947], [-118.25838799303142, 33.89629500311333], [-118.25830297899846, 33.89592900371884], [-118.25635698607083, 33.896329000918115], [-118.25239598609839, 33.89642700359842], [-118.25271598566273, 33.89767499982719], [-118.25226998607508, 33.897685003760834], [-118.25317097206133, 33.901609005609004], [-118.25360398607667, 33.902807003757225], [-118.26365898608421, 33.90234800318526], [-118.2635079860923, 33.905531000150916], [-118.26091298604317, 33.90556700395964], [-118.26092698601188, 33.91271599991173], [-118.25445598607784, 33.91293200375373], [-118.25445698599431, 33.917311000844954], [-118.2543409860878, 33.91732100190289], [-118.24620398594705, 33.917318003649186], [-118.24538298609068, 33.917462002764594], [-118.24525698661336, 33.91785799969115], [-118.23898399295582, 33.91771000339878], [-118.23905597900797, 33.91622400165088], [-118.23845899302881, 33.91622900309951], [-118.23840197902747, 33.91440500156183], [-118.2378069930143, 33.91440600316357], [-118.23778697902705, 33.91375300156156], [-118.23609699300863, 33.913753003185256], [-118.23610397898477, 33.9059520017583], [-118.23103098624246, 33.90728600466231], [-118.23050898578599, 33.907463001696065], [-118.23065698590784, 33.90775200210684], [-118.23037099302245, 33.90781300081585], [-118.23016597907318, 33.90754400419765], [-118.2286469859507, 33.90793400213708], [-118.22876198598703, 33.9081460023091], [-118.22826999302028, 33.908257000809556], [-118.22810397910527, 33.908015004317555], [-118.22749698595392, 33.908176002150284], [-118.22761798573504, 33.90840300168497], [-118.22503598588239, 33.90897700167188], [-118.22271098166358, 33.90872300749289], [-118.2223709860627, 33.90882600265702], [-118.22408998599347, 33.919799004059264], [-118.22803398602433, 33.919832000692566], [-118.22882798103045, 33.922779001859105], [-118.22428700000019, 33.923417999125526], [-118.22409300000014, 33.92219999912564]], [[-118.20046212215547, 33.906422547179034], [-118.20030245029625, 33.90409438728457], [-118.19782847829062, 33.90395766608119], [-118.19774623485667, 33.90303566103584], [-118.19938368907785, 33.90301245245657], [-118.19934357801931, 33.90220709587878], [-118.19991110012347, 33.902187775869486], [-118.19989208218472, 33.901915184320764], [-118.19933049365481, 33.901935171472616], [-118.19931709570618, 33.90165318843734], [-118.19987176822688, 33.90162860514699], [-118.19978440531744, 33.90038566115787], [-118.19925719659552, 33.90039255683174], [-118.19896017999588, 33.896129429113465], [-118.19834654849208, 33.896097399344164], [-118.19811688224218, 33.89283952906159], [-118.1974711291871, 33.89284665686299], [-118.19726842971863, 33.888741714546775], [-118.19498207575867, 33.888755693350916], [-118.19501312100732, 33.8891545496151], [-118.1939394395832, 33.88916805136643], [-118.19396199213207, 33.889481921925174], [-118.18942302062149, 33.88953348115704], [-118.19017354101412, 33.90056657778111], [-118.19321556700282, 33.90037982805509], [-118.19307212095896, 33.89843168760161], [-118.19406800452943, 33.898421519425916], [-118.19417440532732, 33.89986074952797], [-118.19383826599358, 33.89986319092616], [-118.19389778998085, 33.90054373767002], [-118.19173461589716, 33.90056075572991], [-118.19196013072965, 33.90358764997314], [-118.19164612489166, 33.90358797108449], [-118.1916787177683, 33.90405917142789], [-118.19058292338632, 33.904061974412826], [-118.1906842510778, 33.90552527063623], [-118.19398037209416, 33.90582783213145], [-118.19420321921652, 33.90502831946268], [-118.19405204477422, 33.9027483559545], [-118.19438489379596, 33.90274964706647], [-118.19439519910182, 33.90288932809372], [-118.19482166101157, 33.90288751993618], [-118.19488844188457, 33.903976612491235], [-118.19446988113383, 33.90398960680546], [-118.19454969690725, 33.90524284174045], [-118.1943877614948, 33.905735191153084], [-118.19477097986004, 33.90590038371131], [-118.20046212215547, 33.906422547179034]], [[-118.20053195041216, 33.88822920503387], [-118.20042900000016, 33.886328999126015], [-118.20194400000017, 33.886314999125865], [-118.20206700000017, 33.88811499912602], [-118.20611800000023, 33.88808299912607], [-118.2043003431371, 33.88161109788054], [-118.19727600000023, 33.881813999126045], [-118.19732, 33.88242099912613], [-118.19780500000019, 33.88232199912616], [-118.19788300000016, 33.88302399912605], [-118.19699000000014, 33.883127999126145], [-118.19730389284028, 33.88503527181219], [-118.19792837727393, 33.8850313336669], [-118.19817040406139, 33.88825519193463], [-118.1990913509091, 33.888253397419994], [-118.1991235402586, 33.888730741436746], [-118.20056802684418, 33.88872203930958], [-118.20053195041216, 33.88822920503387]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Compton", "metadata": {"sqmi": 10.2604113792, "type": "standalone-city", "name": "Compton", "slug": "compton"}, "cases": 215.0, "population": 1.0119131126075571, "external_id": "compton", "slug": "compton-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/compton-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.85465498572447, 34.102149004096084], [-117.855083985717, 34.10214800080322], [-117.85508198572268, 34.1026519999308], [-117.85463898571668, 34.10265100412925], [-117.85465498572447, 34.102149004096084]]], [[[-117.90711730346774, 34.10673034223939], [-117.88328998662283, 34.10670800095377], [-117.88288800002174, 34.10663900236058], [-117.88290998569487, 34.10585500223343], [-117.88148900008937, 34.10614099956698], [-117.8814859856434, 34.10541500169241], [-117.88039699993725, 34.10541600270448], [-117.88039298564222, 34.10529000167252], [-117.87875698583225, 34.10549000323669], [-117.87874498555459, 34.1058539977986], [-117.87731100000023, 34.105486999123364], [-117.87674500000021, 34.10548799912334], [-117.87389800000025, 34.10602999912338], [-117.86919998089087, 34.106465001020375], [-117.86919697871124, 34.10594000119931], [-117.86815498546673, 34.105882004866466], [-117.86818098574616, 34.104810004043216], [-117.86919497863815, 34.10478800151563], [-117.8692979856926, 34.10303500439244], [-117.87049598573135, 34.103043000787714], [-117.87046298560576, 34.10387300453896], [-117.87081198585697, 34.103894000366225], [-117.87079198584682, 34.104340999612106], [-117.87043798577453, 34.10434200390229], [-117.87038898567238, 34.10464300433817], [-117.87250897865103, 34.104708999874084], [-117.8725019857273, 34.10306100501802], [-117.87736197868034, 34.10306399984333], [-117.87739897860514, 34.09942400161874], [-117.87249898571342, 34.099435004944795], [-117.87248698579594, 34.100480999315074], [-117.87123698559508, 34.10040200456729], [-117.87127098581085, 34.099988003636916], [-117.87151597857013, 34.099973001278705], [-117.87143198596044, 34.09877400568479], [-117.87250197857745, 34.098800000066866], [-117.87247597871608, 34.0973460011978], [-117.87169398565628, 34.09731500439082], [-117.87167798570796, 34.096419005146956], [-117.87245897866289, 34.09645199969477], [-117.8724609857539, 34.09572900401968], [-117.87639297860501, 34.09572200078576], [-117.87635197853956, 34.09348200194405], [-117.8729399857787, 34.09358600388886], [-117.87292098578936, 34.09399500017374], [-117.87246498576214, 34.094004003977794], [-117.8724619857076, 34.094999000474445], [-117.87049198573271, 34.0950950041086], [-117.87049298571661, 34.095753000147], [-117.87009198570581, 34.09575500516965], [-117.87005398575833, 34.09942099987753], [-117.86778298573012, 34.09942200411228], [-117.86782598581128, 34.10154599965608], [-117.86601698570817, 34.101538004197224], [-117.86600498547284, 34.10325700040008], [-117.86479398578608, 34.103308003802844], [-117.86465797858243, 34.103036001656584], [-117.86160398572932, 34.103040004097544], [-117.86157097859505, 34.099424001590506], [-117.85632298571775, 34.09939800412892], [-117.85636297854779, 34.09779000178159], [-117.85506398574553, 34.0978100039983], [-117.85508498574762, 34.101707999687235], [-117.85428698583733, 34.10168800521506], [-117.85438998559147, 34.10304500006782], [-117.85283998570581, 34.103052004168724], [-117.8528389714383, 34.102577005775835], [-117.85269197855811, 34.10249900170995], [-117.85234198573262, 34.102502004051246], [-117.8523469857091, 34.103048999880386], [-117.84834998572742, 34.10304100406203], [-117.84826999997517, 34.10539916340787], [-117.84826497854972, 34.10489900172596], [-117.84636698573081, 34.10491800404009], [-117.8463659857534, 34.10466100392317], [-117.8471579786298, 34.104640000795534], [-117.84718198553912, 34.10402700578782], [-117.84796597856284, 34.10396900162382], [-117.8479959785837, 34.10304100157495], [-117.84635398571467, 34.10303600411207], [-117.8463549786058, 34.10155400148131], [-117.84564698569216, 34.101545004201164], [-117.84564698545863, 34.10038900171233], [-117.84636497887772, 34.10014600503725], [-117.84636597857295, 34.099419001616056], [-117.84382498571352, 34.099406004108175], [-117.84386198572726, 34.09891200404705], [-117.84417597978992, 34.098870006485036], [-117.84418497863705, 34.09581800135991], [-117.84054900000017, 34.09579599912342], [-117.846396, 34.09280999912347], [-117.8463920000003, 34.088905999123604], [-117.84774100000016, 34.08871299912352], [-117.84990800000013, 34.087912999123596], [-117.84998000000013, 34.08705699912354], [-117.85091800000018, 34.0863629991236], [-117.85156800000019, 34.086201999123595], [-117.85168100000021, 34.08585699912361], [-117.85206700000022, 34.085855999123645], [-117.85210900000015, 34.08620399912364], [-117.853478, 34.086199999123586], [-117.85344300000017, 34.084429999123564], [-117.8540590000001, 34.08351899912363], [-117.85404700000021, 34.08324599912364], [-117.85375500000022, 34.08276599912367], [-117.85325100000011, 34.08254599912359], [-117.84968600000016, 34.082483999123596], [-117.84918200000018, 34.08224099912371], [-117.84478600000016, 34.0819819991237], [-117.84343000000018, 34.08153199912363], [-117.84126600000018, 34.08040299912367], [-117.8431450000001, 34.07879899912371], [-117.84246400000013, 34.0782479991237], [-117.84290500000014, 34.07740399912371], [-117.84369800000016, 34.077643999123694], [-117.84431500000012, 34.077433999123684], [-117.84681000000012, 34.075209999123686], [-117.850793, 34.0773089991237], [-117.85126300000015, 34.07660399912376], [-117.85219100000018, 34.076806999123676], [-117.85141500000023, 34.07799499912369], [-117.85259300000018, 34.07900899912362], [-117.85229300000012, 34.08040899912361], [-117.851661, 34.08088299912379], [-117.85228800000017, 34.08210599912366], [-117.856861, 34.0822209991236], [-117.85651700000022, 34.08154999912362], [-117.856668, 34.080430999123756], [-117.85901800000025, 34.0805499991237], [-117.85919563917076, 34.08022022386862], [-117.85883378607627, 34.07996311304193], [-117.85908254886584, 34.079477001425545], [-117.85869155296947, 34.079123085731695], [-117.8600909375734, 34.07868401196807], [-117.8604785008203, 34.078918963283996], [-117.8606289347812, 34.07881577878358], [-117.86030600000015, 34.07856399912366], [-117.860013, 34.078551999123704], [-117.86019300000018, 34.076541999123826], [-117.86061400000017, 34.07631699912367], [-117.85990600000015, 34.07581099912378], [-117.86016000000028, 34.07549599912371], [-117.85966800000014, 34.075142999123734], [-117.85913600000018, 34.075481999123745], [-117.85894800000017, 34.07455999912372], [-117.85834000000011, 34.074619999123705], [-117.85822100000014, 34.074112999123685], [-117.85937900000012, 34.07408999912377], [-117.8593130000002, 34.07226599912376], [-117.8592510000002, 34.0721159991238], [-117.85835700000013, 34.072434999123786], [-117.85824200000023, 34.07165199912377], [-117.85834600000021, 34.070969999123726], [-117.85813200000015, 34.070035999123746], [-117.8571190000002, 34.06892899912382], [-117.85635900000011, 34.06871799912378], [-117.85575700000022, 34.0688329991238], [-117.85534700000011, 34.068130999123774], [-117.8571190000002, 34.06795599912377], [-117.85870400000013, 34.068640999123744], [-117.85914500000014, 34.06858899912373], [-117.86064000000022, 34.068893999123794], [-117.8617930000002, 34.06932199912382], [-117.86206700000014, 34.06967799912391], [-117.86215500000016, 34.07034099912377], [-117.86266900000018, 34.070304999123756], [-117.86271000000016, 34.070879999123726], [-117.86288000000015, 34.070818999123766], [-117.8631240000002, 34.070983999123825], [-117.86446700000013, 34.070735999123706], [-117.866038, 34.07139899912381], [-117.8680480000002, 34.07188099912382], [-117.86626800000016, 34.072314999123726], [-117.86586500000014, 34.073342999123795], [-117.86717300000018, 34.07343999912372], [-117.86738500000018, 34.07398799912376], [-117.86763000000018, 34.074146999123734], [-117.868366, 34.0739409991238], [-117.86882100000018, 34.074034999123754], [-117.869172, 34.0746079991237], [-117.86950300000025, 34.07461399912373], [-117.86968400000033, 34.075855999123704], [-117.87142500000023, 34.07541999912371], [-117.87316800000016, 34.074495999123705], [-117.8741100000001, 34.07367299912386], [-117.8812020000003, 34.07370699912376], [-117.88121900000014, 34.075283999123705], [-117.89002700000015, 34.07536399912369], [-117.89004300000023, 34.07735799912364], [-117.89175100000021, 34.07743899912368], [-117.89250500000014, 34.077323999123614], [-117.89259700000012, 34.07537799912375], [-117.89239000000016, 34.07336999912379], [-117.89889500000014, 34.073611999123784], [-117.898903, 34.07543299912384], [-117.90330100000011, 34.07546599912369], [-117.9032900000002, 34.086282999123526], [-117.90776100000018, 34.08631199912361], [-117.9077730000001, 34.08493999912353], [-117.91656400000016, 34.084798999123606], [-117.91658600000017, 34.08842699912356], [-117.91808400000023, 34.08841299912359], [-117.92164700000015, 34.08895999912351], [-117.923705, 34.08702299912358], [-117.92369600000025, 34.086438999123494], [-117.92719498578494, 34.08646500073843], [-117.9272949857577, 34.089620999440484], [-117.92540998567503, 34.089544004452534], [-117.92540798575952, 34.092935999937325], [-117.92341599985616, 34.09292400297788], [-117.92355098577859, 34.09217200075191], [-117.91928198413072, 34.09214000496953], [-117.9182649838501, 34.09300899823239], [-117.91657498574159, 34.09298500420957], [-117.91657697870484, 34.09213100139599], [-117.9144129857637, 34.09211900411344], [-117.91454497152638, 34.09533300578092], [-117.91434398576315, 34.09579400411703], [-117.91456998576321, 34.09579400078791], [-117.91448897152591, 34.09671000578279], [-117.91372697152455, 34.09746200578362], [-117.91370398577106, 34.09960900408085], [-117.91656898575485, 34.09959300082908], [-117.91657198650805, 34.10041800395451], [-117.91210798514018, 34.10254400111625], [-117.91223498611971, 34.10286000339085], [-117.91139799861025, 34.10318200199746], [-117.91434498587117, 34.103168000415266], [-117.91420698584722, 34.10703499949489], [-117.90711730346774, 34.10673034223939]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Covina", "metadata": {"sqmi": 7.60402649998, "type": "standalone-city", "name": "Covina", "slug": "covina"}, "cases": 118.0, "population": 0.6585127086159108, "external_id": "covina", "slug": "covina-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/covina-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.194261, 33.970399999125064], [-118.19434700000018, 33.96982199912502], [-118.19397900000017, 33.969782999125066], [-118.194031, 33.969418999125075], [-118.19210400000031, 33.96931399912497], [-118.1921960000002, 33.96843799912501], [-118.19206300000018, 33.968423999125065], [-118.19196500000018, 33.969103999125], [-118.1918440000001, 33.96908499912505], [-118.19192600000012, 33.96840899912511], [-118.19065100000012, 33.968272999125], [-118.190608, 33.968952999125044], [-118.19016000000013, 33.96895399912503], [-118.19021500000015, 33.96938999912511], [-118.1878400000002, 33.96950599912507], [-118.18800900000014, 33.970303999125015], [-118.18563800000017, 33.97005199912493], [-118.18574300000016, 33.9690789991249], [-118.17773900000016, 33.96838299912507], [-118.177794, 33.968097999124936], [-118.17698000000016, 33.96798099912502], [-118.17698900000016, 33.967700999125086], [-118.17528600000023, 33.967511999125016], [-118.17509100000015, 33.96801299912498], [-118.173003, 33.967713999125095], [-118.17322200000011, 33.9664389991251], [-118.17168500000014, 33.96628699912503], [-118.171491, 33.96761599912505], [-118.171076, 33.967533999125045], [-118.1711210000002, 33.967280999124995], [-118.1709620000002, 33.96727999912497], [-118.171116, 33.96633099912505], [-118.17010500000022, 33.966215999124984], [-118.1703190000002, 33.964604999125044], [-118.170853, 33.96410999912504], [-118.16924700000017, 33.96359199912514], [-118.17043800000019, 33.95568699912525], [-118.17038000000022, 33.95402799912513], [-118.17296500000016, 33.954301999125185], [-118.17262500000021, 33.95651499912527], [-118.17742700000016, 33.95700599912516], [-118.17733200000018, 33.957687999125206], [-118.17952200000026, 33.9579179991252], [-118.17967500000017, 33.95698199912524], [-118.1769380000003, 33.95663599912516], [-118.1785030000001, 33.95497399912516], [-118.18506400000011, 33.95563699912526], [-118.19860900000022, 33.96666299912504], [-118.20061400000017, 33.96873099912508], [-118.20189800000021, 33.97061099912498], [-118.1996120000001, 33.97039299912498], [-118.1994880000002, 33.971212999124944], [-118.194261, 33.970399999125064]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Cudahy", "metadata": {"sqmi": 1.22903553842, "type": "standalone-city", "name": "Cudahy", "slug": "cudahy"}, "cases": 74.0, "population": 0.24346910574455485, "external_id": "cudahy", "slug": "cudahy-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/cudahy-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.37157000000018, 34.03066199912427], [-118.37190100000016, 34.0299289991243], [-118.37364300000013, 34.0304209991243], [-118.37563200000011, 34.029047999124245], [-118.37659900000017, 34.0265889991244], [-118.37669300000013, 34.026036999124344], [-118.37636900000017, 34.02584899912437], [-118.37669700000019, 34.02398799912441], [-118.37875000000022, 34.02204699912442], [-118.3783350000002, 34.02118099912438], [-118.38048300000011, 34.02083599912436], [-118.3792120000002, 34.0195679991245], [-118.37797300000018, 34.01801799912442], [-118.375832, 34.01804999912445], [-118.37589100000022, 34.018519999124386], [-118.37281300000018, 34.018362999124435], [-118.37262700000014, 34.0184709991244], [-118.373736, 34.0163759991245], [-118.37407000000022, 34.01513399912447], [-118.37392600000015, 34.0138669991245], [-118.37309299594305, 34.01191300272932], [-118.37859698514843, 34.01193299905848], [-118.37951698644267, 34.011416007129824], [-118.38432898405661, 34.012485997927755], [-118.38750998222528, 34.0096680088842], [-118.38782098610636, 34.00856900245176], [-118.38770898610635, 34.00818200245141], [-118.39012998610879, 34.00293500244845], [-118.39074198610953, 34.00201400244784], [-118.39036798610923, 34.00165400244754], [-118.38862298585791, 34.00120200234828], [-118.38240999263061, 34.00031200443173], [-118.38380899101927, 33.996100007403726], [-118.38500898116186, 33.996433997474405], [-118.38589398610743, 33.99350400244185], [-118.3834099905608, 33.99231199741047], [-118.38800697461701, 33.98891100724404], [-118.38220898612424, 33.98895600401321], [-118.38210998683174, 33.99111200389276], [-118.37890999196163, 33.99271199860292], [-118.37864698610336, 33.98899000243798], [-118.37883698610345, 33.98851900243777], [-118.38450499150397, 33.97846900500577], [-118.38565098183659, 33.97856299750146], [-118.38673500000014, 33.97671899912491], [-118.3910660000002, 33.978632999124954], [-118.39262800000019, 33.97974399912496], [-118.39765000000016, 33.98206999912485], [-118.3975690000002, 33.982189999124934], [-118.3984630000002, 33.98317799912483], [-118.39508500000018, 33.98381799912492], [-118.395678, 33.98436599912478], [-118.39585100000014, 33.984912999124845], [-118.39828800000011, 33.987596999124825], [-118.39848300000016, 33.98761499912483], [-118.398761, 33.98795699912481], [-118.40123900000019, 33.986385999124835], [-118.4062030000002, 33.98940399912481], [-118.40514900000011, 33.99050099912469], [-118.4078560000002, 33.99211699912473], [-118.40641600000015, 33.992974999124655], [-118.40611900000017, 33.992979999124756], [-118.40600200000011, 33.993278999124726], [-118.40551800000019, 33.99359699912468], [-118.4041890000002, 33.99505899912471], [-118.40373200000013, 33.99532999912473], [-118.40302700000014, 33.996304999124696], [-118.40118000000018, 33.99972699912464], [-118.401285, 33.99978599912471], [-118.40075800000017, 34.001219999124665], [-118.40066300000015, 34.001428999124656], [-118.40042500000013, 34.001434999124605], [-118.40017500000013, 34.00203999912465], [-118.402768, 34.00346499912457], [-118.40588900000013, 33.99923599912476], [-118.40907700000014, 34.001211999124635], [-118.40963700000022, 34.000487999124715], [-118.41423100000021, 34.00343299912469], [-118.41436, 34.003661999124645], [-118.4160580000001, 34.000498999124595], [-118.418053, 33.99920199912467], [-118.419016, 33.99803699912467], [-118.41967400000013, 33.99760799912476], [-118.42843700000026, 33.996555999124645], [-118.43110200000015, 33.99638099912469], [-118.43018200000016, 33.99012499912483], [-118.42971700000021, 33.98975599912473], [-118.43087400000022, 33.98919199912479], [-118.43246300000017, 33.9914529991247], [-118.4371740000002, 33.9952759991247], [-118.44702300000016, 33.990518999124816], [-118.44717800000014, 33.99075899912486], [-118.44847200000017, 33.99335899912478], [-118.44471300000023, 33.99437499912475], [-118.44335000000014, 33.99531699912475], [-118.44245700000015, 33.99359899912473], [-118.43581100000017, 33.99691699912457], [-118.4353070000002, 33.99689899912468], [-118.430327, 33.999445999124646], [-118.4308360000002, 34.000101999124574], [-118.42848900000018, 34.00134399912462], [-118.42598000000021, 33.99806999912468], [-118.42040000000016, 33.998687999124634], [-118.41917800000013, 34.00003399912461], [-118.41823900000018, 34.00061899912468], [-118.4212490000001, 34.00442199912459], [-118.41734400000018, 34.006748999124625], [-118.41923000000018, 34.00910299912441], [-118.42008500000013, 34.00864499912461], [-118.42141100000019, 34.010323999124616], [-118.40686400000023, 34.018573999124406], [-118.40546, 34.016853999124294], [-118.4004760000002, 34.01989699912447], [-118.40128500000017, 34.021086999124414], [-118.40060800000016, 34.021471999124365], [-118.40024900000014, 34.02085999912444], [-118.39949200000012, 34.021293999124346], [-118.39910100000024, 34.020786999124425], [-118.3987960000002, 34.02086199912452], [-118.397455, 34.021661999124355], [-118.39835000000016, 34.022916999124355], [-118.39408400000012, 34.0253099991243], [-118.394197, 34.02555899912434], [-118.39393700000012, 34.025705999124334], [-118.39344600000017, 34.025370999124334], [-118.39334200000025, 34.02551199912433], [-118.39293100000015, 34.02552099912429], [-118.392622, 34.02627799912436], [-118.38717100000014, 34.02939999912429], [-118.3867990000002, 34.029128999124254], [-118.38666200000019, 34.02920699912432], [-118.3863960000002, 34.02890499912428], [-118.384206, 34.03021399912433], [-118.37591900000012, 34.03241699912421], [-118.36957700000013, 34.03507999912425], [-118.37157000000018, 34.03066199912427]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Culver City", "metadata": {"sqmi": 5.19276111048, "type": "standalone-city", "name": "Culver City", "slug": "culver-city"}, "cases": 66.0, "population": 0.3986470161874849, "external_id": "culver-city", "slug": "culver-city-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/culver-city-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.219006, 34.08900999912346], [-118.216806, 34.08880999912347], [-118.21600600000012, 34.0892099991235], [-118.215606, 34.08850999912352], [-118.21210600000015, 34.09030999912343], [-118.2113060000001, 34.091108999123584], [-118.211106, 34.08980999912349], [-118.21140600000015, 34.08890999912355], [-118.21200600000013, 34.0881099991235], [-118.212906, 34.0864099991235], [-118.214506, 34.08630999912341], [-118.219306, 34.08470999912355], [-118.226306, 34.08000999912354], [-118.226906, 34.08100999912357], [-118.22740600000016, 34.08290999912356], [-118.228006, 34.08830999912348], [-118.22860600000014, 34.08990999912355], [-118.230606, 34.09220999912347], [-118.232207, 34.09320999912347], [-118.23060700000015, 34.09420899912352], [-118.237207, 34.10200899912338], [-118.232822, 34.104268999123356], [-118.232707, 34.10400899912322], [-118.234207, 34.10320899912329], [-118.233907, 34.10180899912332], [-118.233607, 34.10140899912327], [-118.232807, 34.10100899912329], [-118.232207, 34.1004089991234], [-118.230107, 34.099508999123266], [-118.22740600000016, 34.09770899912326], [-118.225406, 34.09670899912334], [-118.223706, 34.09640899912336], [-118.22220600000013, 34.095408999123386], [-118.221306, 34.09410899912343], [-118.22100600000014, 34.093208999123355], [-118.220906, 34.09140999912338], [-118.220606, 34.09060999912335], [-118.219006, 34.08900999912346]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Cypress Park", "metadata": {"sqmi": 0.724461994547, "type": "segment-of-a-city", "name": "Cypress Park", "slug": "cypress-park"}, "cases": null, "population": null, "external_id": "cypress-park", "slug": "cypress-park-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/cypress-park-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.37711698547298, 33.92910500339143], [-118.36821599204436, 33.92902000254833], [-118.36820197221309, 33.92529100566645], [-118.36853198604851, 33.92346800107023], [-118.36562898577421, 33.92331900490209], [-118.36562397221024, 33.92291600566266], [-118.3656169856216, 33.91777800125847], [-118.36811798662774, 33.91670000357581], [-118.36810398609018, 33.91638300083838], [-118.36360498611408, 33.916417003981785], [-118.3636139861032, 33.91602100076553], [-118.36272899305507, 33.91602200319359], [-118.36263697977226, 33.916422000126374], [-118.36123498610314, 33.91642100402133], [-118.36124098594617, 33.915917005956615], [-118.36168098582966, 33.91596499877471], [-118.36157898619804, 33.914875003234684], [-118.36186598625319, 33.91484300108684], [-118.36190798607873, 33.914177000873636], [-118.36160898612926, 33.91418200390274], [-118.36161098609493, 33.91379300079608], [-118.36125798611282, 33.913795003979445], [-118.36125298610278, 33.91035500485029], [-118.36230698611226, 33.91035699992105], [-118.36230998609713, 33.90949000079028], [-118.3619099861128, 33.909492003979956], [-118.3620079860966, 33.907766000792584], [-118.36126898611334, 33.907770003975344], [-118.36125598610798, 33.905207003998065], [-118.36181298609982, 33.90520599995871], [-118.36181098609524, 33.904443000799674], [-118.36150698611581, 33.90444500396406], [-118.36145197221073, 33.903966005637116], [-118.36150298576136, 33.903717004872945], [-118.36190698611905, 33.9037189998883], [-118.36209598583706, 33.90199900476227], [-118.36308697956396, 33.90211100043488], [-118.36311999305842, 33.902803003174434], [-118.3641469861231, 33.90280099995992], [-118.36415198579641, 33.90232800484591], [-118.36514997962917, 33.902454000310755], [-118.36510799307196, 33.90370400311736], [-118.36590698610975, 33.90369800001816], [-118.36592398620265, 33.902454003152876], [-118.36968197917749, 33.9023270015239], [-118.36937199206702, 33.903304998686934], [-118.36981198611127, 33.903845002382425], [-118.36988898611135, 33.904334002382754], [-118.36983998611001, 33.91188000238761], [-118.36958499306272, 33.91632000317139], [-118.37434098050291, 33.91630600022579], [-118.37432499301606, 33.91718600336761], [-118.37640497921045, 33.9172180014157], [-118.37639499305303, 33.91973100322604], [-118.37838297917553, 33.919734001560926], [-118.37842898371596, 33.92900800175242], [-118.37711698547298, 33.92910500339143]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Del Aire", "metadata": {"sqmi": 0.989829123892, "type": "unincorporated-area", "name": "Del Aire", "slug": "del-aire"}, "cases": 7.0, "population": 0.043931216267101794, "external_id": "del-aire", "slug": "del-aire-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/del-aire-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.441698, 33.99397799912478], [-118.44249096721673, 33.99366434702838], [-118.43697066141675, 33.99634003849492], [-118.437123, 33.99626599912467], [-118.441698, 33.99397799912478]]], [[[-118.411641, 34.0017719991245], [-118.40963700000012, 34.00048799912467], [-118.409077, 34.001211999124614], [-118.405889, 33.999235999124735], [-118.40276799999985, 34.0034649991245], [-118.400175, 34.00203999912465], [-118.400425, 34.00143499912458], [-118.400663, 34.0014289991246], [-118.400758, 34.00121999912471], [-118.401288, 33.9995049991247], [-118.403027, 33.99630499912475], [-118.403732, 33.99532999912483], [-118.4041890000001, 33.99505899912476], [-118.405518, 33.993596999124804], [-118.406002, 33.99327899912472], [-118.406119, 33.992979999124756], [-118.406416, 33.992974999124755], [-118.407856, 33.99211699912483], [-118.405149, 33.99050099912473], [-118.406203, 33.98940399912489], [-118.40441, 33.98831199912488], [-118.408138, 33.9881139991248], [-118.411045, 33.987191999124846], [-118.413808, 33.985461999124794], [-118.41801, 33.982490999124785], [-118.420615, 33.98133399912471], [-118.42311, 33.980810999124834], [-118.42831000000011, 33.9773109991247], [-118.43219249436724, 33.97492238490894], [-118.43339898614322, 33.97634900243616], [-118.43654398614504, 33.97850900243791], [-118.43981998614674, 33.981342002440364], [-118.44181100000013, 33.983510999124796], [-118.442711, 33.98491099912471], [-118.447811, 33.99051099912464], [-118.447211, 33.990810999124754], [-118.447023, 33.990518999124745], [-118.437174, 33.99527599912467], [-118.432463, 33.99145299912465], [-118.43087400000012, 33.989191999124884], [-118.429717, 33.98975599912471], [-118.430182, 33.99012499912479], [-118.431102, 33.996380999124746], [-118.42843700000017, 33.9965559991247], [-118.419674, 33.99760799912473], [-118.419016, 33.998036999124615], [-118.418053, 33.99920199912465], [-118.416058, 34.00049899912457], [-118.41436, 34.0036619991246], [-118.414231, 34.00343299912464], [-118.411641, 34.0017719991245]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Del Rey", "metadata": {"sqmi": 2.4526483285, "type": "segment-of-a-city", "name": "Del Rey", "slug": "del-rey"}, "cases": 50.0, "population": 0.2993653454676087, "external_id": "del-rey", "slug": "del-rey-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/del-rey-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.14981502302123, 34.597258152375744], [-118.14941551148422, 34.59721083680312], [-118.14941251047972, 34.59702481996288], [-118.15356596540668, 34.59556738729846], [-118.15130579005694, 34.59344741993051], [-118.14886511993312, 34.59516860633953], [-118.14886797788809, 34.59538016953567], [-118.14833376513381, 34.5953847234637], [-118.14828458256716, 34.59174294986232], [-118.1488252925147, 34.591738698284395], [-118.1488201310415, 34.5914538890831], [-118.14755760159426, 34.59145748650229], [-118.1475074913113, 34.58708197672678], [-118.15011595982816, 34.58707231551281], [-118.14992496289267, 34.58455924647242], [-118.15091172574427, 34.58452087208009], [-118.15088905993213, 34.584250207552344], [-118.15185150624347, 34.58393291508832], [-118.15184584282659, 34.58347956407577], [-118.15284413443399, 34.583481030769406], [-118.15284698932695, 34.58369808979391], [-118.15405898969361, 34.58396637051583], [-118.15406624982467, 34.5844554409266], [-118.15539597382943, 34.58483103284469], [-118.15597129022336, 34.58455573571805], [-118.15630837014898, 34.58503638314284], [-118.15633440880387, 34.58704238708229], [-118.16159960219235, 34.5870069027536], [-118.16160517606383, 34.58803659287768], [-118.16136005824463, 34.58848959311953], [-118.15720972155948, 34.59151323697879], [-118.15753357586156, 34.591812921967865], [-118.15594263632345, 34.59298321832873], [-118.15626513392779, 34.593287794581904], [-118.15532838611045, 34.593977446367894], [-118.15597167876318, 34.594581455757336], [-118.15854059852578, 34.592704448328426], [-118.15920546000169, 34.59332770312422], [-118.16086256574049, 34.59211150854601], [-118.16086984597624, 34.59261019364425], [-118.15600521000177, 34.59604286383273], [-118.15064194677794, 34.59785030835607], [-118.14982851513886, 34.59827474175789], [-118.14981502302123, 34.597258152375744]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Desert View Highlands", "metadata": {"sqmi": 0.443173884018, "type": "unincorporated-area", "name": "Desert View Highlands", "slug": "desert-view-highlands"}, "cases": 3.0, "population": 0.02492936679408343, "external_id": "desert-view-highlands", "slug": "desert-view-highlands-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/desert-view-highlands-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.80010300000016, 34.04141299912412], [-117.79811900000018, 34.04051199912411], [-117.796761, 34.03908199912414], [-117.795311, 34.03808199912417], [-117.79377000000018, 34.037406999124244], [-117.79225000000018, 34.037037999124166], [-117.78631600000018, 34.033361999124224], [-117.78504600000022, 34.02762199912418], [-117.78040900000018, 34.02588999912438], [-117.7677900000001, 34.01861099912438], [-117.76759000000015, 34.004611999124585], [-117.78529100000017, 34.00481199912451], [-117.80276600000016, 33.975817999124885], [-117.803578, 33.975927999125], [-117.80562800000021, 33.97561899912493], [-117.81318300000012, 33.97546699912495], [-117.81444900000017, 33.97508099912495], [-117.81495900000013, 33.97313699912495], [-117.81980400000015, 33.96898199912508], [-117.82354200000023, 33.9661029991251], [-117.83094000000011, 33.96106799912508], [-117.83124500000012, 33.96047199912515], [-117.8329170000003, 33.95937199912509], [-117.83820500000014, 33.96078299912515], [-117.83847200000015, 33.95881999912511], [-117.84778200000017, 33.9611669991251], [-117.855509, 33.95932899912511], [-117.85646600000018, 33.959217999125194], [-117.85649051254839, 33.960026547454596], [-117.85493400019355, 33.960871227961555], [-117.85503095740438, 33.97840013833306], [-117.8552279574229, 33.98022813833645], [-117.85511995741176, 33.980957138338745], [-117.85521363917888, 33.9901551582565], [-117.86387133754307, 33.99644234340392], [-117.86190800000014, 33.99663399912476], [-117.8604210000001, 33.99715399912462], [-117.86011000000023, 33.998686999124644], [-117.8596840000001, 33.999229999124644], [-117.8613980000002, 34.00059999912465], [-117.85950300000029, 34.0015209991246], [-117.85854500000013, 34.000102999124636], [-117.85755600000019, 34.00083799912474], [-117.85646000000015, 34.00135599912464], [-117.85679000000016, 34.0019139991246], [-117.85517700000017, 34.00348299912453], [-117.84427300000031, 34.008483999124486], [-117.84292200000021, 34.00927499912442], [-117.842022, 34.01002899912451], [-117.8382340000002, 34.007542999124524], [-117.83908900000017, 34.00731899912458], [-117.840357, 34.006598999124634], [-117.841189, 34.006604999124505], [-117.84179900000025, 34.00689799912452], [-117.84185900000018, 34.00663699912464], [-117.84226800000012, 34.00677299912466], [-117.84215900000012, 34.006292999124554], [-117.841141, 34.00641199912464], [-117.841022, 34.00611199912451], [-117.840965, 34.0034919991246], [-117.84033300000016, 34.00175999912464], [-117.83571600000018, 34.00196999912457], [-117.83490300000018, 34.00183799912462], [-117.83418600000013, 34.00198899912462], [-117.82872600000019, 34.005689999124634], [-117.82508900000013, 34.00894899912462], [-117.8245850000002, 34.00972099912449], [-117.82490000000017, 34.01129299912457], [-117.8246330000001, 34.01191599912452], [-117.82371500000018, 34.01222899912445], [-117.823263, 34.01039599912461], [-117.82234900000019, 34.01188299912446], [-117.822511, 34.012441999124526], [-117.82137700000017, 34.01300099912446], [-117.82074100000021, 34.01253899912451], [-117.81979500000014, 34.029245999124264], [-117.82153800000026, 34.03089199912423], [-117.81771700000021, 34.03482099912422], [-117.80965100000016, 34.03086799912423], [-117.80761000000015, 34.03414399912416], [-117.80552100000011, 34.03699999912421], [-117.80212700000016, 34.04053499912412], [-117.80204700000012, 34.04081199912411], [-117.80230800000018, 34.04047599912421], [-117.80225300000019, 34.041355999124015], [-117.80174400000018, 34.04246199912416], [-117.80123300000012, 34.04219199912412], [-117.8007810000002, 34.04170799912418], [-117.80010300000016, 34.04141299912412]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Diamond Bar", "metadata": {"sqmi": 15.1260322873, "type": "standalone-city", "name": "Diamond Bar", "slug": "diamond-bar"}, "cases": 34.0, "population": 0.5751014884979703, "external_id": "diamond-bar", "slug": "diamond-bar-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/diamond-bar-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.1189190000003, 33.970547999124946], [-118.11050700000014, 33.96132899912513], [-118.09780300000027, 33.9525209991252], [-118.09591300000017, 33.95140999912527], [-118.09361100000015, 33.95045999912529], [-118.0978980000001, 33.94561699912529], [-118.0982870000002, 33.94490199912536], [-118.09847000000013, 33.94413699912536], [-118.094055, 33.937463999125384], [-118.09026200000014, 33.93210199912551], [-118.10471800000015, 33.93201099912548], [-118.10550100000019, 33.93321399912548], [-118.11154100000016, 33.92190799912566], [-118.1117980000001, 33.920984999125544], [-118.11172800000018, 33.91908399912559], [-118.11128100000012, 33.91702399912566], [-118.11088000000014, 33.91378199912574], [-118.10980000000029, 33.90971399912575], [-118.13409000000016, 33.90976399912579], [-118.13519700000026, 33.909684999125695], [-118.13823200000014, 33.90896299912579], [-118.13959300000019, 33.90915699912575], [-118.14240400000018, 33.91045299912579], [-118.14290000000018, 33.90864699912572], [-118.14273400000016, 33.902454999125865], [-118.143039, 33.9024869991259], [-118.145286, 33.90352299912586], [-118.145316, 33.90378499912583], [-118.1475210000003, 33.9044849991258], [-118.15103800000023, 33.9061899991258], [-118.15147100000023, 33.90621199912583], [-118.15145700000025, 33.90638999912581], [-118.15329200000018, 33.907272999125766], [-118.14928800000018, 33.91373499912564], [-118.17058400000016, 33.92368399912556], [-118.167768, 33.92572199912562], [-118.1676270000002, 33.92592799912558], [-118.16767400000029, 33.92695599912557], [-118.16688800000017, 33.927433999125554], [-118.16673300000025, 33.92743399912553], [-118.16631900000014, 33.926830999125556], [-118.165349, 33.927455999125534], [-118.16505300000017, 33.92685399912552], [-118.1642120000002, 33.926472999125465], [-118.16272000000014, 33.92662599912542], [-118.16271900000018, 33.92687299912552], [-118.1623600000001, 33.92742299912551], [-118.16178700000013, 33.928923999125516], [-118.16274300000028, 33.92919899912546], [-118.162567, 33.93015699912553], [-118.16377300000018, 33.93333399912542], [-118.16491600000016, 33.93319599912546], [-118.16588200000017, 33.93587299912546], [-118.1646480000002, 33.93877799912539], [-118.164697, 33.93925499912548], [-118.16446500000016, 33.94029599912544], [-118.1639420000001, 33.94086899912542], [-118.16210300000014, 33.94201399912535], [-118.15810500000016, 33.94844099912525], [-118.15611900000016, 33.95102599912522], [-118.15849300000022, 33.9520359991252], [-118.157647, 33.952884999125224], [-118.155064, 33.95474199912517], [-118.1405890000003, 33.96263599912503], [-118.13947800000017, 33.963029999125055], [-118.13741200000014, 33.965836999125095], [-118.1366680000001, 33.96745299912506], [-118.13360200000011, 33.97111299912486], [-118.12726900000021, 33.97095199912505], [-118.12491300000023, 33.97052799912506], [-118.1212110000002, 33.97289899912497], [-118.1189190000003, 33.970547999124946]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Downey", "metadata": {"sqmi": 12.5294779177, "type": "standalone-city", "name": "Downey", "slug": "downey"}, "cases": 224.0, "population": 1.1426239542950418, "external_id": "downey", "slug": "downey-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/downey-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.24020700000014, 34.05871099912385], [-118.239507, 34.05841099912376], [-118.237706, 34.05841099912376], [-118.229806, 34.056110999123874], [-118.227306, 34.05511099912379], [-118.22890600000017, 34.053210999123834], [-118.230306, 34.048011999124036], [-118.228406, 34.038611999124115], [-118.227406, 34.03451199912409], [-118.22646400000012, 34.02943499912414], [-118.2262060000001, 34.02931199912413], [-118.223906, 34.01851299912442], [-118.22291280880971, 34.01494244501524], [-118.223232, 34.014940999124484], [-118.223395, 34.015368999124405], [-118.223705, 34.015362999124406], [-118.223692, 34.014941999124474], [-118.225696, 34.01493699912441], [-118.225707, 34.015318999124375], [-118.2275010000001, 34.01528099912441], [-118.227673, 34.014920999124406], [-118.23970817900988, 34.01470622792806], [-118.23950600000016, 34.0200129991243], [-118.24400600000013, 34.02091299912429], [-118.2533070000001, 34.025912999124266], [-118.27410700000011, 34.03541199912403], [-118.274007, 34.038411999124044], [-118.27360100000013, 34.04113399912407], [-118.272807, 34.04291199912408], [-118.271807, 34.04441199912395], [-118.27120700000015, 34.04511199912397], [-118.270507, 34.04561199912394], [-118.26096100000017, 34.05126499912385], [-118.26148, 34.051571999123865], [-118.26074500000013, 34.05197799912394], [-118.259729, 34.05299999912385], [-118.259807, 34.05311099912405], [-118.259107, 34.053910999123936], [-118.255793, 34.057424999123896], [-118.254207, 34.05931099912385], [-118.252307, 34.06231099912379], [-118.249307, 34.06531099912374], [-118.24460700000013, 34.06131099912382], [-118.24020700000014, 34.05871099912385]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Downtown", "metadata": {"sqmi": 5.83816978008, "type": "segment-of-a-city", "name": "Downtown", "slug": "downtown"}, "cases": 191.0, "population": 0.6676853915648617, "external_id": "downtown", "slug": "downtown-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/downtown-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.924704, 34.19432499912225], [-117.92479600000019, 34.165505999122644], [-117.94174700000015, 34.16522799912267], [-117.94150800000014, 34.15350599912281], [-117.93824700000015, 34.153504999122724], [-117.93815100000033, 34.15203899912283], [-117.9350590000003, 34.15382299912284], [-117.93516000000021, 34.154326999122766], [-117.93399000000018, 34.15372899912274], [-117.934101, 34.15344299912278], [-117.93087300000015, 34.15107599912282], [-117.93067300000014, 34.1506929991227], [-117.930023, 34.15053199912274], [-117.93157700000026, 34.14912999912286], [-117.9324260000002, 34.14798099912286], [-117.93751400000019, 34.14298499912285], [-117.939702, 34.14053999912298], [-117.94286200000015, 34.13872699912286], [-117.94324800000012, 34.13769199912292], [-117.943592, 34.13734999912297], [-117.94380700000012, 34.137491999122986], [-117.94442800000016, 34.13695499912298], [-117.94629500000022, 34.137757999122975], [-117.94686000000013, 34.13718399912295], [-117.946958, 34.13738499912295], [-117.94891200000015, 34.13575099912295], [-117.95200000000013, 34.135910999123006], [-117.95205200000015, 34.136125999123045], [-117.96002700000015, 34.136075999122994], [-117.96066600000017, 34.13535499912296], [-117.9602320000001, 34.13489599912304], [-117.960115, 34.13222299912308], [-117.96769500000015, 34.13206499912304], [-117.9692660000002, 34.13221699912297], [-117.96922700000017, 34.130318999123006], [-117.96966200000021, 34.12844999912307], [-117.97058300000012, 34.12816999912305], [-117.97269600000013, 34.126467999123115], [-117.97358500000016, 34.12515499912309], [-117.97753600000013, 34.12500999912313], [-117.97754500000022, 34.125288999123114], [-117.979198, 34.1251069991231], [-117.97928100000028, 34.12627499912316], [-117.98194200000017, 34.12626899912317], [-117.98193000000015, 34.12664899912305], [-117.982314, 34.12666199912308], [-117.98236800000018, 34.126798999123125], [-117.98444900000011, 34.12604499912303], [-117.98523800000022, 34.12621599912314], [-117.98581900000013, 34.12491999912314], [-117.9863710000002, 34.12462299912317], [-117.98623900000017, 34.12359099912307], [-117.98695700000019, 34.12378599912305], [-117.98786500000013, 34.12138599912313], [-117.99054300000022, 34.122120999123155], [-117.98677100000013, 34.13188099912297], [-117.98633700000022, 34.13242699912307], [-117.98630000000013, 34.13946999912304], [-117.9811050000002, 34.13952099912298], [-117.98108700000014, 34.140228999122925], [-117.9797030000002, 34.14013599912291], [-117.9796970000001, 34.14322799912288], [-117.97754600000015, 34.14324699912287], [-117.97755300000013, 34.143635999122864], [-117.97538053584937, 34.143677262903644], [-117.96312300000014, 34.14378199912293], [-117.96312400000016, 34.143679999122874], [-117.961586, 34.143499999122824], [-117.96002900000015, 34.14342599912286], [-117.95155, 34.14351699912286], [-117.95159800000016, 34.14451799912283], [-117.95130800000018, 34.14577899912286], [-117.95129700000027, 34.1483059991228], [-117.95150500000013, 34.150420999122794], [-117.96005200000019, 34.151784999122825], [-117.960054, 34.1650539991226], [-117.94439700000014, 34.1652059991227], [-117.94447100000015, 34.16704999912267], [-117.94153600000017, 34.1670529991225], [-117.94179900000015, 34.1805009991225], [-117.95959400000021, 34.180580999122455], [-117.9595930000002, 34.194175999122294], [-117.924704, 34.19432499912225]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Duarte", "metadata": {"sqmi": 6.68890771425, "type": "standalone-city", "name": "Duarte", "slug": "duarte"}, "cases": 76.0, "population": 0.2644434291346068, "external_id": "duarte", "slug": "duarte-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/duarte-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.198191, 34.1516259991227], [-118.198195, 34.1490449991229], [-118.19040900000013, 34.14904899912281], [-118.1839200000001, 34.148672999122795], [-118.18421300000013, 34.146279999122775], [-118.18456100000013, 34.14540099912282], [-118.182435, 34.14395499912291], [-118.18218, 34.143396999122885], [-118.182206, 34.14306099912283], [-118.181164, 34.142198999122826], [-118.18075700000018, 34.141299999122914], [-118.180082, 34.14109099912298], [-118.180198, 34.140817999122966], [-118.181956, 34.140635999122885], [-118.18312800000014, 34.14025999912295], [-118.184342, 34.139406999122905], [-118.184893, 34.139552999122934], [-118.185683, 34.13903299912289], [-118.185672, 34.13885399912286], [-118.185395, 34.13884099912291], [-118.185526, 34.13856599912286], [-118.185524, 34.137334999122984], [-118.185796, 34.13736799912294], [-118.185686, 34.13666199912297], [-118.185887, 34.13618299912293], [-118.185206, 34.136067999122936], [-118.185531, 34.13472599912297], [-118.186097, 34.133731999122936], [-118.182817, 34.131210999122914], [-118.18282421238357, 34.129715995032996], [-118.185605, 34.128907999122994], [-118.185705, 34.128507999122995], [-118.187605, 34.128107999122946], [-118.188905, 34.13100799912296], [-118.190705, 34.13070799912289], [-118.190805, 34.13110799912307], [-118.191205, 34.13110799912302], [-118.191305, 34.130507999123], [-118.192505, 34.129807999122946], [-118.193906, 34.129507999123], [-118.194506, 34.12640799912301], [-118.19550600000014, 34.12650799912305], [-118.19810600000015, 34.12640799912301], [-118.19823500000014, 34.12661399912298], [-118.198606, 34.12620799912295], [-118.20000600000016, 34.12730799912308], [-118.200006, 34.12790799912306], [-118.200306, 34.128107999122946], [-118.2022060000001, 34.125207999122956], [-118.203506, 34.12540799912299], [-118.20390600000016, 34.12370799912302], [-118.20830600000014, 34.124407999122965], [-118.20890600000011, 34.121807999123064], [-118.213706, 34.12260799912307], [-118.216206, 34.12320799912308], [-118.216806, 34.12080799912305], [-118.2155060000001, 34.12060799912311], [-118.21440600000012, 34.120207999123096], [-118.213506, 34.11940799912322], [-118.212906, 34.11770799912302], [-118.213706, 34.116207999123134], [-118.215006, 34.11640799912308], [-118.21710600000011, 34.117507999123085], [-118.21870600000011, 34.117807999123016], [-118.221306, 34.11980799912314], [-118.222406, 34.12100799912303], [-118.223706, 34.121607999123135], [-118.224407, 34.122307999123066], [-118.22540700000015, 34.12180799912311], [-118.226207, 34.12370799912307], [-118.228407, 34.12530799912306], [-118.2285070000001, 34.12800799912295], [-118.229607, 34.132907999123034], [-118.229607, 34.13560099912295], [-118.227751, 34.13560099912295], [-118.22787700000013, 34.13808399912294], [-118.229149, 34.13807899912285], [-118.229156, 34.13907299912289], [-118.228784, 34.13907299912289], [-118.228769, 34.14589699912277], [-118.228889, 34.14611999912285], [-118.228577, 34.14588099912278], [-118.228237, 34.14644699912288], [-118.228683, 34.14673499912293], [-118.228602, 34.14688599912278], [-118.22816300000015, 34.1468309991228], [-118.22826000000013, 34.14745199912278], [-118.227649, 34.14742299912279], [-118.227452, 34.14775499912279], [-118.22700400000012, 34.14762799912287], [-118.226939, 34.14860999912273], [-118.22623100000013, 34.149788999122784], [-118.224967, 34.14936299912289], [-118.222455, 34.14925399912281], [-118.221172, 34.14805699912281], [-118.21963, 34.14743799912283], [-118.2194760000001, 34.14695299912282], [-118.21614, 34.14694799912282], [-118.21557400000012, 34.146658999122884], [-118.2120960000001, 34.14658399912291], [-118.210933, 34.14617299912284], [-118.20877400000015, 34.14650699912281], [-118.207723, 34.147246999122814], [-118.20543200000012, 34.14743099912283], [-118.204229, 34.149278999122856], [-118.203573, 34.14969199912273], [-118.2027010000001, 34.15063299912271], [-118.19892, 34.15115399912277], [-118.198191, 34.1516259991227]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Eagle Rock", "metadata": {"sqmi": 4.25075591913, "type": "segment-of-a-city", "name": "Eagle Rock", "slug": "eagle-rock"}, "cases": 91.0, "population": 0.3958931523536065, "external_id": "eagle-rock", "slug": "eagle-rock-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/eagle-rock-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.19912354025867, 33.888730741436795], [-118.19909135090923, 33.88825339742004], [-118.19817040406151, 33.88825519193469], [-118.19792837727402, 33.88503133366695], [-118.19730389284038, 33.88503527181222], [-118.19699000000026, 33.883127999126145], [-118.19788300000027, 33.8830239991261], [-118.19780500000029, 33.882321999126184], [-118.19732000000015, 33.8824209991262], [-118.19727600000033, 33.88181399912612], [-118.20430034313723, 33.88161109788058], [-118.20611800000033, 33.888082999126084], [-118.20206700000027, 33.88811499912605], [-118.20194400000027, 33.886314999125915], [-118.20042900000026, 33.88632899912607], [-118.20056802684428, 33.888722039309606], [-118.19912354025867, 33.888730741436795]]], [[[-118.18667100000032, 33.90242099912591], [-118.18688500000016, 33.89947199912593], [-118.18765000000029, 33.89486599912596], [-118.18812558453853, 33.894876191553664], [-118.18814917625687, 33.89471969848668], [-118.1894649054186, 33.89470440593607], [-118.18988650409626, 33.90056758561338], [-118.18936087311208, 33.900569240061685], [-118.18943433442489, 33.90164079565197], [-118.18867600000027, 33.90169499912584], [-118.18867905308794, 33.90153379609553], [-118.18842035170083, 33.901536605984305], [-118.18842305750736, 33.90194717704714], [-118.1889360713866, 33.90194216307575], [-118.18893163509485, 33.902226929310594], [-118.1894777125967, 33.90222241474438], [-118.18952328324464, 33.902812315369296], [-118.18810179036139, 33.90282479573152], [-118.1881035111768, 33.90316906253992], [-118.18745131028793, 33.903173552030246], [-118.18734936109787, 33.903003842951705], [-118.1868300000004, 33.90298099912583], [-118.18667100000032, 33.90242099912591]]], [[[-118.18861700000026, 33.905628999125945], [-118.18645100000028, 33.9054179991258], [-118.18586000000023, 33.90498599912588], [-118.1866741078711, 33.9044511190716], [-118.1867710000003, 33.90367199912591], [-118.18778742131515, 33.90361433726687], [-118.18777356739399, 33.90339581141091], [-118.18892724927026, 33.90345501375038], [-118.18908000801557, 33.90373325363014], [-118.18964699051199, 33.903726874487496], [-118.18977650612199, 33.905578125741975], [-118.1896100000003, 33.90574899912589], [-118.18861700000026, 33.905628999125945]]], [[[-118.19838557785026, 33.906232632462896], [-118.19477097986014, 33.905900383711355], [-118.1943877614949, 33.90573519115312], [-118.19454969690736, 33.9052428417405], [-118.1944698811339, 33.903989606805496], [-118.19488844188464, 33.9039766124913], [-118.19482166101164, 33.90288751993622], [-118.19439519910192, 33.90288932809374], [-118.19438489379606, 33.9027496470665], [-118.19405204477432, 33.90274835595454], [-118.19420321921662, 33.905028319462694], [-118.19398037209426, 33.9058278321315], [-118.19068425107787, 33.90552527063626], [-118.19058292338642, 33.90406197441287], [-118.19167871776843, 33.904059171427946], [-118.19164612489176, 33.90358797108455], [-118.19196013072975, 33.903587649973176], [-118.19173461589726, 33.90056075572997], [-118.19389778998095, 33.90054373767008], [-118.1938382659937, 33.89986319092622], [-118.19417440532743, 33.89986074952802], [-118.19406800452956, 33.898421519425966], [-118.19307212095906, 33.898431687601644], [-118.19321556700294, 33.900379828055144], [-118.19017354101422, 33.90056657778116], [-118.18942302062159, 33.8895334811571], [-118.19396199213217, 33.889481921925224], [-118.1939394395833, 33.889168051366454], [-118.19501312100742, 33.88915454961513], [-118.19498207575874, 33.88875569335093], [-118.19726842971873, 33.888741714546825], [-118.19747112918719, 33.89284665686301], [-118.19811688224227, 33.89283952906163], [-118.19834654849218, 33.89609739934425], [-118.19896017999598, 33.89612942911352], [-118.19925719659565, 33.90039255683176], [-118.19978440531754, 33.900385661157905], [-118.19987176822698, 33.90162860514702], [-118.19931709570628, 33.90165318843739], [-118.19933049365493, 33.901935171472694], [-118.19989208218479, 33.90191518432079], [-118.19991110012357, 33.90218777586955], [-118.19934357801941, 33.902207095878836], [-118.19938368907795, 33.90301245245662], [-118.19774623485677, 33.90303566103589], [-118.19782847829072, 33.90395766608124], [-118.20030245029635, 33.904094387284594], [-118.20046212215557, 33.90642254717908], [-118.19838557785026, 33.906232632462896]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "East Compton", "metadata": {"sqmi": 0.834359225737, "type": "unincorporated-area", "name": "East Compton", "slug": "east-compton"}, "cases": 23.0, "population": 0.15307820299500832, "external_id": "east-compton", "slug": "east-compton-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/east-compton-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.293009, 34.10170899912326], [-118.289308, 34.099508999123266], [-118.284208, 34.09590899912338], [-118.284808, 34.09590899912351], [-118.28450800000012, 34.076809999123604], [-118.28570800000014, 34.07680999912369], [-118.286908, 34.07650999912369], [-118.289608, 34.07640999912368], [-118.309309, 34.07640999912364], [-118.309409, 34.10160899912327], [-118.29460900000011, 34.10180899912332], [-118.293009, 34.10170899912326]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "East Hollywood", "metadata": {"sqmi": 2.3787363778, "type": "segment-of-a-city", "name": "East Hollywood", "slug": "east-hollywood"}, "cases": 234.0, "population": 0.4712135637472937, "external_id": "east-hollywood", "slug": "east-hollywood-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/east-hollywood-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.98590697168177, 33.929752005583225], [-117.98544100000029, 33.92952701019746], [-117.98544198582002, 33.92989499736043], [-117.98289897167798, 33.928754005581105], [-117.98071698560848, 33.92825200278653], [-117.97627198583459, 33.92818500235223], [-117.97639297166938, 33.927627005578245], [-117.97629697167012, 33.924712005574385], [-117.97649499293017, 33.91731200309702], [-117.99197198583809, 33.91721300077769], [-117.9916849929255, 33.91762200074486], [-117.99243898584622, 33.91745100234174], [-117.99233399264867, 33.91804500401989], [-117.99433798603225, 33.91821300015908], [-117.99439900001842, 33.924505002269846], [-117.99743298587913, 33.924475001246655], [-118.00351298585576, 33.923077002358234], [-118.00525199056703, 33.92826800126907], [-117.99020598579895, 33.931808002322256], [-117.98590697168177, 33.929752005583225]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "East La Mirada", "metadata": {"sqmi": 1.11006524514, "type": "unincorporated-area", "name": "East La Mirada", "slug": "east-la-mirada"}, "cases": 12.0, "population": 0.10597798769281262, "external_id": "east-la-mirada", "slug": "east-la-mirada-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/east-la-mirada-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.1777348536693, 34.062299460399196], [-118.17306685363698, 34.06229246050904], [-118.17339400000023, 34.062098999123926], [-118.1733189109832, 34.06198636559942], [-118.17302300000028, 34.06212099912398], [-118.17283190173335, 34.06183335642105], [-118.17183502817716, 34.062290914076364], [-118.169256147444, 34.06228774733536], [-118.16927536651994, 34.048354602193726], [-118.16806453897017, 34.04835296862878], [-118.16823286943297, 34.04787941473156], [-118.16822513860102, 34.0466124131354], [-118.16889149816194, 34.04591209627887], [-118.16911268982604, 34.04492645782553], [-118.16939851762861, 34.04479286901199], [-118.16960384823983, 34.04419761128106], [-118.15713373095463, 34.04431404000623], [-118.15714335412788, 34.04062957035081], [-118.15733778693881, 34.04062742123656], [-118.15728320237395, 34.03626101492489], [-118.15504630571944, 34.036207934120704], [-118.15373685260893, 34.03601246093278], [-118.15265685257573, 34.03525646095645], [-118.15159785252844, 34.03407846097912], [-118.15056385254417, 34.03474446100463], [-118.15019685254391, 34.03481246101309], [-118.14647385247174, 34.033445461099376], [-118.14408091992253, 34.0334665639896], [-118.14406066157905, 34.032281437060014], [-118.14286384580458, 34.03215940825749], [-118.14287221808104, 34.03091801553211], [-118.14384259071653, 34.03091128554585], [-118.14384209677854, 34.03039648707542], [-118.14285685234337, 34.03039946118089], [-118.14284252277348, 34.02723789722135], [-118.14355351347838, 34.02627947987469], [-118.14283411058769, 34.02584779227811], [-118.14282507654612, 34.02473140254949], [-118.14322287977146, 34.024325099924674], [-118.14309034102031, 34.02424603632555], [-118.14339217943905, 34.02389263936936], [-118.13019695188058, 34.015978665439455], [-118.13040821652456, 34.015261139836845], [-118.1307364479508, 34.01530176369506], [-118.13102724212835, 34.01446716338173], [-118.1306743440788, 34.014392337016886], [-118.130774026981, 34.01407331237659], [-118.12664885164338, 34.01310946154104], [-118.12745854407366, 34.008037959322834], [-118.14753357406867, 34.00976709497764], [-118.14707347316671, 34.01343192463749], [-118.14676066575277, 34.01338826069679], [-118.14663880141666, 34.01432014860755], [-118.14696232960776, 34.014367375566415], [-118.14654768826213, 34.01767173975721], [-118.1462244718977, 34.0176110021798], [-118.14615362697589, 34.018056385190064], [-118.15365285205004, 34.019630460911664], [-118.15890151107361, 34.01061852775393], [-118.17589985215561, 34.018273460383995], [-118.17591285192178, 34.01141146037482], [-118.18123985197956, 34.012036460249846], [-118.18129380228605, 34.01566390149157], [-118.18732768432446, 34.015647148061035], [-118.18734085217558, 34.01656946011203], [-118.19223385220816, 34.01654645999698], [-118.19237985277802, 34.03323346001479], [-118.19128885277173, 34.03327446004116], [-118.1912718527834, 34.0336134600425], [-118.19129385281089, 34.03441746004169], [-118.19184585281462, 34.03441646002904], [-118.19184085280048, 34.03400446002813], [-118.19238685280425, 34.03400246001554], [-118.19262785375241, 34.06176246004635], [-118.18130585367503, 34.06175446031374], [-118.18130485369164, 34.06224946031432], [-118.1777348536693, 34.062299460399196]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "East Los Angeles", "metadata": {"sqmi": 7.46596436352, "type": "unincorporated-area", "name": "East Los Angeles", "slug": "east-los-angeles"}, "cases": 390.0, "population": 1.252690071628176, "external_id": "east-los-angeles", "slug": "east-los-angeles-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/east-los-angeles-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.06776997172146, 34.14792200588523], [-118.06746798594686, 34.13150900367181], [-118.06903398666716, 34.13139800066032], [-118.06938798622414, 34.130989003417156], [-118.06931898592258, 34.130649002723445], [-118.07439997173681, 34.13032000586392], [-118.0814489717468, 34.12937700586437], [-118.08408197175072, 34.12886200586431], [-118.09098697176098, 34.12684000586334], [-118.09315797176227, 34.13148300586977], [-118.09428798081052, 34.13521599967081], [-118.08976798585586, 34.135159004274946], [-118.08969898586867, 34.133676000852375], [-118.08750698588824, 34.1336910041355], [-118.08749598577826, 34.131275001682724], [-118.08598598583373, 34.13143200569855], [-118.08600697878217, 34.1330100003724], [-118.08399398587288, 34.133008004190074], [-118.08381897174857, 34.13371800587054], [-118.08321797174547, 34.140324005878995], [-118.08368697174598, 34.14084100587976], [-118.08307998586626, 34.140466000839375], [-118.08152898587804, 34.140472004162575], [-118.08152198586038, 34.139591000860726], [-118.07892198588127, 34.139609004139565], [-118.07895998587969, 34.142250004147385], [-118.08350097879139, 34.14222000173377], [-118.0832699858708, 34.14470600419962], [-118.08670897881169, 34.14470700165893], [-118.08696597751269, 34.145191000551726], [-118.08643098588954, 34.14519600412917], [-118.08639197907169, 34.145546000536584], [-118.08459398589181, 34.145747004112025], [-118.08459697878395, 34.146214000512906], [-118.08250498588394, 34.14623000414144], [-118.08250198577502, 34.145720001502724], [-118.08049798571061, 34.14572700469697], [-118.08043798586714, 34.14524000082559], [-118.07986098587249, 34.14524100418194], [-118.07988298586474, 34.14476100083494], [-118.07923098587437, 34.14476300417194], [-118.07957897821865, 34.14624800049935], [-118.07810498588101, 34.14625800413971], [-118.07796198019733, 34.14663799916634], [-118.07773698567618, 34.14661900477561], [-118.07775597869303, 34.14739700171521], [-118.07371898602852, 34.14786200133115], [-118.07339199920165, 34.14776502469844], [-118.07342397872857, 34.15021400107754], [-118.06782399323541, 34.15028700491922], [-118.06776997172146, 34.14792200588523]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "East Pasadena", "metadata": {"sqmi": 1.30792712424, "type": "unincorporated-area", "name": "East Pasadena", "slug": "east-pasadena"}, "cases": 0.0, "population": 0, "external_id": "east-pasadena", "slug": "east-pasadena-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/east-pasadena-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.08045400000019, 34.09946399912345], [-118.08046200000037, 34.09924399912346], [-118.08146567451566, 34.09927168669631], [-118.0814470000003, 34.09946399912345], [-118.08045400000019, 34.09946399912345]]], [[[-118.08242419637058, 34.100010549544464], [-118.08241000000041, 34.09924299912351], [-118.08338400000027, 34.09924299912349], [-118.08337200000022, 34.09945099912344], [-118.08304300000025, 34.099510999123424], [-118.0830240000003, 34.09977599912343], [-118.08365206046896, 34.09977599912343], [-118.08365016843156, 34.1000043071483], [-118.08242419637058, 34.100010549544464]]], [[[-118.07954252363652, 34.1012420274355], [-118.07953495531764, 34.09991288702816], [-118.08124692246061, 34.09992905087876], [-118.0812420000003, 34.10120199912346], [-118.08044100000023, 34.10109799912346], [-118.08043300000023, 34.101352999123414], [-118.08121474922872, 34.102544456894144], [-118.07954960616232, 34.1025019695304], [-118.07954252363652, 34.1012420274355]]], [[[-118.08326974812468, 34.10253543777262], [-118.08326818476246, 34.10239227508149], [-118.08297173343126, 34.10239446694963], [-118.08295400000027, 34.10218399912343], [-118.08228600000022, 34.10218699912336], [-118.08227700000042, 34.10129899912347], [-118.0836197037223, 34.10131907257437], [-118.0835810000003, 34.10263599912338], [-118.08326974812468, 34.10253543777262]]], [[[-118.08473594810985, 34.10303084474523], [-118.08449994722065, 34.10295135267634], [-118.08449144651883, 34.10248721612322], [-118.08396819963406, 34.102488322548126], [-118.08394600000028, 34.10087699912348], [-118.08224000000028, 34.100833999123466], [-118.08226000000028, 34.100464999123474], [-118.08457300000026, 34.10043099912343], [-118.08457800000033, 34.099571999123484], [-118.08520200000031, 34.09950399912348], [-118.0852330000003, 34.09908099912348], [-118.08593000000033, 34.099081999123484], [-118.08590100000038, 34.099708999123486], [-118.08678547356898, 34.099689251705406], [-118.08678362863613, 34.09953427292643], [-118.08742437617528, 34.09943746818752], [-118.08850400000031, 34.099650999123455], [-118.08850300000032, 34.09930799912343], [-118.08956000000029, 34.09929099912342], [-118.08957800000026, 34.0999549991235], [-118.08915300000025, 34.09996599912345], [-118.08917200000018, 34.10030999912345], [-118.0896160000003, 34.10032499912349], [-118.08974206334871, 34.102240681187695], [-118.09031112284897, 34.10223712347689], [-118.09027800000023, 34.10236799912347], [-118.08973200000031, 34.10236699912342], [-118.08974201116496, 34.10292507245122], [-118.08473594810985, 34.10303084474523]]], [[[-118.07616300000016, 34.10200599912334], [-118.07577300000023, 34.100229999123435], [-118.07568900000038, 34.09842199912363], [-118.07534200000025, 34.09842699912343], [-118.07503900000036, 34.09800999912355], [-118.07344500000023, 34.09709699912352], [-118.07333097787667, 34.09056297992054], [-118.08762800000031, 34.0952839991235], [-118.08952000000023, 34.09834199912345], [-118.08935300000029, 34.09902299912346], [-118.08887000000028, 34.0989649991235], [-118.08878700000031, 34.098511999123495], [-118.0879974063735, 34.09856177363026], [-118.08799838719901, 34.098677183993445], [-118.08767056505721, 34.09867897316226], [-118.08766800000032, 34.09854199912351], [-118.08671909419176, 34.09856447128157], [-118.08670274849727, 34.09788747676352], [-118.08622095521345, 34.09788900840079], [-118.0862960000003, 34.097409999123535], [-118.08669300000032, 34.097409999123535], [-118.08668906419813, 34.09690536962112], [-118.08630882701175, 34.0969083795907], [-118.08634800000026, 34.096708999123535], [-118.08609110817802, 34.09671146923716], [-118.08608683686107, 34.096523958396716], [-118.08493107511742, 34.09653095722505], [-118.0849347557487, 34.096965671129695], [-118.08370764626028, 34.09697281837061], [-118.0837248451352, 34.09844247582768], [-118.08308427215613, 34.09844654665598], [-118.0830851585705, 34.098599239594684], [-118.08288200000027, 34.09860699912346], [-118.08299500000031, 34.098971999123435], [-118.0823692164157, 34.09896115021227], [-118.0823692093209, 34.09793456005314], [-118.08280100000016, 34.09715999912346], [-118.0822260000003, 34.0937989991235], [-118.08143200000026, 34.0935819991236], [-118.08147800000037, 34.098971999123435], [-118.07764800000031, 34.09887199912341], [-118.0778230000003, 34.10144399912346], [-118.0775560000002, 34.101441999123296], [-118.07753228121126, 34.10168906984225], [-118.07720631092455, 34.10169001343458], [-118.07720980048809, 34.10315401865949], [-118.07629000000028, 34.10316899912348], [-118.07616300000016, 34.10200599912334]]], [[[-118.06788798569245, 34.13072600471117], [-118.06787098579795, 34.12976300116216], [-118.06735398592652, 34.12978800384528], [-118.0672899859459, 34.12535500368531], [-118.06772998579083, 34.12532500069267], [-118.06794898588251, 34.12414600256586], [-118.06815800000035, 34.12398599912318], [-118.06716200000028, 34.124144999123196], [-118.06702000000027, 34.1230189991232], [-118.0664990000003, 34.123362999123124], [-118.06132000000025, 34.124101999123084], [-118.06123900000028, 34.12368099912317], [-118.06054400000014, 34.12391899912315], [-118.06047000000015, 34.12353099912318], [-118.05984800000029, 34.12362199912316], [-118.05961500000028, 34.12249599912319], [-118.05833100000024, 34.122674999123184], [-118.05791700000032, 34.12061799912321], [-118.05713800000021, 34.120726999123086], [-118.0565760000003, 34.1183369991232], [-118.0630370000003, 34.117413999123194], [-118.06374900000031, 34.12099599912315], [-118.06804697924503, 34.120399002448245], [-118.06832398592027, 34.11956300276056], [-118.0728779858923, 34.118664002045804], [-118.07412598725422, 34.117857004572095], [-118.07392098595635, 34.11745800362762], [-118.07415998536734, 34.117440000799775], [-118.07387798584763, 34.11675700238249], [-118.07312698595771, 34.11692000304789], [-118.0735869858707, 34.11354900416237], [-118.07937898587463, 34.11352400080336], [-118.07946000004766, 34.114040002270784], [-118.07992598536978, 34.11403300013011], [-118.07988598590055, 34.11390600259944], [-118.08047498585752, 34.1137760023054], [-118.08046398588434, 34.11351900412583], [-118.08230198586499, 34.11350700003227], [-118.08220998588702, 34.106267004117385], [-118.08332198586989, 34.10626399996233], [-118.08331998578055, 34.10588100162273], [-118.08272398587835, 34.10590900415662], [-118.08275397843796, 34.10610800038177], [-118.08240198587801, 34.106108004156695], [-118.08220097175588, 34.10559800583366], [-118.08214498604892, 34.104011005112476], [-118.08390798572066, 34.104007000043865], [-118.0838779860286, 34.103688005337396], [-118.08450197188154, 34.103708002029066], [-118.08448598577694, 34.103896004508336], [-118.08499797196656, 34.10392200177136], [-118.08500298589094, 34.10525200410901], [-118.08806298588166, 34.10523100003194], [-118.08806398580127, 34.10489900128592], [-118.08790198596314, 34.10491000367156], [-118.08786698592684, 34.10380900513553], [-118.08854397885938, 34.10381800149918], [-118.0885499859246, 34.1041380039542], [-118.09014197194915, 34.10412200184356], [-118.09019998597694, 34.104699003511094], [-118.090487978686, 34.10467300260842], [-118.09048697882136, 34.10521500049666], [-118.08857098589317, 34.10522800411072], [-118.0885909787634, 34.10623000053933], [-118.08666398589689, 34.106249004087836], [-118.08669198589006, 34.10810100411938], [-118.09105798586977, 34.108068000863476], [-118.091173985876, 34.11402299994215], [-118.09019099990543, 34.1140210029372], [-118.09015100000023, 34.11440299912322], [-118.09020199204006, 34.114908005277556], [-118.09119198587123, 34.11495900085413], [-118.09135300000032, 34.12164399912327], [-118.09121900000027, 34.12218299912325], [-118.09030600000034, 34.123365999123244], [-118.09023100000027, 34.12394199912318], [-118.09040998569466, 34.124904001025925], [-118.08933298597607, 34.12501000347186], [-118.08935897278921, 34.12533700821679], [-118.08808198537074, 34.12589500132513], [-118.08825097913584, 34.12695600511985], [-118.08794598566627, 34.12705900186517], [-118.08820298566029, 34.127577001873675], [-118.08998598600888, 34.12703500291717], [-118.08999198555819, 34.126410001639044], [-118.09077497240425, 34.126115007570114], [-118.09098697176098, 34.12684000586334], [-118.08493997175192, 34.12865800586422], [-118.0814489717468, 34.12937700586437], [-118.07439997173681, 34.13032000586392], [-118.06788798569245, 34.13072600471117]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "East San Gabriel", "metadata": {"sqmi": 2.18274231728, "type": "unincorporated-area", "name": "East San Gabriel", "slug": "east-san-gabriel"}, "cases": 14.0, "population": 0.24034334763948498, "external_id": "east-san-gabriel", "slug": "east-san-gabriel-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/east-san-gabriel-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.248307, 34.085909999123466], [-118.24880700000013, 34.08540999912357], [-118.24890700000012, 34.083809999123595], [-118.249807, 34.082509999123495], [-118.248107, 34.080809999123595], [-118.2490070000001, 34.078009999123516], [-118.24880700000013, 34.07700999912362], [-118.247407, 34.07251099912374], [-118.244407, 34.06981099912366], [-118.245807, 34.06881099912385], [-118.247707, 34.06581099912388], [-118.248507, 34.065410999123756], [-118.249107, 34.06551099912368], [-118.25160700000015, 34.063110999123765], [-118.252307, 34.06231099912379], [-118.254207, 34.05931099912385], [-118.25523400000012, 34.05805899912392], [-118.256595, 34.058954999123756], [-118.25950700000013, 34.06191099912397], [-118.25990700000013, 34.0646109991238], [-118.261318, 34.069746999123645], [-118.264607, 34.07091099912361], [-118.27300800000012, 34.07480999912358], [-118.274408, 34.07530999912364], [-118.27190800000012, 34.079209999123485], [-118.269808, 34.08140999912357], [-118.266708, 34.08650999912349], [-118.26610800000012, 34.08640999912353], [-118.2645080000001, 34.08560999912344], [-118.263408, 34.08730999912355], [-118.25990700000013, 34.08580999912346], [-118.25920700000013, 34.08990999912353], [-118.258507, 34.09160999912347], [-118.254507, 34.094609999123485], [-118.253607, 34.095708999123396], [-118.25180700000011, 34.09860899912342], [-118.250607, 34.101008999123444], [-118.249807, 34.09930899912341], [-118.244607, 34.095808999123335], [-118.24400700000018, 34.095608999123314], [-118.243907, 34.095009999123405], [-118.2442070000001, 34.09450999912347], [-118.245207, 34.09380999912345], [-118.2451070000001, 34.09240999912341], [-118.24530700000012, 34.09170999912344], [-118.24560700000012, 34.09130999912338], [-118.24370700000011, 34.09050999912354], [-118.243607, 34.0892099991235], [-118.246307, 34.08760999912351], [-118.248307, 34.085909999123466]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Echo Park", "metadata": {"sqmi": 2.39828121013, "type": "segment-of-a-city", "name": "Echo Park", "slug": "echo-park"}, "cases": 190.0, "population": 0.5623996397515834, "external_id": "echo-park", "slug": "echo-park-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/echo-park-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.39463388187708, 34.674006343751735], [-118.38152492940901, 34.673975697162916], [-118.38151838125953, 34.66670802800072], [-118.36834644544045, 34.66690373478488], [-118.36836945361495, 34.662831008680726], [-118.36741517171961, 34.662833894566475], [-118.36693286182201, 34.66355181255327], [-118.36626517990618, 34.66318245896136], [-118.36596307934037, 34.66352879466963], [-118.36531554382984, 34.66333050864169], [-118.36523450953436, 34.66355225260418], [-118.36409468142247, 34.66335154726451], [-118.35960564354032, 34.66342718023054], [-118.3596436208913, 34.65974836300545], [-118.35895046417315, 34.659725268134075], [-118.355944951554, 34.65903361504448], [-118.35589454354545, 34.65974971689978], [-118.34200057682048, 34.659752091816365], [-118.34193448117229, 34.6450462977256], [-118.36395031417817, 34.64500977936099], [-118.36393494143661, 34.64140969804397], [-118.37705086789477, 34.64136573099436], [-118.37708549561563, 34.64492917936304], [-118.39458324333593, 34.644862788494365], [-118.39456925757831, 34.655778460541896], [-118.40772403675865, 34.6557424703629], [-118.40776264102543, 34.65941992776606], [-118.43041073366388, 34.65943725166697], [-118.43048784601469, 34.66660947903074], [-118.41726197545313, 34.666587304256275], [-118.41730070685684, 34.673871772097286], [-118.39463388187708, 34.674006343751735]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Elizabeth Lake", "metadata": {"sqmi": 6.30556759372, "type": "unincorporated-area", "name": "Elizabeth Lake", "slug": "elizabeth-lake"}, "cases": 1.0, "population": 0.01661129568106312, "external_id": "elizabeth-lake", "slug": "elizabeth-lake-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/elizabeth-lake-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.00574300000021, 34.09964799912341], [-118.001097, 34.098071999123505], [-118.000304, 34.099686999123406], [-117.997465, 34.098680999123495], [-117.99789800000013, 34.097968999123424], [-117.99865000000015, 34.09728099912348], [-117.997651, 34.096894999123414], [-118.00186200000012, 34.0882619991236], [-117.998926, 34.0872649991236], [-117.998653, 34.08700699912365], [-118.00023900000028, 34.08292099912375], [-118.00105500000015, 34.079112999123794], [-118.00121500000023, 34.076473999123714], [-118.001434, 34.07540799912371], [-118.00489900000018, 34.065160999123925], [-118.0046320000002, 34.06498899912382], [-118.00464200000013, 34.064376999123844], [-118.0059630000002, 34.06419699912382], [-118.0064020000002, 34.06358399912391], [-118.007064, 34.06358099912393], [-118.007712, 34.063227999123924], [-118.00820400000015, 34.062522999123836], [-118.00896800000012, 34.0626019991239], [-118.00979700000016, 34.06087799912392], [-118.01036700000023, 34.06106899912393], [-118.00966700000018, 34.06250999912378], [-118.01030800000018, 34.06276099912386], [-118.01052, 34.06368999912387], [-118.01141200000022, 34.06359899912392], [-118.01164800000018, 34.063131999123904], [-118.01142400000013, 34.06307199912392], [-118.011115, 34.06333299912391], [-118.0115940000002, 34.062398999123886], [-118.01184400000017, 34.062507999123895], [-118.0124810000002, 34.06105399912391], [-118.00742800000022, 34.057790999123995], [-118.00927700000024, 34.05236099912404], [-118.01002400000021, 34.050722999124], [-118.0120540000001, 34.047705999124], [-118.01373900000029, 34.04595899912409], [-118.01631500000016, 34.044007999124034], [-118.02179100000023, 34.04139299912414], [-118.02466900000022, 34.04400299912413], [-118.02575700000014, 34.043094999124065], [-118.02799900000012, 34.04490999912404], [-118.0258870000002, 34.04620999912398], [-118.02632300000026, 34.046650999124026], [-118.026544, 34.04645799912405], [-118.0278020000002, 34.0474149991241], [-118.02825700000012, 34.04704599912404], [-118.03122200000027, 34.04949899912402], [-118.03371800000029, 34.051903999124036], [-118.03426400000016, 34.05153599912398], [-118.03472000000022, 34.051856999124105], [-118.034308, 34.052207999124064], [-118.03427600000016, 34.05325499912397], [-118.03381400000015, 34.053199999123976], [-118.033868, 34.05378599912396], [-118.03440700000017, 34.053822999124016], [-118.034604, 34.056025999123975], [-118.03629800000012, 34.0560349991239], [-118.03619900000018, 34.056758999123986], [-118.037299, 34.056789999123936], [-118.03730000000019, 34.0574099991239], [-118.03815200000017, 34.057411999124], [-118.03814100000015, 34.05859599912385], [-118.0401200000003, 34.05860199912393], [-118.04010200000022, 34.05803699912395], [-118.041029, 34.05803699912395], [-118.0410550000002, 34.0586079991239], [-118.04393400000018, 34.058631999123946], [-118.045163, 34.0590839991239], [-118.05359700000012, 34.05908799912389], [-118.05350000000017, 34.05730999912396], [-118.05486500000018, 34.05717899912397], [-118.054793, 34.05599199912393], [-118.05564000000028, 34.05603899912395], [-118.05564000000028, 34.056746999123995], [-118.05632700000018, 34.056760999123945], [-118.05655800000022, 34.0590249991239], [-118.05784100000017, 34.059088999123894], [-118.05785600000011, 34.05859699912393], [-118.05815700000014, 34.05859699912393], [-118.05813800000021, 34.05944599912396], [-118.057843, 34.05949999912394], [-118.05784800000016, 34.06070999912387], [-118.05689200000018, 34.06077799912393], [-118.05692500000018, 34.061690999123805], [-118.05640400000013, 34.06171299912395], [-118.0563920000001, 34.06218399912387], [-118.0556690000002, 34.06218899912384], [-118.05567100000013, 34.06241399912389], [-118.05534900000028, 34.06239299912382], [-118.05540500000025, 34.063390999123854], [-118.05580300000024, 34.06338199912385], [-118.05580700000013, 34.06370899912383], [-118.05654300000022, 34.06363399912385], [-118.05655200000015, 34.06403399912391], [-118.05678600000016, 34.06402999912381], [-118.05679400000017, 34.06360799912403], [-118.057374, 34.06360799912387], [-118.05736900000015, 34.06388299912387], [-118.05910300000022, 34.063807999123796], [-118.05924500000015, 34.06362299912391], [-118.05964500000015, 34.0636129991239], [-118.05965900000018, 34.0638129991239], [-118.05974900000017, 34.06366499912392], [-118.06014400000018, 34.06365599912389], [-118.06014600000016, 34.06387699912389], [-118.06037200000011, 34.063873999123885], [-118.06035800000016, 34.064044999123894], [-118.06062800000014, 34.06403599912383], [-118.06059900000015, 34.064402999123836], [-118.06143900000016, 34.064437999123925], [-118.06142600000021, 34.06359699912392], [-118.06315100000026, 34.06360699912392], [-118.06314900000018, 34.06409999912388], [-118.06354600000017, 34.06404899912394], [-118.06355200000017, 34.06371399912383], [-118.06397200000026, 34.06366499912392], [-118.06400100000019, 34.063305999123905], [-118.06475300000014, 34.06326799912388], [-118.06509600000017, 34.063417999123935], [-118.06553100000032, 34.063088999123885], [-118.0665270000002, 34.06419699912382], [-118.06834300000018, 34.06431799912383], [-118.06861400000032, 34.06411199912383], [-118.06895800000015, 34.06268899912387], [-118.07036, 34.062690999123916], [-118.06956500000018, 34.06422899912386], [-118.06924000000022, 34.06410699912378], [-118.0689080000002, 34.06433299912384], [-118.069121, 34.06569899912392], [-118.06895900000018, 34.065781999123764], [-118.068222, 34.06488199912388], [-118.06756500000029, 34.065165999123856], [-118.072231, 34.069679999123785], [-118.0728540000002, 34.07095699912372], [-118.07292700000032, 34.07226599912368], [-118.055601, 34.072451999123885], [-118.05575200000014, 34.08029399912365], [-118.05606800000017, 34.08042999912366], [-118.05575500000023, 34.0807789991237], [-118.055777, 34.08409199912366], [-118.055956, 34.08455899912358], [-118.05618300000012, 34.08491999912364], [-118.05676100000014, 34.08510299912354], [-118.05765100000012, 34.08285899912365], [-118.05985800000012, 34.083242999123584], [-118.06003100000014, 34.08270399912356], [-118.06047000000012, 34.08264199912356], [-118.06058200000015, 34.08227299912366], [-118.05928600000016, 34.082107999123494], [-118.05966400000017, 34.08128799912366], [-118.0630020000003, 34.08118899912365], [-118.062032, 34.085998999123625], [-118.06220700000014, 34.08690199912355], [-118.05864600000011, 34.08571699912358], [-118.05836100000018, 34.08619499912359], [-118.05665700000013, 34.085358999123706], [-118.0561780000002, 34.0866719991236], [-118.056189, 34.08707099912355], [-118.05594200000023, 34.08721399912358], [-118.05502500000017, 34.08945499912353], [-118.055562, 34.08963699912356], [-118.05581500000011, 34.089302999123646], [-118.05657600000012, 34.089155999123626], [-118.05679100000023, 34.08955599912358], [-118.051951, 34.090302999123544], [-118.05210500000015, 34.09098199912354], [-118.05184200000028, 34.09101699912355], [-118.05170600000022, 34.090336999123615], [-118.04278, 34.09157599912347], [-118.04297300000017, 34.0924239991234], [-118.042423, 34.092536999123475], [-118.04221000000021, 34.09166199912352], [-118.03996000000016, 34.0920009991235], [-118.04001400000023, 34.09231999912351], [-118.03870400000014, 34.09248599912351], [-118.0386440000002, 34.092189999123505], [-118.03621900000012, 34.09254899912353], [-118.03624900000013, 34.0933409991235], [-118.0347680000002, 34.093597999123524], [-118.03491400000021, 34.09399299912354], [-118.03428800000016, 34.09389699912351], [-118.03344300000018, 34.094122999123485], [-118.03290100000017, 34.09407699912349], [-118.03322100000021, 34.096399999123356], [-118.02854502972912, 34.097089231202155], [-118.0281420000001, 34.09703599912351], [-118.02791970732932, 34.0971926820613], [-118.02737709992856, 34.09683954986519], [-118.02574609412284, 34.097823892109425], [-118.02581813047559, 34.09674058512515], [-118.02555394455366, 34.096714481623145], [-118.02560260888261, 34.09631745961805], [-118.02178051417602, 34.098228992445236], [-118.02187083146423, 34.09839533166656], [-118.0203170000001, 34.09919099912338], [-118.0201250000001, 34.09652799912344], [-118.017388, 34.0968269991235], [-118.01638600000018, 34.09672799912348], [-118.012932, 34.09840399912345], [-118.01207, 34.09924899912338], [-118.01122, 34.09966899912337], [-118.010283, 34.09956499912343], [-118.009566, 34.10094599912344], [-118.00574300000021, 34.09964799912341]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "El Monte", "metadata": {"sqmi": 9.69174808989, "type": "standalone-city", "name": "El Monte", "slug": "el-monte"}, "cases": 160.0, "population": 1.1726766344180592, "external_id": "el-monte", "slug": "el-monte-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/el-monte-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.40205900000015, 33.931494999125654], [-118.39801500000014, 33.93088599912554], [-118.380286, 33.93092299912541], [-118.378726, 33.930544999125594], [-118.37872400000015, 33.929007999125545], [-118.37842898371586, 33.92900800175238], [-118.37838297917543, 33.919734001560904], [-118.37639499305293, 33.91973100322599], [-118.37640497921032, 33.917218001415634], [-118.37432499301596, 33.917186003367576], [-118.37434098050281, 33.91630600022576], [-118.378388, 33.916374999125665], [-118.37868000000014, 33.91488999912567], [-118.3787010000002, 33.90190499912588], [-118.40170100000024, 33.901959999125765], [-118.414413, 33.90189599912582], [-118.41550200000017, 33.90173499912576], [-118.41560400000017, 33.90189099912577], [-118.41742600000018, 33.90167099912583], [-118.41950900000019, 33.906184999125884], [-118.42327939601124, 33.90486737284448], [-118.42417699376662, 33.90731599916022], [-118.42457100565737, 33.90771101068051], [-118.42568301464692, 33.90973899603785], [-118.42666202029032, 33.91100300133559], [-118.42724701404295, 33.91092397798683], [-118.42733198255732, 33.91104698503718], [-118.42891497491517, 33.91471699350963], [-118.43013647438055, 33.91676320708832], [-118.4298150000001, 33.91672699912565], [-118.42944700000015, 33.91631799912566], [-118.4222210000002, 33.916328999125604], [-118.4222220000002, 33.91995699912571], [-118.42439100000016, 33.91995799912563], [-118.42439600000013, 33.92176999912552], [-118.42657100000024, 33.92176899912559], [-118.42657400000012, 33.9235829991256], [-118.42766000000012, 33.92358199912559], [-118.42766700000016, 33.92720299912558], [-118.42875400000021, 33.92720099912571], [-118.428775, 33.93096999912551], [-118.425423, 33.93135099912551], [-118.40205900000015, 33.931494999125654]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "El Segundo", "metadata": {"sqmi": 5.45900812963, "type": "standalone-city", "name": "El Segundo", "slug": "el-segundo"}, "cases": 35.0, "population": 0.22812644649167502, "external_id": "el-segundo", "slug": "el-segundo-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/el-segundo-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.17799421052638, 34.09860899912342], [-118.15529, 34.09867199912344], [-118.155463, 34.09751499912345], [-118.156191, 34.09650799912349], [-118.159498, 34.094170999123456], [-118.15935300000011, 34.094529999123345], [-118.160673, 34.093740999123455], [-118.160496, 34.07513099912369], [-118.161761, 34.07463499912366], [-118.161562, 34.07297099912378], [-118.161717, 34.07179299912374], [-118.163371, 34.06974699912387], [-118.162032, 34.069673999123786], [-118.164011, 34.06571199912374], [-118.164433, 34.06450599912381], [-118.16483500000012, 34.06228299912383], [-118.17138700000018, 34.06228999912394], [-118.172831, 34.06183199912377], [-118.173023, 34.06212099912393], [-118.17331800000015, 34.061984999123794], [-118.173394, 34.06209899912383], [-118.173064, 34.06229199912391], [-118.17907800000013, 34.0622969991239], [-118.18130200000014, 34.0622489991238], [-118.181303, 34.061753999123866], [-118.192705, 34.0617309991237], [-118.192805, 34.06391099912392], [-118.197305, 34.06481099912375], [-118.196105, 34.06630999912371], [-118.19530500000012, 34.0690099991236], [-118.19400500000012, 34.07580999912377], [-118.193305, 34.078609999123536], [-118.19370500000014, 34.07960999912369], [-118.193605, 34.079909999123494], [-118.193205, 34.080709999123556], [-118.190805, 34.08320999912352], [-118.18740500000015, 34.08620999912353], [-118.184305, 34.08580999912346], [-118.184305, 34.086908999123416], [-118.18410500000016, 34.08770899912359], [-118.17799437103525, 34.10275336728524], [-118.17799421052638, 34.09860899912342]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "El Sereno", "metadata": {"sqmi": 4.16777889868, "type": "segment-of-a-city", "name": "El Sereno", "slug": "el-sereno"}, "cases": 103.0, "population": 0.45237224160683875, "external_id": "el-sereno", "slug": "el-sereno-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/el-sereno-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.225402, 34.0739299991236], [-118.225106, 34.07190999912367], [-118.226906, 34.07180999912379], [-118.230006, 34.071110999123654], [-118.23540600000011, 34.067410999123744], [-118.235906, 34.06691099912367], [-118.239207, 34.067810999123694], [-118.23980700000011, 34.067610999123694], [-118.240307, 34.06711099912365], [-118.24180700000011, 34.06771099912384], [-118.247407, 34.07251099912374], [-118.2490070000001, 34.078009999123516], [-118.248107, 34.080809999123595], [-118.249807, 34.082509999123495], [-118.24890700000012, 34.083809999123595], [-118.24880700000013, 34.08540999912357], [-118.246307, 34.08760999912351], [-118.243607, 34.0892099991235], [-118.24370700000011, 34.09050999912354], [-118.24560700000012, 34.09130999912338], [-118.24530700000012, 34.09170999912344], [-118.2451070000001, 34.09240999912341], [-118.245207, 34.09380999912345], [-118.2442070000001, 34.09450999912347], [-118.243907, 34.095009999123405], [-118.24400700000018, 34.095608999123314], [-118.2434070000001, 34.094609999123485], [-118.23660000000015, 34.08823799912337], [-118.23110600000015, 34.08530999912353], [-118.229406, 34.083909999123534], [-118.22740600000016, 34.08290999912356], [-118.226906, 34.08100999912357], [-118.226306, 34.08000999912354], [-118.22661800000013, 34.079945999123645], [-118.225402, 34.0739299991236]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Elysian Park", "metadata": {"sqmi": 1.64508429808, "type": "segment-of-a-city", "name": "Elysian Park", "slug": "elysian-park"}, "cases": 9.0, "population": 0.05712109672505712, "external_id": "elysian-park", "slug": "elysian-park-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/elysian-park-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.228006, 34.08830999912348], [-118.22740600000016, 34.08290999912356], [-118.229406, 34.083909999123534], [-118.23110600000015, 34.08530999912353], [-118.23660000000015, 34.08823799912337], [-118.2434070000001, 34.094609999123485], [-118.24400700000018, 34.095608999123314], [-118.244607, 34.095808999123335], [-118.249807, 34.09930899912341], [-118.250807, 34.101308999123404], [-118.253407, 34.10430899912336], [-118.255807, 34.10540899912328], [-118.25650700000011, 34.10590899912326], [-118.25350700000016, 34.1085089991233], [-118.24910700000017, 34.10860899912322], [-118.24640700000015, 34.107708999123304], [-118.243107, 34.105808999123184], [-118.242207, 34.10460899912327], [-118.24240700000011, 34.1013089991233], [-118.24200700000016, 34.09930899912338], [-118.240307, 34.09660899912335], [-118.238407, 34.09480899912341], [-118.23330700000011, 34.093609999123366], [-118.232207, 34.09320999912347], [-118.230606, 34.09220999912347], [-118.22860600000014, 34.08990999912355], [-118.228006, 34.08830999912348]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Elysian Valley", "metadata": {"sqmi": 0.789759467071, "type": "segment-of-a-city", "name": "Elysian Valley", "slug": "elysian-valley"}, "cases": 24.0, "population": 0.10171215460247499, "external_id": "elysian-valley", "slug": "elysian-valley-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/elysian-valley-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.52391700000014, 34.186503999122294], [-118.518417, 34.186403999122305], [-118.518517, 34.182504999122315], [-118.516417, 34.1824049991224], [-118.516417, 34.18090499912246], [-118.518517, 34.18090499912231], [-118.51851800000011, 34.18000199912236], [-118.509917, 34.18000499912242], [-118.507617, 34.17990499912238], [-118.507617, 34.17950499912239], [-118.505817, 34.17950499912237], [-118.50593400000012, 34.172127999122345], [-118.49966200000013, 34.17210799912244], [-118.498916, 34.17192199912239], [-118.498065, 34.17113999912251], [-118.49629700000011, 34.16833799912247], [-118.495663, 34.167606999122455], [-118.49437800000018, 34.1669159991226], [-118.49251900000012, 34.16662499912253], [-118.492516, 34.16530499912248], [-118.49008900000011, 34.165112999122584], [-118.47748700000011, 34.16511299912252], [-118.47596800000011, 34.16499199912247], [-118.474749, 34.16458599912259], [-118.472215, 34.16270499912256], [-118.471677, 34.16257999912253], [-118.47079, 34.16276399912256], [-118.470332, 34.16315099912252], [-118.46996, 34.163774999122545], [-118.469932, 34.158840999122695], [-118.46887800000016, 34.15510299912261], [-118.468524, 34.15293399912268], [-118.4685230000001, 34.15165799912272], [-118.469134, 34.14983099912269], [-118.47078100000016, 34.14645799912285], [-118.47131600000016, 34.14462999912281], [-118.47171600000011, 34.13762299912291], [-118.472559, 34.13386299912297], [-118.474133, 34.129844999122966], [-118.476115, 34.126005999122974], [-118.47763700000012, 34.125944999123114], [-118.478241, 34.12618399912304], [-118.478519, 34.126655999123], [-118.479364, 34.12951599912305], [-118.47998500000011, 34.13001299912292], [-118.48806700000016, 34.12995799912298], [-118.490015, 34.13060599912304], [-118.490415, 34.131205999122926], [-118.4928150000001, 34.13110599912298], [-118.494415, 34.130105999122975], [-118.49601500000014, 34.130005999122936], [-118.496815, 34.1305059991229], [-118.500916, 34.12910599912313], [-118.5022160000001, 34.12950599912306], [-118.502016, 34.13060599912289], [-118.5026160000001, 34.12840599912297], [-118.50411600000014, 34.128005999123026], [-118.508516, 34.131205999122926], [-118.51041600000013, 34.130705999122924], [-118.510716, 34.13030599912292], [-118.52711600000013, 34.12910599912314], [-118.526381, 34.13256099912293], [-118.525955, 34.13381899912295], [-118.52186700000014, 34.14194899912273], [-118.52135700000017, 34.14316999912286], [-118.521267, 34.14429099912278], [-118.52145900000014, 34.14699899912286], [-118.5226930000001, 34.147624999122684], [-118.52324, 34.14767499912268], [-118.52375600000013, 34.147387999122834], [-118.52413600000011, 34.146400999122775], [-118.52598, 34.145353999122726], [-118.52629, 34.14492199912285], [-118.526317, 34.14420599912277], [-118.5271510000001, 34.14415599912281], [-118.527131, 34.14320899912283], [-118.527879, 34.14217999912288], [-118.528283, 34.14201399912289], [-118.52961400000015, 34.14345399912275], [-118.528302, 34.143476999122775], [-118.52815300000012, 34.14415199912272], [-118.530177, 34.144970999122826], [-118.53046400000012, 34.14684399912277], [-118.53045400000013, 34.14825199912279], [-118.53022900000013, 34.14858599912274], [-118.530477, 34.148912999122736], [-118.53050700000011, 34.14931799912273], [-118.53045600000011, 34.149606999122724], [-118.53015400000014, 34.14986099912284], [-118.528688, 34.14994199912266], [-118.527823, 34.14975599912274], [-118.527542, 34.14920599912274], [-118.527745, 34.14859299912272], [-118.52738100000015, 34.14831299912267], [-118.527117, 34.147704999122745], [-118.526717, 34.147892999122654], [-118.52654500000014, 34.148284999122794], [-118.526484, 34.1505059991227], [-118.52574400000012, 34.15113999912266], [-118.52571500000012, 34.15230599912272], [-118.525207, 34.153526999122704], [-118.525504, 34.15416999912268], [-118.5258970000001, 34.15445599912262], [-118.528717, 34.15450499912269], [-118.527317, 34.15850499912255], [-118.527317, 34.186492999122315], [-118.52391700000014, 34.186503999122294]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Encino", "metadata": {"sqmi": 9.49970700034, "type": "segment-of-a-city", "name": "Encino", "slug": "encino"}, "cases": 84.0, "population": 0.4517100451710045, "external_id": "encino", "slug": "encino-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/encino-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.305408, 34.025711999124255], [-118.2914080000001, 34.025511999124234], [-118.291502, 34.01841599912441], [-118.279743, 34.01846799912429], [-118.28080700000015, 34.01691299912441], [-118.281107, 34.01591299912426], [-118.28120700000012, 34.01401299912447], [-118.281107, 34.011012999124475], [-118.2827070000001, 34.011112999124464], [-118.290007, 34.01081299912435], [-118.318008, 34.01091199912451], [-118.31800800000012, 34.01831199912425], [-118.317708, 34.01891199912424], [-118.31760800000012, 34.0204119991243], [-118.317708, 34.02561199912427], [-118.305408, 34.025711999124255]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Exposition Park", "metadata": {"sqmi": 1.84679077622, "type": "segment-of-a-city", "name": "Exposition Park", "slug": "exposition-park"}, "cases": 141.0, "population": 0.48242686838211424, "external_id": "exposition-park", "slug": "exposition-park-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/exposition-park-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.35170177864867, 34.08895370627337], [-118.34411082129512, 34.08889339451736], [-118.34421000000012, 34.08510899912352], [-118.34401000000011, 34.0736089991236], [-118.3441100000001, 34.06890999912375], [-118.34741000000012, 34.069109999123796], [-118.35331000000014, 34.07030899912368], [-118.36151000000012, 34.07150899912359], [-118.361706, 34.087159999123486], [-118.3528, 34.087128999123514], [-118.352802, 34.08896199912352], [-118.35170177864867, 34.08895370627337]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Fairfax", "metadata": {"sqmi": 1.23396477314, "type": "segment-of-a-city", "name": "Fairfax", "slug": "fairfax"}, "cases": 352.0, "population": 0.7769561858514512, "external_id": "fairfax", "slug": "fairfax-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/fairfax-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.25643597484533, 33.98949800000806], [-118.23902099059029, 33.98940300074955], [-118.2389539860213, 33.977176000716106], [-118.2376499859944, 33.97716600411244], [-118.23763198600784, 33.974738000768774], [-118.23023298128115, 33.9747450017675], [-118.2302759720096, 33.96199400568195], [-118.22954298608478, 33.961380002832904], [-118.23150498589129, 33.96101400192399], [-118.22740500330457, 33.94270504053751], [-118.2278079929869, 33.943089003275816], [-118.22949698601849, 33.943100000711944], [-118.23016499540618, 33.94564800324394], [-118.23482297661437, 33.945569001542786], [-118.2348549825035, 33.94713199984878], [-118.23063099555189, 33.947234001196065], [-118.23062199498438, 33.948278004336984], [-118.23402597663946, 33.94824300144705], [-118.23399499532731, 33.95326400351861], [-118.24421897673241, 33.953260001190124], [-118.24420999533903, 33.95427000349184], [-118.24744998955585, 33.95425699967499], [-118.24748498246419, 33.95335800524089], [-118.24883898885045, 33.95335799973406], [-118.24913798248149, 33.943273005368475], [-118.25363997668333, 33.943277001380025], [-118.25353299537922, 33.95126000336672], [-118.25398499008061, 33.95125599966319], [-118.25409997956001, 33.951032009346484], [-118.25592998951826, 33.95306000158193], [-118.25589899532868, 33.96016900353739], [-118.25639297674022, 33.960171001206376], [-118.25643597484533, 33.98949800000806]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Florence-Firestone", "metadata": {"sqmi": 3.57948601666, "type": "unincorporated-area", "name": "Florence-Firestone", "slug": "florence-firestone"}, "cases": 342.0, "population": 1.1214894729591003, "external_id": "florence-firestone", "slug": "florence-firestone-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/florence-firestone-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.25643598601832, 33.989214002424], [-118.256406, 33.9600149991251], [-118.268006, 33.960113999125], [-118.280807, 33.95991399912499], [-118.28080700000015, 33.979013999124824], [-118.28040700000011, 33.98591399912475], [-118.280507, 33.989013999124694], [-118.25643598601832, 33.989214002424]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Florence", "metadata": {"sqmi": 2.79767885323, "type": "segment-of-a-city", "name": "Florence", "slug": "florence"}, "cases": null, "population": null, "external_id": "florence", "slug": "florence-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/florence-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.32439200000027, 33.916466999125646], [-118.2917109954455, 33.91643600101184], [-118.29178800000012, 33.89412099912597], [-118.2905650000001, 33.8671659991263], [-118.29062400000018, 33.86633299912635], [-118.29143000000022, 33.865733999126284], [-118.29197, 33.865544999126335], [-118.29806800000013, 33.86555299912631], [-118.298063, 33.866421999126416], [-118.29449900000016, 33.86646999912624], [-118.29434900000011, 33.87062799912628], [-118.2991430000002, 33.8705309991263], [-118.29931900000011, 33.86569799912624], [-118.30895300000012, 33.86569099912635], [-118.308912, 33.871244999126226], [-118.30912100000019, 33.87305299912622], [-118.31311900000017, 33.87301499912619], [-118.31326700000012, 33.87685299912632], [-118.31320800000024, 33.88194599912607], [-118.31347600000032, 33.88706099912601], [-118.31781800000032, 33.88552299912604], [-118.32648800000018, 33.882820999126096], [-118.32649100000015, 33.90862399912576], [-118.3266890000002, 33.91282999912564], [-118.32650200000016, 33.9128199991257], [-118.32650400000028, 33.91640499912566], [-118.32439200000027, 33.916466999125646]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Gardena", "metadata": {"sqmi": 5.84389184747, "type": "standalone-city", "name": "Gardena", "slug": "gardena"}, "cases": 158.0, "population": 0.6130922354584611, "external_id": "gardena", "slug": "gardena-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/gardena-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.229607, 34.13560099912295], [-118.229607, 34.132907999123034], [-118.2285070000001, 34.12800799912295], [-118.228407, 34.12530799912306], [-118.226207, 34.12370799912307], [-118.22540700000015, 34.12180799912311], [-118.224407, 34.122307999123066], [-118.223706, 34.121607999123135], [-118.222406, 34.12100799912303], [-118.221306, 34.11980799912314], [-118.21870600000011, 34.117807999123016], [-118.219506, 34.11610799912322], [-118.22260600000011, 34.11690799912317], [-118.22300600000014, 34.11650799912317], [-118.22290600000015, 34.116207999123134], [-118.224106, 34.11530799912305], [-118.223906, 34.114807999123094], [-118.220906, 34.11110899912325], [-118.221006, 34.11030899912313], [-118.22230600000017, 34.1081089991232], [-118.22460600000011, 34.106808999123274], [-118.225406, 34.10610899912325], [-118.22810700000011, 34.10500899912333], [-118.229007, 34.10480899912335], [-118.231607, 34.10480899912335], [-118.237207, 34.10200899912338], [-118.23060700000015, 34.09420899912352], [-118.232207, 34.09320999912347], [-118.23330700000011, 34.093609999123366], [-118.238407, 34.09480899912341], [-118.240307, 34.09660899912335], [-118.24200700000016, 34.09930899912338], [-118.24240700000011, 34.1013089991233], [-118.242207, 34.10460899912327], [-118.243107, 34.105808999123184], [-118.24640700000015, 34.107708999123304], [-118.24910700000017, 34.10860899912322], [-118.248207, 34.11040899912321], [-118.246007, 34.112108999123265], [-118.24780700000017, 34.11310899912321], [-118.25414859778775, 34.118850727904785], [-118.251133, 34.1209469991231], [-118.25364, 34.1233029991231], [-118.253159, 34.12457099912308], [-118.252089, 34.12440399912315], [-118.235238, 34.12671999912302], [-118.235312, 34.12760199912312], [-118.236019, 34.1288299991232], [-118.236608, 34.13271499912293], [-118.236273, 34.13449799912296], [-118.233605, 34.13450999912291], [-118.233598, 34.13559999912305], [-118.229607, 34.13560099912295]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Glassell Park", "metadata": {"sqmi": 2.75291010512, "type": "segment-of-a-city", "name": "Glassell Park", "slug": "glassell-park"}, "cases": 108.0, "population": 0.3160389781406373, "external_id": "glassell-park", "slug": "glassell-park-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/glassell-park-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.23880700000025, 34.25250199912161], [-118.23880799072293, 34.25220200343297], [-118.24337198070417, 34.25205000079636], [-118.24346799838864, 34.24659502272611], [-118.24386798549607, 34.246857002134035], [-118.24435197911619, 34.24671000486777], [-118.24441098541071, 34.24607000862188], [-118.24525998313598, 34.2463919993944], [-118.24626699009632, 34.24538500547694], [-118.24641898445749, 34.24549999436937], [-118.24668898603652, 34.24509900293404], [-118.2471059808798, 34.244912007292356], [-118.24691898511112, 34.24427600099688], [-118.24705798682706, 34.2442010041767], [-118.24735198481463, 34.24443699428907], [-118.24777498462971, 34.24382900729731], [-118.24851198146635, 34.24400900768967], [-118.24875297194775, 34.22249500602399], [-118.24431897194218, 34.22070900602064], [-118.24435197194302, 34.218706006018095], [-118.24339798539282, 34.21810200831064], [-118.24304198227037, 34.218451999885744], [-118.24274998091725, 34.21835000729745], [-118.24253098306623, 34.218493000180935], [-118.24054997193824, 34.217156006015216], [-118.24063397193832, 34.21696400601486], [-118.23995597193765, 34.21658600601434], [-118.2399589726424, 34.21767997527341], [-118.239426985733, 34.217455004959305], [-118.23929197193665, 34.216566006014105], [-118.237031971934, 34.21508600601172], [-118.23754197193487, 34.21448400601096], [-118.23519997193218, 34.2130310060086], [-118.23524197193365, 34.208808006003075], [-118.23374197967928, 34.20804000002238], [-118.23301298567172, 34.20791600682252], [-118.23300398603635, 34.208319002812416], [-118.23258798581439, 34.20843700219901], [-118.23202897192967, 34.207267006000315], [-118.23117098593947, 34.20701500692239], [-118.23070198708812, 34.20775699716499], [-118.23038097192729, 34.20763600600043], [-118.23076197192809, 34.206887005999704], [-118.22976898492455, 34.20659000754728], [-118.22946598736422, 34.20729699761618], [-118.22915097192566, 34.20719200599958], [-118.22934897192619, 34.20657500599879], [-118.22915498501376, 34.20650200772612], [-118.22891098757394, 34.20710499747948], [-118.22851297192494, 34.2069660059992], [-118.22866597884102, 34.206124002237274], [-118.2272029845568, 34.20592100649238], [-118.22696598578239, 34.206586999532504], [-118.22566298597516, 34.20656700421774], [-118.22581197982333, 34.20565799979994], [-118.22496698548123, 34.20551300538633], [-118.22501597905439, 34.20539600130129], [-118.22416998587661, 34.20536300456533], [-118.22415497878713, 34.20521600281122], [-118.22333798606093, 34.20530100353634], [-118.22341598640428, 34.20584699927293], [-118.22211298603118, 34.20577000563872], [-118.22213298112396, 34.206109000238065], [-118.22047400000018, 34.206257999122116], [-118.2203250000002, 34.204860999122175], [-118.21731500000018, 34.205521999122055], [-118.21635600000019, 34.206200999122075], [-118.21500700000021, 34.20663199912214], [-118.21500700000021, 34.20380399912225], [-118.21563000000016, 34.20382399912212], [-118.21577600000015, 34.203397999122195], [-118.21680700000022, 34.20330399912215], [-118.21670700000027, 34.20090499912219], [-118.215901, 34.200756999122135], [-118.215807, 34.1984049991222], [-118.21420700000016, 34.1977049991222], [-118.21397000000019, 34.19665099912226], [-118.21073100000015, 34.194599999122296], [-118.21270700000015, 34.19240499912229], [-118.21230900000013, 34.19262599912233], [-118.21181300000013, 34.19090299912231], [-118.21022900000021, 34.189842999122234], [-118.2074180000001, 34.189044999122366], [-118.20790600000015, 34.18730499912238], [-118.20589800000015, 34.18704499912237], [-118.20520200000017, 34.18570799912234], [-118.20179100000014, 34.183713999122396], [-118.198867, 34.181690999122466], [-118.19786100000023, 34.1812319991224], [-118.1964380000001, 34.179893999122456], [-118.19533800000018, 34.18010599912233], [-118.19125300000013, 34.18035099912247], [-118.19120000000018, 34.180011999122364], [-118.19023000000013, 34.17910199912241], [-118.189791, 34.179311999122454], [-118.189633, 34.17896599912246], [-118.18954000000015, 34.17904399912242], [-118.1887730000002, 34.178512999122425], [-118.18888600000011, 34.17831699912246], [-118.1885320000002, 34.17813599912243], [-118.1888140000002, 34.177915999122405], [-118.190447, 34.1747019991225], [-118.19109800000018, 34.17413499912259], [-118.190811, 34.17205099912252], [-118.18958600000013, 34.168770999122636], [-118.189083, 34.168847999122605], [-118.18812600000011, 34.16638699912255], [-118.1886560000002, 34.165248999122596], [-118.18736200000026, 34.16488499912268], [-118.184956, 34.160059999122666], [-118.18436000000015, 34.16010699912274], [-118.1820050000002, 34.1502029991228], [-118.1824470000003, 34.14856199912283], [-118.19040900000023, 34.14904899912285], [-118.19819500000013, 34.149044999122935], [-118.19819100000016, 34.15162599912275], [-118.19892, 34.15115399912278], [-118.2027010000002, 34.15063299912276], [-118.20357300000012, 34.149691999122766], [-118.20422900000017, 34.149278999122885], [-118.20543200000021, 34.14743099912286], [-118.20772300000012, 34.14724699912286], [-118.20877400000025, 34.14650699912285], [-118.210933, 34.14617299912287], [-118.2120960000002, 34.14658399912293], [-118.21557400000025, 34.146658999122906], [-118.21614000000014, 34.146947999122844], [-118.2194760000002, 34.146952999122874], [-118.21963000000015, 34.147437999122864], [-118.22117200000012, 34.148056999122836], [-118.222455, 34.149253999122834], [-118.2249670000001, 34.149362999122935], [-118.2262310000002, 34.14978899912284], [-118.226939, 34.148609999122776], [-118.22700400000022, 34.14762799912292], [-118.227452, 34.14775499912281], [-118.227649, 34.147422999122846], [-118.2282600000002, 34.147451999122836], [-118.22816300000025, 34.14683099912285], [-118.228602, 34.14688599912283], [-118.22868300000017, 34.14673499912298], [-118.22823700000016, 34.14644699912291], [-118.22857700000013, 34.14588099912282], [-118.2288890000002, 34.14611999912292], [-118.228769, 34.14589699912282], [-118.228784, 34.13907299912292], [-118.2291560000001, 34.13907299912292], [-118.22914900000016, 34.138078999122925], [-118.22787700000025, 34.138083999123], [-118.22775100000013, 34.135600999122964], [-118.23359800000019, 34.13559999912305], [-118.23360500000017, 34.13450999912296], [-118.23627300000015, 34.13449799912299], [-118.23660800000016, 34.13271499912299], [-118.23601900000014, 34.12882999912322], [-118.23531200000015, 34.12760199912318], [-118.23523800000014, 34.12671999912304], [-118.252089, 34.124403999123174], [-118.253159, 34.12457099912312], [-118.25364, 34.123302999123126], [-118.25113300000011, 34.12094699912315], [-118.254258, 34.1187609991233], [-118.2570630000001, 34.121223999123146], [-118.25882900000013, 34.12302199912317], [-118.26066900000014, 34.125233999123104], [-118.262344, 34.12767599912314], [-118.27561300000016, 34.15326099912283], [-118.27706800000014, 34.153255999122734], [-118.27832400000017, 34.152995999122766], [-118.27851200000018, 34.15346999912284], [-118.27921200000026, 34.153942999122776], [-118.27937800000015, 34.155066999122745], [-118.28034900000019, 34.1559519991227], [-118.28169100000021, 34.15647299912279], [-118.2838090000001, 34.156537999122826], [-118.28746900000029, 34.15577099912274], [-118.29154000000011, 34.1557769991228], [-118.29569100000012, 34.15895299912269], [-118.29634400000013, 34.1590229991228], [-118.29741500000024, 34.15887099912271], [-118.29783700000023, 34.15857699912268], [-118.297935, 34.15829299912267], [-118.29894700000011, 34.15769899912275], [-118.30433800000014, 34.159016999122834], [-118.307248, 34.160955999122855], [-118.3078490000002, 34.16115199912266], [-118.30701700000017, 34.16178299912268], [-118.304583, 34.16435199912262], [-118.30203000000012, 34.16657099912258], [-118.29688700000011, 34.171559999122515], [-118.29918, 34.1732759991225], [-118.29890600000016, 34.17369899912255], [-118.29639200000017, 34.176121999122564], [-118.29759900000018, 34.1770039991226], [-118.29287500000018, 34.181633999122504], [-118.29009200000031, 34.18461599912246], [-118.28783100000015, 34.18763199912238], [-118.283377, 34.18598399912235], [-118.28010900000015, 34.190204999122294], [-118.28020900000014, 34.2071039991222], [-118.29276100000021, 34.221653999121976], [-118.26687100000012, 34.221845999121946], [-118.26673300000014, 34.2407959991217], [-118.26602400000019, 34.24035599912169], [-118.26599900000016, 34.24389199912168], [-118.26604400000016, 34.247767999121685], [-118.26669100000026, 34.24777199912165], [-118.26667200000013, 34.25077899912166], [-118.26529700000019, 34.25026499912157], [-118.26526400000019, 34.25237999912165], [-118.25650000000016, 34.25226599912153], [-118.25669000000018, 34.26718999912141], [-118.23890300000011, 34.26708399912147], [-118.23880700000025, 34.25250199912161]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Glendale", "metadata": {"sqmi": 30.6279832578, "type": "standalone-city", "name": "Glendale", "slug": "glendale"}, "cases": 588.0, "population": 2.064896755162242, "external_id": "glendale", "slug": "glendale-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/glendale-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.82407900000015, 34.1786069991226], [-117.793624, 34.178587999122435], [-117.79353200000021, 34.166805999122516], [-117.79509200000015, 34.1667059991226], [-117.80129200000022, 34.16693399912262], [-117.80146800000011, 34.15882299912276], [-117.81148400000018, 34.1587749991228], [-117.81173500000013, 34.15041599912281], [-117.80936800000013, 34.14111399912296], [-117.81023700000019, 34.139319999122925], [-117.81108800000014, 34.138311999122955], [-117.81117400000021, 34.137967999122985], [-117.81179300000015, 34.12543899912305], [-117.82030900000017, 34.126999999123115], [-117.82020900000012, 34.11756599912324], [-117.82288100000018, 34.11755499912319], [-117.82264300000013, 34.11564199912324], [-117.8231260000001, 34.115605999123275], [-117.82443900000021, 34.11563899912323], [-117.824787, 34.11753799912323], [-117.82517400000016, 34.11749499912324], [-117.8247790000003, 34.115249999123215], [-117.8254880000001, 34.115185999123234], [-117.82528600000022, 34.11392499912327], [-117.826805, 34.113931999123295], [-117.8272610000003, 34.11444799912316], [-117.82883800000022, 34.11439399912336], [-117.82884200000017, 34.11391499912328], [-117.83765200000019, 34.113936999123204], [-117.83764099046469, 34.10661100442037], [-117.86613798578666, 34.10666600207032], [-117.87389800000025, 34.10602999912338], [-117.87715400000017, 34.10547499912334], [-117.88109198582366, 34.10656300291905], [-117.88239498574347, 34.106642000770925], [-117.88238598577429, 34.1074229997924], [-117.88147698571093, 34.10740900423191], [-117.88137098575262, 34.121443000164135], [-117.88035698572617, 34.121439004172935], [-117.88035298571712, 34.124337000008225], [-117.87716698392713, 34.12434000500395], [-117.8767679855659, 34.12471400466505], [-117.8771649858984, 34.12474400026844], [-117.87716898571644, 34.12510400420377], [-117.87925498572152, 34.125101000849334], [-117.87930898573994, 34.12683900411294], [-117.88129198564043, 34.126817001763726], [-117.881345, 34.13009499912297], [-117.88590800000016, 34.13003899912301], [-117.88598400000028, 34.13100099912308], [-117.886709, 34.13116299912308], [-117.88703700000025, 34.13263199912301], [-117.89003700000025, 34.13268999912309], [-117.88969200000018, 34.14682399912284], [-117.88967900000019, 34.15630199912266], [-117.889852, 34.161489999122644], [-117.88553700000017, 34.161502999122646], [-117.88569500000025, 34.165105999122574], [-117.880995, 34.16500599912263], [-117.88086300000013, 34.17130199912258], [-117.864398, 34.171445999122625], [-117.86427000000015, 34.178533999122614], [-117.85010500000011, 34.17856299912251], [-117.85055900000016, 34.16515499912266], [-117.845891, 34.16511199912264], [-117.845993, 34.15750699912277], [-117.841293, 34.15770699912268], [-117.841293, 34.16120599912272], [-117.839165, 34.16134999912273], [-117.8392930000002, 34.16240599912273], [-117.83867200000016, 34.16222299912264], [-117.83834300000012, 34.1598639991228], [-117.836609, 34.15589799912274], [-117.83422500000015, 34.156440999122836], [-117.832338, 34.157251999122806], [-117.83039600000015, 34.157619999122794], [-117.826993, 34.159531999122656], [-117.825364, 34.160199999122604], [-117.82468600000011, 34.16087299912275], [-117.824662, 34.161962999122785], [-117.8377530000001, 34.161524999122605], [-117.83771800000022, 34.1723639991225], [-117.846329, 34.1723739991226], [-117.84639, 34.1777329991225], [-117.845098, 34.177719999122495], [-117.84509800000014, 34.17859799912247], [-117.82407900000015, 34.1786069991226]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Glendora", "metadata": {"sqmi": 19.5413403615, "type": "standalone-city", "name": "Glendora", "slug": "glendora"}, "cases": 47.0, "population": 0.5342437438423168, "external_id": "glendora", "slug": "glendora-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/glendora-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.300207, 33.9599139991251], [-118.30026199536081, 33.94999900346872], [-118.30244797491132, 33.94999300010926], [-118.30245399536264, 33.945474003461285], [-118.30517997490868, 33.94546700018511], [-118.30519099550477, 33.94184500291147], [-118.30901497491601, 33.94183300014389], [-118.30902499719805, 33.93821000472189], [-118.31338698955152, 33.938214000142466], [-118.31337198316203, 33.94546000472394], [-118.317719982513, 33.9454629995714], [-118.3177610000001, 33.9598165504934], [-118.300207, 33.9599139991251]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Gramercy Park", "metadata": {"sqmi": 1.13403882337, "type": "segment-of-a-city", "name": "Gramercy Park", "slug": "gramercy-park"}, "cases": 30.0, "population": 0.10763876430698577, "external_id": "gramercy-park", "slug": "gramercy-park-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/gramercy-park-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.49015600000016, 34.31499299912082], [-118.4799170000001, 34.30319999912098], [-118.472817, 34.295800999121], [-118.469101, 34.29276299912098], [-118.468369, 34.29116799912103], [-118.468244, 34.29016299912113], [-118.46838100000011, 34.28841999912103], [-118.469314, 34.280127999121085], [-118.472002, 34.27185399912114], [-118.472017, 34.25720199912154], [-118.489203, 34.257217999121394], [-118.51311600000015, 34.25750699912141], [-118.52323200000012, 34.257499999121386], [-118.5232330000001, 34.2570989991214], [-118.529393, 34.25718999912147], [-118.528963, 34.26005499912139], [-118.52945600000021, 34.260945999121375], [-118.52831900000011, 34.2645019991213], [-118.527719, 34.26496199912127], [-118.52751100000013, 34.26611399912135], [-118.526631, 34.26836999912132], [-118.52586300000014, 34.268865999121346], [-118.52514300000013, 34.26966599912125], [-118.52498300000015, 34.27035399912135], [-118.525495, 34.271297999121195], [-118.526103, 34.27185799912126], [-118.526519, 34.27210199912127], [-118.52700800000012, 34.27207599912121], [-118.52644700000012, 34.273153999121256], [-118.526662, 34.27478399912124], [-118.526327, 34.27646299912116], [-118.526495, 34.277263999121175], [-118.5269190000001, 34.277800999121176], [-118.527519, 34.27930099912126], [-118.527519, 34.28130099912112], [-118.528019, 34.28210099912109], [-118.5276190000001, 34.283300999121224], [-118.528419, 34.284600999121146], [-118.52881900000011, 34.286000999121185], [-118.53011900000011, 34.28650099912105], [-118.5336190000001, 34.29030099912107], [-118.53481900000014, 34.292000999120994], [-118.539019, 34.29570099912101], [-118.54094523964707, 34.29879363870781], [-118.54082100023214, 34.29881399889549], [-118.54155699980872, 34.30021999896285], [-118.54259300010217, 34.301360999214076], [-118.54333499977436, 34.303257998979845], [-118.54429599975546, 34.303939999002075], [-118.54367199982538, 34.30571499901334], [-118.54709700021492, 34.313350999173196], [-118.5455109999157, 34.31565799917272], [-118.54629599982052, 34.31733199894586], [-118.5340110001175, 34.31453099930415], [-118.50784013232494, 34.33426630318251], [-118.50637, 34.33303499912057], [-118.50343600000012, 34.32671799912063], [-118.50333000000013, 34.325946999120646], [-118.50375100000015, 34.32471399912053], [-118.5036960000001, 34.32429999912059], [-118.503347, 34.323789999120535], [-118.4974160000001, 34.31978799912066], [-118.49467600000014, 34.31867699912072], [-118.4923500000001, 34.31552199912069], [-118.49015600000016, 34.31499299912082]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Granada Hills", "metadata": {"sqmi": 15.1114320603, "type": "segment-of-a-city", "name": "Granada Hills", "slug": "granada-hills"}, "cases": 118.0, "population": 0.5819114311076043, "external_id": "granada-hills", "slug": "granada-hills-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/granada-hills-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.25589798602273, 33.96012400240537], [-118.25592998951808, 33.95306000158186], [-118.25409997955981, 33.9510320093464], [-118.25398499008037, 33.951255999663104], [-118.25353299537902, 33.951260003366635], [-118.25363931622805, 33.94333341032043], [-118.25410600000016, 33.94331499912527], [-118.25410600000016, 33.933114999125394], [-118.25426898602684, 33.92938300238534], [-118.25347398602635, 33.92863200238475], [-118.25380398602667, 33.92818400238457], [-118.25381397671137, 33.92730000129795], [-118.2535499953424, 33.92730000347011], [-118.25359399531283, 33.923095004551776], [-118.2694377868819, 33.923101994170985], [-118.269506, 33.96001399912504], [-118.256406, 33.9600149991251], [-118.256406, 33.96017318509527], [-118.25589798602273, 33.96012400240537]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Green Meadows", "metadata": {"sqmi": 2.21985249315, "type": "segment-of-a-city", "name": "Green Meadows", "slug": "green-meadows"}, "cases": 62.0, "population": 0.2150463043252055, "external_id": "green-meadows", "slug": "green-meadows-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/green-meadows-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.39698477345304, 34.63065594283196], [-118.39449164996637, 34.6305814496146], [-118.3945628169649, 34.62348879362937], [-118.39018514376424, 34.62349824934721], [-118.39022514704162, 34.616388159004245], [-118.39463446252995, 34.616394755783624], [-118.3946982970034, 34.60917018758794], [-118.41128739234487, 34.60925022555681], [-118.41221354693887, 34.61636841150878], [-118.41642183155668, 34.61638490188102], [-118.41635359724984, 34.61281642293858], [-118.42975374003514, 34.61280631305668], [-118.42987054120378, 34.60923586590669], [-118.43797279455374, 34.60922931358011], [-118.43824802317089, 34.61283715764544], [-118.4362870396065, 34.61379921811665], [-118.43629832135102, 34.61528344484679], [-118.43445306169242, 34.615293212409824], [-118.434461220097, 34.61637027746956], [-118.42979519628157, 34.61639452789538], [-118.42985275334088, 34.62147511041281], [-118.42093866985638, 34.624802064853164], [-118.42102502507537, 34.627254939511026], [-118.41225093641265, 34.62720171601253], [-118.41234565779162, 34.63078851028207], [-118.40329289450843, 34.63084472740236], [-118.39698477345304, 34.63065594283196]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Green Valley", "metadata": {"sqmi": 2.60519770856, "type": "unincorporated-area", "name": "Green Valley", "slug": "green-valley"}, "cases": null, "population": null, "external_id": "green-valley", "slug": "green-valley-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/green-valley-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.298947, 34.157698999122715], [-118.297935, 34.15829299912267], [-118.29783700000013, 34.15857699912265], [-118.29741500000011, 34.1588709991227], [-118.295928, 34.15899699912266], [-118.295691, 34.15895299912266], [-118.29154, 34.155776999122786], [-118.28746900000017, 34.15577099912268], [-118.283809, 34.15653799912278], [-118.28222, 34.15651699912273], [-118.28169100000012, 34.156472999122755], [-118.280349, 34.15595199912265], [-118.279378, 34.155066999122695], [-118.27921200000014, 34.153942999122755], [-118.27873995932471, 34.15362371439506], [-118.27770900000013, 34.14540699912274], [-118.2764080000001, 34.14090699912273], [-118.275708, 34.13710699912297], [-118.273308, 34.128907999122994], [-118.2705080000001, 34.121507999123104], [-118.265408, 34.113608999123244], [-118.265408, 34.11340899912305], [-118.26630800000014, 34.11260899912315], [-118.267408, 34.11230899912312], [-118.26800800000012, 34.11270899912319], [-118.27180800000014, 34.117207999123046], [-118.27190800000012, 34.11690799912317], [-118.27370800000014, 34.11900799912314], [-118.274208, 34.11980799912314], [-118.286109, 34.118507999123096], [-118.29220900000011, 34.1176079991232], [-118.299009, 34.11570799912322], [-118.306609, 34.11380799912332], [-118.30750900000015, 34.11340799912308], [-118.309409, 34.11300799912316], [-118.3095100000001, 34.141106999122805], [-118.30941000000011, 34.14700699912273], [-118.31091, 34.15220699912263], [-118.31661, 34.15140699912278], [-118.31781000000015, 34.152106999122736], [-118.323038, 34.15246999912263], [-118.32871000000014, 34.14980699912272], [-118.32890469865548, 34.15029374576136], [-118.325721, 34.1532529991229], [-118.32211, 34.155726999122685], [-118.317677, 34.156312999122626], [-118.31721700000013, 34.15479199912274], [-118.316002, 34.15466099912266], [-118.315818, 34.15445299912271], [-118.314675, 34.154277999122726], [-118.31218900000013, 34.15534499912277], [-118.31032000000013, 34.16075999912261], [-118.309646, 34.161258999122644], [-118.30872800000012, 34.16143899912262], [-118.307248, 34.16095599912283], [-118.304338, 34.159016999122784], [-118.298947, 34.157698999122715]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Griffith Park", "metadata": {"sqmi": 5.83352180271, "type": "segment-of-a-city", "name": "Griffith Park", "slug": "griffith-park"}, "cases": null, "population": null, "external_id": "griffith-park", "slug": "griffith-park-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/griffith-park-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.9967929719719, 34.028399952296986], [-117.99245497238404, 34.02671895229442], [-117.9921059724169, 34.02713995229486], [-117.98940697267311, 34.02602395229321], [-117.98991497262553, 34.02498495229244], [-117.98253497332627, 34.021933952288755], [-117.98191597338473, 34.02292195228893], [-117.97945897361798, 34.02193295228766], [-117.97988918846656, 34.02086884109512], [-117.9757430000002, 34.01917499912444], [-117.97512187933538, 34.0202085439108], [-117.9771299738391, 34.02102695228667], [-117.97524097401765, 34.02341495228797], [-117.97313097421831, 34.021210952285486], [-117.97106897441407, 34.02071395228485], [-117.97371997416339, 34.01823695228366], [-117.97490897405127, 34.016383952282055], [-117.97557897398767, 34.01648495228205], [-117.97595835423193, 34.016097688775176], [-117.97524800000029, 34.01580699912451], [-117.9757668761243, 34.01497928253567], [-117.9735330000003, 34.01407799912449], [-117.96625100000021, 34.01182899912455], [-117.9646790000002, 34.01543699912447], [-117.9636850000003, 34.01553899912447], [-117.95867500000018, 34.01349199912459], [-117.95981265967673, 34.00986531188666], [-117.94870100000026, 34.0065199991246], [-117.948950668074, 34.00239690323489], [-117.93099900000021, 33.99721199912468], [-117.93161628454955, 33.990776610290155], [-117.93183742656878, 33.99075329132875], [-117.93192943359753, 33.98993739254688], [-117.93127242624854, 33.98987984463303], [-117.93304859759867, 33.97263469342468], [-117.94772614752539, 33.97602327832122], [-117.94774400000024, 33.975451999125056], [-117.94961077023453, 33.97507396840951], [-117.94961199253589, 33.97463932246806], [-117.95797430647744, 33.97253606053582], [-117.96877735630387, 33.97257183085362], [-117.97431555579249, 33.9741579693236], [-117.97627392312238, 33.97448398866154], [-117.97628305435627, 33.97472141124132], [-117.97666167773443, 33.97482983819606], [-117.97666255665328, 33.97509295690064], [-117.99376202979509, 33.975163453984926], [-117.99338931734836, 33.989647538172775], [-118.00226193583869, 33.98961348851785], [-118.00217540136033, 33.994044743517016], [-118.00579439370675, 33.99820936382009], [-118.00543457248756, 33.99882143171054], [-118.01916201529615, 34.01424998488637], [-118.00837181154893, 34.02577308195151], [-118.00503497118925, 34.03163495230172], [-118.00265397141527, 34.0308579523004], [-118.00012297165571, 34.02968695229981], [-117.9967929719719, 34.028399952296986]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Hacienda Heights", "metadata": {"sqmi": 11.8870540287, "type": "unincorporated-area", "name": "Hacienda Heights", "slug": "hacienda-heights"}, "cases": 51.0, "population": 0.5592718499835508, "external_id": "hacienda-heights", "slug": "hacienda-heights-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/hacienda-heights-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.326309, 34.0835089991235], [-118.325909, 34.062009999123724], [-118.34411, 34.06210999912375], [-118.34411, 34.08330899912357], [-118.326309, 34.0835089991235]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Hancock Park", "metadata": {"sqmi": 1.51797955698, "type": "segment-of-a-city", "name": "Hancock Park", "slug": "hancock-park"}, "cases": 65.0, "population": 0.17038901121946104, "external_id": "hancock-park", "slug": "hancock-park-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/hancock-park-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.368321, 34.27334699912117], [-118.361095, 34.27289699912131], [-118.36111300000013, 34.2726019991211], [-118.36061300000016, 34.27220199912128], [-118.359313, 34.2720019991213], [-118.359137, 34.27277699912113], [-118.35629300000012, 34.26716999912133], [-118.359996, 34.26724699912138], [-118.359879, 34.26603899912123], [-118.36551300000012, 34.26610199912149], [-118.37100700000015, 34.260447999121446], [-118.37111300000012, 34.26320199912134], [-118.372113, 34.26130199912136], [-118.373313, 34.26030199912133], [-118.38021400000014, 34.25950199912142], [-118.3861140000001, 34.26060199912139], [-118.390679, 34.25729999912136], [-118.39361600000015, 34.25827199912145], [-118.39497, 34.25914299912147], [-118.395414, 34.25920199912153], [-118.395914, 34.2588019991214], [-118.39611400000013, 34.25920199912144], [-118.4018140000001, 34.2645019991213], [-118.4014140000001, 34.26640199912143], [-118.400014, 34.26810199912133], [-118.397314, 34.27100199912122], [-118.39391400000011, 34.27350199912125], [-118.391781, 34.27333299912138], [-118.3823820000001, 34.27374299912122], [-118.381394, 34.27411299912126], [-118.368321, 34.27334699912117]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Hansen Dam", "metadata": {"sqmi": 1.96106923644, "type": "segment-of-a-city", "name": "Hansen Dam", "slug": "hansen-dam"}, "cases": null, "population": null, "external_id": "hansen-dam", "slug": "hansen-dam-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/hansen-dam-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.300693, 33.81393399912691], [-118.29920500000017, 33.81341599912684], [-118.29920500000017, 33.81362644926715], [-118.2984909860768, 33.813363002316116], [-118.29849398607683, 33.81313900231579], [-118.29833998607668, 33.81305500231577], [-118.29901599686052, 33.80340000558455], [-118.29961597513513, 33.80341799954608], [-118.29963797694795, 33.8028140008297], [-118.2991449952105, 33.80279900378906], [-118.29914597796859, 33.79779599916477], [-118.2859390546698, 33.79778139548247], [-118.286905, 33.79771699912713], [-118.28330400000017, 33.79291699912709], [-118.282704, 33.79201699912706], [-118.282104, 33.79061699912718], [-118.2804040000001, 33.77901699912724], [-118.28200400000014, 33.77881699912734], [-118.28940400000012, 33.7785169991273], [-118.292904, 33.77931699912736], [-118.297705, 33.78221699912727], [-118.298605, 33.78081699912723], [-118.30800500000011, 33.77941699912729], [-118.30792769968308, 33.779179105043106], [-118.309464, 33.77891499912735], [-118.309924, 33.78194699912738], [-118.30903900000017, 33.7819409991273], [-118.309038, 33.78217899912722], [-118.308709, 33.78221499912734], [-118.308713, 33.78820699912719], [-118.308472, 33.78877299912723], [-118.30868500000012, 33.789470999127204], [-118.3088290000001, 33.806794999127035], [-118.30929600000012, 33.808804999126906], [-118.30812700000011, 33.809044999126996], [-118.308558, 33.81049099912699], [-118.308786, 33.81200399912691], [-118.3087923495178, 33.81687759425836], [-118.300693, 33.81393399912691]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Harbor City", "metadata": {"sqmi": 2.58132095337, "type": "segment-of-a-city", "name": "Harbor City", "slug": "harbor-city"}, "cases": 49.0, "population": 0.29069767441860467, "external_id": "harbor-city", "slug": "harbor-city-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/harbor-city-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.28900600000014, 33.92361499912562], [-118.281206, 33.92361499912545], [-118.28126527806717, 33.923199001298045], [-118.28144899559884, 33.923104004742264], [-118.28208597494334, 33.92320100010348], [-118.28226799471715, 33.89731499885771], [-118.2832039860523, 33.89694800236782], [-118.28228, 33.87412699912612], [-118.282107, 33.872852999126216], [-118.282247, 33.87263899912628], [-118.281845, 33.872696999126134], [-118.281643, 33.872018999126226], [-118.281555, 33.862801999126326], [-118.285363, 33.86115599912625], [-118.28513600000011, 33.86068399912625], [-118.285211, 33.86048099912631], [-118.285488, 33.86063599912628], [-118.285615, 33.861043999126316], [-118.29052300000019, 33.85869899912626], [-118.290518, 33.85422299912644], [-118.28525400000012, 33.85415699912642], [-118.285275, 33.85224999912635], [-118.28603600000018, 33.852247999126476], [-118.28601699480033, 33.846253005751024], [-118.29920697480463, 33.846319000868164], [-118.29918098607551, 33.82302200232228], [-118.29904298259454, 33.82221000312056], [-118.29920500000017, 33.81341599912684], [-118.3087923495178, 33.81687759425836], [-118.30941200000015, 33.85743899912633], [-118.309279, 33.85834799912633], [-118.30915000000013, 33.85834799912633], [-118.309148, 33.865607999126325], [-118.299319, 33.865697999126205], [-118.2991430000001, 33.870530999126245], [-118.299028, 33.8705829991262], [-118.294349, 33.87062799912624], [-118.294499, 33.86646999912618], [-118.298063, 33.866421999126395], [-118.298068, 33.86555299912629], [-118.29197, 33.865544999126335], [-118.29154, 33.86566399912626], [-118.290624, 33.86633299912635], [-118.291788, 33.89412099912589], [-118.29158298605368, 33.92333400238584], [-118.29154756296448, 33.92350208560499], [-118.28900600000014, 33.92361499912562]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Harbor Gateway", "metadata": {"sqmi": 5.14092312531, "type": "segment-of-a-city", "name": "Harbor Gateway", "slug": "harbor-gateway"}, "cases": 72.0, "population": 0.43599370231318885, "external_id": "harbor-gateway", "slug": "harbor-gateway-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/harbor-gateway-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.30001200000015, 34.052907999124], [-118.300008, 34.047410999123926], [-118.30040800000012, 34.04561099912404], [-118.30030800000013, 34.04391099912411], [-118.300808, 34.043810999124034], [-118.3009080000001, 34.040110999124195], [-118.300408, 34.04001099912401], [-118.30040800000012, 34.03731199912409], [-118.3090080000001, 34.03741099912408], [-118.315308, 34.037210999124255], [-118.31500800000013, 34.03741099912408], [-118.313408, 34.03751099912417], [-118.313408, 34.04001099912401], [-118.313008, 34.04001099912405], [-118.31310900000011, 34.04961099912397], [-118.313409, 34.05271099912387], [-118.3112090000001, 34.05291099912394], [-118.30001200000015, 34.052907999124]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Harvard Heights", "metadata": {"sqmi": 0.791828822117, "type": "segment-of-a-city", "name": "Harvard Heights", "slug": "harvard-heights"}, "cases": 59.0, "population": 0.180350920095372, "external_id": "harvard-heights", "slug": "harvard-heights-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/harvard-heights-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.30020700000011, 33.97451399912481], [-118.308907, 33.97441299912499], [-118.308808, 33.98661299912474], [-118.3090080000001, 33.98891299912483], [-118.308908, 33.9930129991246], [-118.300208, 33.99311299912467], [-118.30030800000013, 33.99091299912464], [-118.30010700000012, 33.9840129991247], [-118.30020700000011, 33.97451399912481]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Harvard Park", "metadata": {"sqmi": 0.640666412177, "type": "segment-of-a-city", "name": "Harvard Park", "slug": "harvard-park"}, "cases": 130.0, "population": 0.3793516005719455, "external_id": "harvard-park", "slug": "harvard-park-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/harvard-park-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.63447645033298, 34.4963530183693], [-118.63439132267126, 34.49270440954759], [-118.643096315977, 34.49271235614901], [-118.64284203003172, 34.481796149037805], [-118.65154886795871, 34.48182075767659], [-118.65111217490944, 34.47818128657047], [-118.6513140597724, 34.47818218061476], [-118.65139075903231, 34.477767254873704], [-118.65169570014407, 34.47454484928101], [-118.65067468760626, 34.47454181573773], [-118.64980648670902, 34.46726697219288], [-118.64538578275082, 34.46725432211406], [-118.64535411778773, 34.45999021612978], [-118.65708843407708, 34.46007956569368], [-118.65701820792802, 34.45927742077772], [-118.65763712029666, 34.458445850004786], [-118.65773543574215, 34.457658729320926], [-118.65820351348903, 34.45742228994727], [-118.65796504908788, 34.457093807340925], [-118.658035865673, 34.45667277390117], [-118.6582321916466, 34.45635839360643], [-118.65888752891233, 34.45604676936505], [-118.65947649225009, 34.46010076817125], [-118.67253142135397, 34.460052807001134], [-118.67340568136001, 34.46716388138528], [-118.66908699583473, 34.46720689309557], [-118.66906852215399, 34.469019979728294], [-118.67122898334952, 34.46899758054109], [-118.67121214067002, 34.47080969653542], [-118.67769709755888, 34.47073683706555], [-118.67768361164319, 34.474358238911066], [-118.68604084918779, 34.47446657193603], [-118.68599132673813, 34.48171217180006], [-118.67808453954109, 34.48160081997346], [-118.66025740951665, 34.48184608404435], [-118.66026991596034, 34.48366531741147], [-118.65594071038667, 34.483653010938916], [-118.65597900470797, 34.485471830546246], [-118.65157995140645, 34.48545966254139], [-118.65158486209121, 34.48603603530846], [-118.65266957842957, 34.48645220323546], [-118.65332907272915, 34.487453203842776], [-118.65426014223749, 34.487913105859796], [-118.65374751812891, 34.489075782526484], [-118.65250526914066, 34.48907578838563], [-118.65248770584566, 34.48838904613696], [-118.65132620877448, 34.48838901882277], [-118.65134389576865, 34.48907999234852], [-118.6482262125282, 34.48909118453746], [-118.64833543957346, 34.49633886967816], [-118.63447645033298, 34.4963530183693]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Hasley Canyon", "metadata": {"sqmi": 3.10198451154, "type": "unincorporated-area", "name": "Hasley Canyon", "slug": "hasley-canyon"}, "cases": null, "population": null, "external_id": "hasley-canyon", "slug": "hasley-canyon-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/hasley-canyon-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.07204700000013, 33.83872999912662], [-118.07204600000013, 33.837991999126665], [-118.06764100000018, 33.837991999126714], [-118.06768200000029, 33.83490799912679], [-118.06819500000013, 33.83490599912663], [-118.06819700000017, 33.83473599912675], [-118.06912200000023, 33.83482199912675], [-118.06912600000013, 33.833217999126674], [-118.068362, 33.83248899912671], [-118.06770700000031, 33.83249099912672], [-118.0677110000002, 33.83344899912674], [-118.06182200000015, 33.833409999126665], [-118.06138900000012, 33.83373099912669], [-118.06271300000029, 33.831541999126706], [-118.06333700000016, 33.82863299912678], [-118.06326800000029, 33.8240739991268], [-118.06544000000015, 33.82401199912681], [-118.065961, 33.82259999912682], [-118.06871300000014, 33.822477999126804], [-118.068721, 33.82401999912673], [-118.071826, 33.82397399912676], [-118.07179200000016, 33.8225439991269], [-118.072377, 33.82305899912693], [-118.07460900000018, 33.82320899912684], [-118.074622, 33.822776999126816], [-118.0794140000002, 33.824143999126846], [-118.08133700000016, 33.82497699912678], [-118.08089600000015, 33.82430399912682], [-118.08170400000012, 33.824318999126824], [-118.08190200000028, 33.8253619991268], [-118.08212100000028, 33.82568399912678], [-118.082995, 33.82868599912677], [-118.08277700000016, 33.82999699912668], [-118.08242600000027, 33.83060099912683], [-118.08179300000025, 33.830873999126766], [-118.08185400000022, 33.83418399912667], [-118.08154700000028, 33.83397599912664], [-118.079836, 33.8340099991267], [-118.0796790000003, 33.83694699912668], [-118.07952700000016, 33.83726799912671], [-118.07883900000013, 33.83725999912665], [-118.0791410000001, 33.83871799912658], [-118.07204700000013, 33.83872999912662]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Hawaiian Gardens", "metadata": {"sqmi": 0.985072535583, "type": "standalone-city", "name": "Hawaiian Gardens", "slug": "hawaiian-gardens"}, "cases": 10.0, "population": 0.146756677428823, "external_id": "hawaiian-gardens", "slug": "hawaiian-gardens-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/hawaiian-gardens-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.35248099318027, 33.93454200230976], [-118.35247897936615, 33.93420000085889], [-118.35035698662492, 33.93396400208783], [-118.34945098477137, 33.933679005304334], [-118.34875099317476, 33.9337350023726], [-118.34875097902562, 33.933619002234735], [-118.34834799315752, 33.933644002563454], [-118.34836097906746, 33.93340000192775], [-118.34823998613778, 33.933404003804135], [-118.34824098608665, 33.9338139999534], [-118.34714199304759, 33.9338150032079], [-118.34719897910543, 33.932605001717974], [-118.34610699077291, 33.932694001543624], [-118.346348, 33.93252699912533], [-118.34607400000019, 33.93204799912545], [-118.34422500000022, 33.9309869991255], [-118.34387500000018, 33.93100399912554], [-118.34386300000018, 33.930809999125536], [-118.34099300000011, 33.930580999125524], [-118.3363070000002, 33.93058399912546], [-118.3363460000001, 33.92932899912546], [-118.33736400000016, 33.92921699912555], [-118.33727700000013, 33.92709299912547], [-118.33666500000012, 33.9259269991256], [-118.33521900000011, 33.925387999125576], [-118.33408900000028, 33.92524299912565], [-118.33002200000021, 33.92521399912564], [-118.326866, 33.925834999125584], [-118.32674800000025, 33.926118999125535], [-118.32643000000016, 33.92613899912552], [-118.32642700000015, 33.92676899912554], [-118.325542, 33.9267149991256], [-118.32551000000014, 33.92879099912568], [-118.3264220000002, 33.92878799912551], [-118.32642, 33.92909499912545], [-118.32207200000018, 33.92903999912556], [-118.32209900000032, 33.93057099912544], [-118.3133920000002, 33.93068299912547], [-118.31339099241835, 33.92340999923184], [-118.31776897986248, 33.921606005763216], [-118.31778797898049, 33.917520003156454], [-118.31648398731505, 33.917656005465425], [-118.31520998502516, 33.918433998438104], [-118.31398199285347, 33.91836100381046], [-118.31391298047893, 33.916452000075], [-118.32650100000022, 33.916445999125635], [-118.32650200000016, 33.9128199991257], [-118.3266890000002, 33.91282999912564], [-118.32649100000015, 33.90862399912576], [-118.32649200000013, 33.90193198887903], [-118.32869198101459, 33.90012400698109], [-118.32920998730364, 33.89943400239938], [-118.33081299116608, 33.898001997779296], [-118.33158098739192, 33.89751800549196], [-118.33306798601278, 33.89742400118909], [-118.33299998608805, 33.89829000399259], [-118.33517797915292, 33.89828700037306], [-118.33517399305268, 33.89466300314774], [-118.34230797916472, 33.894658000462904], [-118.34232299300008, 33.893598003649295], [-118.34450700000014, 33.89351399912596], [-118.3445200000003, 33.895460999125945], [-118.34383000000031, 33.89541799912598], [-118.34383000000031, 33.9024529991258], [-118.35106900000024, 33.902566999125746], [-118.351032, 33.90192599912576], [-118.35215000000018, 33.901915999125926], [-118.35214700000017, 33.90111399912588], [-118.35237600000023, 33.90108199912591], [-118.35237200000014, 33.9016149991259], [-118.35317400000011, 33.901690999125876], [-118.35320600000027, 33.90230099912586], [-118.35360700000012, 33.902313999125845], [-118.35810800000023, 33.90231399912582], [-118.35814200000016, 33.900587999125904], [-118.35866400000016, 33.90064799912587], [-118.35868800000016, 33.901103999125844], [-118.35900100000022, 33.90108099912585], [-118.35912600000013, 33.90153499912584], [-118.36125600000018, 33.90134199912586], [-118.36128600000015, 33.896858999125975], [-118.36917800000016, 33.896924999125915], [-118.3682800000002, 33.89606699912593], [-118.36625100000019, 33.89463699912597], [-118.37872100000016, 33.894645999125906], [-118.37868000000014, 33.91488999912567], [-118.378388, 33.916374999125665], [-118.36958499306262, 33.916320003171364], [-118.36983998610988, 33.91188000238757], [-118.36988898611125, 33.904334002382704], [-118.36981198611117, 33.9038450023824], [-118.36937199206692, 33.903304998686885], [-118.36968197917741, 33.90232700152388], [-118.36592398620257, 33.902454003152855], [-118.36590698610965, 33.903698000018096], [-118.36510799307186, 33.903704003117305], [-118.36514997962907, 33.90245400031073], [-118.36415198579631, 33.90232800484585], [-118.36414698612303, 33.90280099995988], [-118.3631199930583, 33.902803003174405], [-118.36308697956386, 33.90211100043487], [-118.36209598583696, 33.901999004762196], [-118.36190698611895, 33.90371899988824], [-118.36150298576129, 33.90371700487293], [-118.36145197221062, 33.903966005637095], [-118.36150698611571, 33.90444500396401], [-118.36181098609514, 33.90444300079962], [-118.3618129860997, 33.905205999958675], [-118.36125598610788, 33.905207003998036], [-118.36126898611325, 33.907770003975294], [-118.3620079860965, 33.90776600079253], [-118.36190998611274, 33.909492003979906], [-118.36230998609703, 33.909490000790235], [-118.36230698611216, 33.910356999921], [-118.36125298610267, 33.91035500485025], [-118.36125798611272, 33.91379500397942], [-118.36161098609483, 33.91379300079606], [-118.36160898612914, 33.91418200390268], [-118.36190798607862, 33.91417700087358], [-118.36186598625308, 33.914843001086744], [-118.36157898619793, 33.914875003234634], [-118.36168098582957, 33.91596499877468], [-118.36124098594607, 33.91591700595658], [-118.36123498610306, 33.91642100402128], [-118.36263697977215, 33.91642200012635], [-118.36272899305497, 33.91602200319355], [-118.3636139861031, 33.91602100076552], [-118.36360498611398, 33.916417003981785], [-118.36810398609005, 33.91638300083834], [-118.36811798662761, 33.916700003575784], [-118.3656169856215, 33.91777800125845], [-118.36562397221014, 33.92291600566264], [-118.36562898577411, 33.92331900490205], [-118.36853198604844, 33.92346800107018], [-118.36820197221299, 33.925291005666416], [-118.3682489907397, 33.93094500129885], [-118.36414498662697, 33.93094400522693], [-118.36178898557667, 33.93198100120839], [-118.36178498607565, 33.93240599996554], [-118.36129798610392, 33.932407004022636], [-118.36130398607983, 33.93278200213827], [-118.36017099310345, 33.933020001017525], [-118.35894898661749, 33.93293200550321], [-118.35692698643841, 33.933555003117156], [-118.35589798565495, 33.93398200133595], [-118.35587298617206, 33.93452299994432], [-118.35479899304805, 33.93452300321919], [-118.354797979068, 33.934110001964065], [-118.35378198614542, 33.934147003782165], [-118.35376998663412, 33.93451899980443], [-118.35248099318027, 33.93454200230976]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Hawthorne", "metadata": {"sqmi": 6.22963426694, "type": "standalone-city", "name": "Hawthorne", "slug": "hawthorne"}, "cases": 198.0, "population": 0.9130116939089244, "external_id": "hawthorne", "slug": "hawthorne-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/hawthorne-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.404855, 33.87782099912622], [-118.40453900000018, 33.87714599912616], [-118.40312000000017, 33.87764599912596], [-118.40276000000023, 33.87704599912621], [-118.40203100000019, 33.877320999126255], [-118.40155000000016, 33.8770829991261], [-118.395963, 33.877100999126256], [-118.39596800000014, 33.873985999126205], [-118.39552200000016, 33.872830999126236], [-118.3913710000002, 33.87281199912621], [-118.38604400000027, 33.864677999126336], [-118.386061, 33.86400699912635], [-118.38565000000015, 33.863389999126284], [-118.38551100000011, 33.86273899912637], [-118.38562400000015, 33.861389999126494], [-118.38495700000018, 33.858056999126376], [-118.38529200000022, 33.858055999126385], [-118.38507600000017, 33.85772399912653], [-118.38482100000023, 33.85652499912644], [-118.38759400000016, 33.85578399912639], [-118.39027300000024, 33.8547449991265], [-118.39786000000016, 33.85236599912651], [-118.3994917215088, 33.85172157672294], [-118.39958100272787, 33.85259001511661], [-118.3999660179524, 33.8536979729757], [-118.40197101182937, 33.85860799563604], [-118.40339001232414, 33.86309301788883], [-118.40477097428266, 33.86666700930951], [-118.40946266447587, 33.87673109163654], [-118.40719200000017, 33.87774699912618], [-118.40693200000014, 33.877217999126195], [-118.404855, 33.87782099912622]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Hermosa Beach", "metadata": {"sqmi": 1.47762686009, "type": "standalone-city", "name": "Hermosa Beach", "slug": "hermosa-beach"}, "cases": 23.0, "population": 0.19669887967159838, "external_id": "hermosa-beach", "slug": "hermosa-beach-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/hermosa-beach-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.667411, 34.17674699912249], [-118.65858900000016, 34.1767489991226], [-118.658593, 34.17605899912249], [-118.659199, 34.17573799912247], [-118.65861900000012, 34.1756749991225], [-118.659486, 34.175233999122504], [-118.65859800000017, 34.17520899912252], [-118.65872100000014, 34.16927599912257], [-118.65801700000016, 34.1694379991226], [-118.654264, 34.16942699912255], [-118.65428100000014, 34.16572199912261], [-118.65203700000015, 34.165340999122634], [-118.65043600000023, 34.165710999122595], [-118.64553400000018, 34.16569599912263], [-118.64555300000026, 34.161984999122616], [-118.64197500000024, 34.161974999122656], [-118.63973500000013, 34.159090999122725], [-118.639867, 34.15881699912272], [-118.63997500000019, 34.15908599912268], [-118.63994300000022, 34.15888199912274], [-118.64027400000018, 34.1586799991227], [-118.64126900000016, 34.15831399912273], [-118.64127, 34.157923999122694], [-118.64575300000017, 34.15600399912271], [-118.64473900000017, 34.15745899912269], [-118.64472200000023, 34.15797199912276], [-118.64672200000012, 34.15724799912277], [-118.64677600000014, 34.1576689991228], [-118.64828700000015, 34.1587059991227], [-118.64936800000021, 34.15896499912266], [-118.64994868451143, 34.158922308094034], [-118.64998600000018, 34.157735999122615], [-118.65129500000018, 34.157747999122606], [-118.65130900000015, 34.15808899912272], [-118.65435300000017, 34.1581129991227], [-118.65431200000016, 34.16083699912271], [-118.65522400000016, 34.161092999122694], [-118.65517700000015, 34.158082999122655], [-118.65867792463554, 34.15795845714115], [-118.65868724738726, 34.15465040694591], [-118.66437201417665, 34.15465504916218], [-118.66531031872236, 34.15411004888559], [-118.66568111540369, 34.15136367309613], [-118.66638000000023, 34.15217899912277], [-118.66692500000016, 34.15230299912284], [-118.6675212123453, 34.15222263722826], [-118.66751211260497, 34.15465834410004], [-118.6685029780249, 34.15465880269921], [-118.6685032790368, 34.15481653174864], [-118.66866584456169, 34.154816921119846], [-118.66866798532526, 34.15465890900171], [-118.6742138066609, 34.15466427129864], [-118.67423362477263, 34.16590926695656], [-118.67437700000019, 34.16816499912262], [-118.66795000000018, 34.16810399912262], [-118.66815300000012, 34.176749999122485], [-118.667411, 34.17674699912249]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Hidden Hills", "metadata": {"sqmi": 1.70397314929, "type": "standalone-city", "name": "Hidden Hills", "slug": "hidden-hills"}, "cases": 0.0, "population": 0, "external_id": "hidden-hills", "slug": "hidden-hills-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/hidden-hills-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.190805, 34.13110799912307], [-118.190705, 34.13070799912289], [-118.188905, 34.13100799912296], [-118.187605, 34.128107999122946], [-118.185705, 34.128507999122995], [-118.185605, 34.128907999122994], [-118.18282421238357, 34.129715995032996], [-118.18258, 34.1291859991231], [-118.18134, 34.12949799912301], [-118.18149500000013, 34.12802999912309], [-118.18089600000012, 34.12833099912313], [-118.180193, 34.12642499912305], [-118.178583, 34.12671999912302], [-118.177833, 34.12665799912308], [-118.1777960000001, 34.12687699912303], [-118.1765410000001, 34.12662399912317], [-118.176955, 34.12314099912306], [-118.172804, 34.12477099912305], [-118.172936, 34.12581299912308], [-118.172539, 34.12578699912305], [-118.172299, 34.126081999123066], [-118.171303, 34.12635899912297], [-118.17043400000013, 34.12693099912309], [-118.169768, 34.126856999123106], [-118.1691, 34.12649199912309], [-118.167221, 34.12588499912304], [-118.165867, 34.12623799912307], [-118.165587, 34.125466999123105], [-118.167213, 34.1246559991232], [-118.167792, 34.12476699912298], [-118.168262, 34.124301999123205], [-118.168454, 34.12391399912313], [-118.168053, 34.12392299912315], [-118.168039, 34.12311199912304], [-118.16757, 34.121455999123114], [-118.168289, 34.12018299912315], [-118.16889, 34.11992399912314], [-118.16899900000013, 34.11934099912315], [-118.168833, 34.11866799912312], [-118.168866, 34.11784299912324], [-118.1727580000001, 34.11362699912319], [-118.175422, 34.113250999123274], [-118.175631, 34.11262699912322], [-118.17595, 34.11252599912324], [-118.1758233898305, 34.112433863529986], [-118.175915, 34.11227199912317], [-118.177005, 34.11290799912313], [-118.180505, 34.1111079991232], [-118.183205, 34.11160799912319], [-118.184305, 34.1109079991232], [-118.18610500000015, 34.10760899912323], [-118.192505, 34.1031089991234], [-118.19750500000015, 34.10260899912341], [-118.199606, 34.1018089991233], [-118.20060600000012, 34.10120899912325], [-118.20490600000012, 34.09610899912336], [-118.20620600000015, 34.09420899912352], [-118.20640600000013, 34.093208999123355], [-118.20620600000015, 34.0925089991234], [-118.20690600000015, 34.09070899912351], [-118.210106, 34.0873099991235], [-118.212906, 34.0864099991235], [-118.21200600000013, 34.0881099991235], [-118.21140600000015, 34.08890999912355], [-118.211106, 34.08980999912349], [-118.2113060000001, 34.091108999123584], [-118.211606, 34.09080899912352], [-118.211606, 34.0931089991233], [-118.21140600000015, 34.093708999123386], [-118.209906, 34.09530899912338], [-118.209206, 34.09640899912336], [-118.2061060000001, 34.09920899912333], [-118.205206, 34.101108999123376], [-118.20580600000017, 34.106008999123205], [-118.203806, 34.107008999123195], [-118.204806, 34.1085089991233], [-118.20770600000016, 34.1122089991231], [-118.20830600000014, 34.11250899912319], [-118.2081060000001, 34.11280799912305], [-118.2103060000001, 34.11480799912307], [-118.211706, 34.1158079991232], [-118.213706, 34.116207999123134], [-118.212906, 34.11770799912302], [-118.213506, 34.11940799912322], [-118.21440600000012, 34.120207999123096], [-118.2155060000001, 34.12060799912311], [-118.216806, 34.12080799912305], [-118.216206, 34.12320799912308], [-118.213706, 34.12260799912307], [-118.20890600000011, 34.121807999123064], [-118.20830600000014, 34.124407999122965], [-118.20390600000016, 34.12370799912302], [-118.203506, 34.12540799912299], [-118.2022060000001, 34.125207999122956], [-118.200306, 34.128107999122946], [-118.200006, 34.12790799912306], [-118.20000600000016, 34.12730799912308], [-118.198606, 34.12620799912295], [-118.19823500000014, 34.12661399912298], [-118.19810600000015, 34.12640799912301], [-118.19730600000013, 34.12650799912305], [-118.194506, 34.12640799912301], [-118.193906, 34.129507999123], [-118.192505, 34.129807999122946], [-118.191305, 34.130507999123], [-118.191205, 34.13110799912302], [-118.190805, 34.13110799912307]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Highland Park", "metadata": {"sqmi": 3.41941790034, "type": "segment-of-a-city", "name": "Highland Park", "slug": "highland-park"}, "cases": 96.0, "population": 0.48391974997479587, "external_id": "highland-park", "slug": "highland-park-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/highland-park-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.256407, 34.00481399912452], [-118.256407, 34.00381399912452], [-118.260707, 34.00391399912448], [-118.263907, 34.00371399912455], [-118.265207, 34.00381399912453], [-118.281107, 34.003712999124524], [-118.28120700000012, 34.005512999124456], [-118.281107, 34.01591299912426], [-118.28080700000015, 34.01691299912441], [-118.274607, 34.02651199912422], [-118.274307, 34.02811199912418], [-118.27410700000011, 34.03541199912403], [-118.25050700000011, 34.02451299912422], [-118.25410700000012, 34.020512999124335], [-118.25650700000011, 34.01471299912435], [-118.256407, 34.00481399912452]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Historic South-Central", "metadata": {"sqmi": 2.55351898402, "type": "segment-of-a-city", "name": "Historic South-Central", "slug": "historic-south-central"}, "cases": 130.0, "population": 0.38992201559688067, "external_id": "historic-south-central", "slug": "historic-south-central-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/historic-south-central-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.31781000000015, 34.152106999122736], [-118.31661, 34.15140699912278], [-118.31091, 34.15220699912263], [-118.30941000000011, 34.14700699912273], [-118.3095100000001, 34.141106999122805], [-118.309409, 34.11300799912316], [-118.30750900000015, 34.11340799912308], [-118.30760900000014, 34.10920799912327], [-118.308009, 34.108007999123195], [-118.309409, 34.10770799912324], [-118.309409, 34.10530899912325], [-118.32641, 34.10510799912329], [-118.32811, 34.10550799912318], [-118.32921000000016, 34.105207999123174], [-118.33051000000016, 34.10510799912329], [-118.33061, 34.10530799912326], [-118.33751, 34.10510799912329], [-118.33771, 34.10450799912321], [-118.33831, 34.10390799912326], [-118.34391, 34.10400799912322], [-118.34591, 34.10370799912325], [-118.34611000000012, 34.10450799912321], [-118.34481, 34.105807999123236], [-118.34551000000013, 34.107107999123244], [-118.34611000000012, 34.11150799912309], [-118.34461, 34.11270799912317], [-118.34401000000011, 34.11340799912308], [-118.34441000000014, 34.11510799912313], [-118.34601, 34.11540799912305], [-118.34751000000011, 34.115907999123145], [-118.348711, 34.11790799912305], [-118.348611, 34.11880799912308], [-118.34811100000012, 34.11900799912314], [-118.34751000000011, 34.11800799912305], [-118.34721, 34.11820799912308], [-118.3476110000001, 34.120107999123135], [-118.34911100000011, 34.120107999123135], [-118.351711, 34.119807999123076], [-118.353111, 34.11940799912322], [-118.35501100000012, 34.121106999123015], [-118.355911, 34.121206999123], [-118.356811, 34.12180699912304], [-118.358911, 34.12240699912304], [-118.35961100000011, 34.1230069991231], [-118.358111, 34.12360699912297], [-118.35951100000011, 34.12570699912303], [-118.36041100000013, 34.12590699912312], [-118.36081100000013, 34.12630699912293], [-118.360511, 34.127306999122986], [-118.35991100000011, 34.12830699912296], [-118.361211, 34.129206999122935], [-118.36271100000013, 34.129206999122935], [-118.363111, 34.12990699912297], [-118.362411, 34.12950699912294], [-118.361211, 34.129906999122866], [-118.360511, 34.130406999123096], [-118.361911, 34.13000699912289], [-118.363311, 34.13180699912287], [-118.361911, 34.13100699912297], [-118.360711, 34.13240699912296], [-118.359611, 34.133006999123054], [-118.358811, 34.13270699912302], [-118.35821100000011, 34.133206999122976], [-118.35721100000012, 34.13270699912295], [-118.35651100000013, 34.13200699912296], [-118.35601100000017, 34.13280699912298], [-118.354411, 34.13250699912291], [-118.353613, 34.13219699912287], [-118.352584, 34.13419199912297], [-118.35234439933073, 34.13433066911443], [-118.352136, 34.134158999122974], [-118.351592, 34.13410999912286], [-118.35068900000016, 34.13318799912311], [-118.34978700000015, 34.132535999123036], [-118.348775, 34.13138599912292], [-118.348405, 34.13198799912291], [-118.348657, 34.132463999122955], [-118.34845300000012, 34.13288499912289], [-118.347462, 34.13314399912302], [-118.3477740000001, 34.13346499912303], [-118.346714, 34.133890999122826], [-118.346717, 34.13419299912305], [-118.346489, 34.13435099912307], [-118.3465640000001, 34.13464599912288], [-118.345861, 34.134676999122924], [-118.34557600000015, 34.135108999122835], [-118.344213, 34.13606099912294], [-118.344424, 34.13680099912296], [-118.34402800000015, 34.13784899912293], [-118.3432300000001, 34.13821399912294], [-118.34517238806579, 34.14254730532219], [-118.34088, 34.144934999122775], [-118.340343, 34.145491999122875], [-118.339891, 34.145558999122834], [-118.338804, 34.14522799912282], [-118.33663700000011, 34.14649399912294], [-118.331028, 34.148317999122796], [-118.330067, 34.14974699912277], [-118.32890469865548, 34.15029374576136], [-118.32871000000014, 34.14980699912272], [-118.323038, 34.15246999912263], [-118.31781000000015, 34.152106999122736]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Hollywood Hills", "metadata": {"sqmi": 7.04764074288, "type": "segment-of-a-city", "name": "Hollywood Hills", "slug": "hollywood-hills"}, "cases": 59.0, "population": 0.2943377400848092, "external_id": "hollywood-hills", "slug": "hollywood-hills-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/hollywood-hills-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.370111, 34.12990699912297], [-118.36981100000014, 34.12930699912292], [-118.36791100000013, 34.12930699912297], [-118.36711100000011, 34.12890699912307], [-118.363111, 34.12810699912294], [-118.361811, 34.128206999122945], [-118.361011, 34.12800699912292], [-118.360511, 34.127306999122986], [-118.36081100000013, 34.12630699912293], [-118.36041100000013, 34.12590699912312], [-118.35951100000011, 34.12570699912303], [-118.358111, 34.12360699912297], [-118.35961100000011, 34.1230069991231], [-118.358911, 34.12240699912304], [-118.356811, 34.12180699912304], [-118.355911, 34.121206999123], [-118.35501100000012, 34.121106999123015], [-118.353111, 34.11940799912322], [-118.351711, 34.119807999123076], [-118.34911100000011, 34.120107999123135], [-118.3476110000001, 34.120107999123135], [-118.34721, 34.11820799912308], [-118.34751000000011, 34.11800799912305], [-118.34811100000012, 34.11900799912314], [-118.348611, 34.11880799912308], [-118.348711, 34.11790799912305], [-118.34751000000011, 34.115907999123145], [-118.34601, 34.11540799912305], [-118.34441000000014, 34.11510799912313], [-118.34401000000011, 34.11340799912308], [-118.34461, 34.11270799912317], [-118.34611000000012, 34.11150799912309], [-118.34551000000013, 34.107107999123244], [-118.34481, 34.105807999123236], [-118.34611000000012, 34.10450799912321], [-118.34581000000018, 34.103307999123224], [-118.35291, 34.10340799912323], [-118.35401000000013, 34.103307999123224], [-118.35401000000013, 34.1016079991233], [-118.359411, 34.1016079991233], [-118.36171100000013, 34.10120799912329], [-118.36179419954154, 34.097176003708874], [-118.366721, 34.097107999123466], [-118.36672, 34.09688799912356], [-118.367341, 34.09687899912335], [-118.36734200000012, 34.09709799912337], [-118.368168, 34.097086999123384], [-118.368209, 34.09803499912333], [-118.36864400000012, 34.09807099912342], [-118.3697990000001, 34.097212999123286], [-118.371574, 34.09642799912352], [-118.3726, 34.09567599912349], [-118.376577, 34.09474999912346], [-118.379297, 34.09295499912355], [-118.38118100000014, 34.09210399912355], [-118.38118300000012, 34.09332299912344], [-118.383369, 34.093326999123406], [-118.38337, 34.09372399912346], [-118.384378, 34.09372199912346], [-118.38445900000012, 34.09355699912347], [-118.385038, 34.09355799912332], [-118.385036, 34.09320199912349], [-118.38553, 34.09320299912347], [-118.385528, 34.09276299912345], [-118.385706, 34.092941999123475], [-118.385941, 34.0927679991235], [-118.38604, 34.09103599912342], [-118.395844, 34.0910549991235], [-118.395914, 34.0950129991235], [-118.396154, 34.09516299912349], [-118.396504, 34.095065999123364], [-118.396506, 34.096181999123495], [-118.395412, 34.09617299912344], [-118.394894, 34.096975999123345], [-118.392081, 34.09979399912345], [-118.392079, 34.106357999123325], [-118.392227, 34.106516999123286], [-118.391757, 34.106681999123275], [-118.3911970000001, 34.10748599912332], [-118.39057400000019, 34.10920299912327], [-118.3911400000001, 34.112422999123325], [-118.39157958912189, 34.1124259760246], [-118.39192000000011, 34.11421499912314], [-118.392096, 34.11448699912313], [-118.391651, 34.11419499912319], [-118.391012, 34.115206999123146], [-118.391712, 34.11700699912314], [-118.3906120000001, 34.11710699912318], [-118.3906120000001, 34.11760699912322], [-118.39031200000016, 34.118306999123234], [-118.388812, 34.11870699912312], [-118.390912, 34.11920699912309], [-118.39091200000014, 34.11990699912309], [-118.392112, 34.120406999123105], [-118.390012, 34.121106999123114], [-118.388712, 34.12090699912319], [-118.386912, 34.12180699912304], [-118.385812, 34.121406999123025], [-118.385012, 34.122006999123116], [-118.38321200000011, 34.122006999123116], [-118.38261200000012, 34.122606999123036], [-118.38161200000012, 34.122306999123055], [-118.38101200000011, 34.12300699912299], [-118.37571100000014, 34.12180699912313], [-118.37571100000014, 34.12330699912309], [-118.37541100000013, 34.12340699912316], [-118.374911, 34.12400699912312], [-118.374911, 34.12460699912307], [-118.373611, 34.12670699912286], [-118.37301100000015, 34.126406999123034], [-118.37171100000015, 34.126406999123034], [-118.371511, 34.126906999122994], [-118.372011, 34.12840699912318], [-118.372811, 34.129406999123084], [-118.373612, 34.13090699912306], [-118.372611, 34.131106999123], [-118.371311, 34.13010699912303], [-118.370111, 34.12990699912297]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Hollywood Hills West", "metadata": {"sqmi": 4.87457437609, "type": "segment-of-a-city", "name": "Hollywood Hills West", "slug": "hollywood-hills-west"}, "cases": null, "population": null, "external_id": "hollywood-hills-west", "slug": "hollywood-hills-west-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/hollywood-hills-west-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.32691, 34.105207999999514], [-118.32411, 34.105107999999724], [-118.309409, 34.10530899999958], [-118.309309, 34.083608999999576], [-118.319809, 34.08350899999959], [-118.324009, 34.08360899999972], [-118.34411, 34.0833089999996], [-118.34411082129503, 34.0888933953935], [-118.34338799999986, 34.08892799999961], [-118.343382, 34.09432799999974], [-118.361641, 34.09453599999972], [-118.361652, 34.097177999999616], [-118.36179419954144, 34.0971760045851], [-118.361711, 34.10120799999961], [-118.359411, 34.10160799999958], [-118.35401, 34.10160799999958], [-118.35401, 34.103307999999544], [-118.34581, 34.103307999999544], [-118.34591, 34.10370799999959], [-118.34391, 34.10400799999953], [-118.33831, 34.10390799999959], [-118.33771, 34.10450799999954], [-118.33751, 34.105107999999625], [-118.33061, 34.105307999999596], [-118.33051, 34.105107999999625], [-118.32921, 34.10520799999951], [-118.32811, 34.10550799999956], [-118.32691, 34.105207999999514]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Hollywood", "metadata": {"sqmi": 3.50639022096, "type": "segment-of-a-city", "name": "Hollywood", "slug": "hollywood"}, "cases": 193.0, "population": 0.6825335077978569, "external_id": "hollywood", "slug": "hollywood-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/hollywood-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.22353600000012, 33.9957139991247], [-118.22375800000022, 33.99386299912476], [-118.22354800000018, 33.99305299912482], [-118.22360700000016, 33.99147499912481], [-118.21522100000026, 33.99161599912476], [-118.21519800000011, 33.989815999124744], [-118.21277200000011, 33.989815999124744], [-118.2126120000002, 33.98419399912497], [-118.20414400000011, 33.983330999124995], [-118.204285, 33.98907899912477], [-118.20282800000012, 33.98891699912479], [-118.20264600000017, 33.98864899912478], [-118.194433, 33.98781899912485], [-118.19338100000026, 33.98749299912479], [-118.1922680000002, 33.98762099912487], [-118.1900150000002, 33.98741899912478], [-118.19011100000017, 33.98680499912484], [-118.18967400000018, 33.986784999124815], [-118.18967000000013, 33.98659199912489], [-118.18900900000021, 33.986561999124824], [-118.18958600000013, 33.981848999124836], [-118.1974110000002, 33.98265399912484], [-118.19753600000014, 33.98206399912484], [-118.20258100000014, 33.98256899912484], [-118.20254400000017, 33.980037999124825], [-118.20233700000023, 33.9796609991248], [-118.20429, 33.97987699912491], [-118.20428500000018, 33.979504999124906], [-118.20624300000014, 33.97963799912487], [-118.2061660000002, 33.976240999124876], [-118.20391100000023, 33.9759189991249], [-118.20350800000011, 33.97394699912489], [-118.20276300000017, 33.97187099912492], [-118.19979300000016, 33.97156599912492], [-118.19984200000017, 33.97120599912505], [-118.1994880000002, 33.971212999124944], [-118.1996120000001, 33.97039299912498], [-118.20189800000021, 33.97061099912498], [-118.20061400000017, 33.96873099912508], [-118.19955200000018, 33.967554999125085], [-118.1972150000002, 33.96544899912508], [-118.19234500000017, 33.961576999125086], [-118.212021, 33.963629999125246], [-118.21074698574172, 33.971822004760845], [-118.21762098624794, 33.97253900004339], [-118.21754298577561, 33.97341400469896], [-118.23009098617017, 33.974739001990315], [-118.23763198600773, 33.97473800076875], [-118.2376499859943, 33.97716600411239], [-118.2389539860212, 33.97717600071606], [-118.23902099059019, 33.98940300074951], [-118.23304400000016, 33.989340999125005], [-118.231092, 33.98960899912478], [-118.23108600000019, 33.98921299912479], [-118.23028400000017, 33.98921399912482], [-118.230273, 33.990342999124714], [-118.229663, 33.9903339991248], [-118.22968700000014, 33.99569199912468], [-118.22520500000013, 33.99569699912477], [-118.2252100000002, 33.9961079991247], [-118.22380900000016, 33.99614599912465], [-118.22381200000018, 33.996354999124684], [-118.2234970000002, 33.99635799912478], [-118.22353600000012, 33.9957139991247]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Huntington Park", "metadata": {"sqmi": 3.03466655287, "type": "standalone-city", "name": "Huntington Park", "slug": "huntington-park"}, "cases": 154.0, "population": 0.5948472324153116, "external_id": "huntington-park", "slug": "huntington-park-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/huntington-park-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.31700800000013, 34.003612999124634], [-118.31710800000018, 33.988912999124764], [-118.31760800000012, 33.98891299912483], [-118.317508, 33.98171299912489], [-118.317608, 33.970712999124984], [-118.31774723199024, 33.970712999124984], [-118.317747, 33.970922999125044], [-118.32184, 33.970916999124974], [-118.321887, 33.97079599912498], [-118.322315, 33.97079599912498], [-118.32236200000014, 33.9709159991251], [-118.326471, 33.970908999125044], [-118.32648, 33.967266999124945], [-118.33303, 33.967248999125], [-118.33302400000015, 33.97269599912504], [-118.335212, 33.97269099912483], [-118.335186, 33.9817579991249], [-118.35838644814693, 33.98166750817757], [-118.358509, 33.981911999124726], [-118.3582801803275, 33.98304551675896], [-118.35268298261069, 33.983059004695086], [-118.35268098897573, 33.98933499967645], [-118.34248699539597, 33.989415003420234], [-118.342473976764, 33.98845300143489], [-118.33726598260901, 33.988491004656865], [-118.33726498259321, 33.98898600470793], [-118.33775098954693, 33.98898400018702], [-118.33775298891564, 33.989466000277886], [-118.33725398261016, 33.98947400465335], [-118.33728198884775, 33.9963079996651], [-118.33162898259403, 33.99633300469205], [-118.33148498606828, 34.00149200244068], [-118.33185698606846, 34.002543002441314], [-118.33246922524283, 34.00338903404319], [-118.32920800000015, 34.00361299912457], [-118.322308, 34.003512999124546], [-118.31700800000013, 34.003612999124634]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Hyde Park", "metadata": {"sqmi": 2.88464641644, "type": "segment-of-a-city", "name": "Hyde Park", "slug": "hyde-park"}, "cases": 76.0, "population": 0.32234632920587636, "external_id": "hyde-park", "slug": "hyde-park-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/hyde-park-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.88393296024306, 33.99596513837542], [-117.8839679602466, 33.9956251383757], [-117.88831019396265, 33.99633580367612], [-117.88817559647809, 33.9974854705876], [-117.88377196022626, 33.99784013837963], [-117.88393296024306, 33.99596513837542]]], [[[-118.04406321380178, 34.02714873799544], [-118.04243334530351, 34.026661985154895], [-118.044279, 34.0269599991243], [-118.04712100000019, 34.02876399912426], [-118.04868214587087, 34.02883201755326], [-118.04762712660002, 34.02945187587972], [-118.04570021356696, 34.02887647506102], [-118.04406321380178, 34.02714873799544]]], [[[-118.00742800000022, 34.057790999123995], [-118.00363500000024, 34.055154999123985], [-118.00161200000014, 34.058913999123874], [-118.000696, 34.06124899912386], [-118.00032200000022, 34.06148499912391], [-117.9907980000002, 34.062530999123965], [-117.99037500000016, 34.06224099912392], [-117.99005400000016, 34.062806999123886], [-117.98977200000012, 34.062596999123755], [-117.989507, 34.06292799912383], [-117.988098, 34.06288099912392], [-117.98816700000019, 34.06260899912386], [-117.98653700000015, 34.062657999123964], [-117.98596200000019, 34.06326699912387], [-117.98524500000028, 34.06272399912387], [-117.985106, 34.06239999912394], [-117.98242999121163, 34.062633000114204], [-117.98547100000013, 34.05945399912391], [-117.98300000000013, 34.057768999124065], [-117.9852979893516, 34.05533900618562], [-117.98630698155675, 34.05603599949068], [-117.98671599006742, 34.05563000539558], [-117.98821098132987, 34.056671999305756], [-117.98923800000011, 34.055566999123904], [-117.986726, 34.05388499912394], [-117.99050400000019, 34.04996099912416], [-117.98143500000015, 34.043832999124156], [-117.95279100000022, 34.022805999124415], [-117.95414800000015, 34.019911999124375], [-117.9514800000001, 34.01766399912447], [-117.94826100000026, 34.015378999124415], [-117.94609200000015, 34.01409599912454], [-117.942359, 34.01239399912436], [-117.94179800000019, 34.0123369991245], [-117.941246, 34.01259299912452], [-117.94029900000014, 34.01187299912447], [-117.93921800000011, 34.01138699912448], [-117.92527000000015, 34.0090439991245], [-117.92405100000019, 34.01044199912443], [-117.9232160000002, 34.0126259991245], [-117.92156300000015, 34.01529599912445], [-117.92068300000017, 34.01709499912444], [-117.93166100000023, 34.017918999124404], [-117.93167400000013, 34.01608299912447], [-117.93784100000012, 34.01771299912441], [-117.93672000000016, 34.02236499912443], [-117.94309700000017, 34.022811999124244], [-117.94309700000017, 34.02444399912438], [-117.94473600000018, 34.02509199912429], [-117.94414700000019, 34.02586499912435], [-117.94381300000019, 34.02682099912422], [-117.94346800000012, 34.02689299912431], [-117.943497, 34.02809199912426], [-117.93779200000023, 34.02804599912432], [-117.93749800000022, 34.03378299912416], [-117.93734700000017, 34.03424999912422], [-117.94100800000022, 34.034531999124226], [-117.94080599065157, 34.03652999944679], [-117.93460199295998, 34.036164002907164], [-117.9346950000002, 34.03359399912423], [-117.935515985856, 34.02800600051953], [-117.93240598570969, 34.02782800314705], [-117.92277598567358, 34.02522200204278], [-117.91758899040165, 34.02468000466656], [-117.91997000000025, 34.01857599912439], [-117.919371, 34.01840899912442], [-117.91997600000019, 34.01691899912456], [-117.92355998570945, 34.01125100121223], [-117.91891798639193, 34.01154200071798], [-117.91664499257632, 34.01123400416885], [-117.91683998599596, 34.00932000010877], [-117.91462499954521, 34.009110003751125], [-117.91483398568604, 34.00736900163537], [-117.91070498525467, 34.00674300647126], [-117.91054898603926, 34.00813699946225], [-117.90918899980062, 34.00806900309967], [-117.90939298614242, 34.006924999803054], [-117.90840599233559, 34.00678500464746], [-117.90839498617926, 34.00635599973708], [-117.90248098528176, 34.00540200661032], [-117.90239998593788, 34.00632799976571], [-117.90174399284071, 34.00631700338911], [-117.90177400000015, 34.00595100239336], [-117.90201298586676, 34.00594700022023], [-117.90206198611598, 34.00533499984087], [-117.88127500000019, 34.00199699912459], [-117.876939, 34.001912999124634], [-117.87505900000019, 34.00213099912463], [-117.8728880000002, 34.00261499912455], [-117.871036, 34.00322599912461], [-117.86919200000017, 34.00404899912461], [-117.859372, 34.00940799912452], [-117.85661200000017, 34.01119599912451], [-117.85377300000019, 34.01278499912452], [-117.84933600000015, 34.016020999124386], [-117.84712200000021, 34.01734999912438], [-117.845778, 34.017982999124555], [-117.84172400000014, 34.019272999124425], [-117.840468, 34.02001599912443], [-117.839196, 34.020921999124404], [-117.8385970000002, 34.02161599912434], [-117.836913, 34.02561099912449], [-117.83597200000018, 34.026960999124285], [-117.83468500000016, 34.02784499912427], [-117.82749300000022, 34.031136999124335], [-117.82660700000018, 34.031847999124224], [-117.82552500000018, 34.033225999124284], [-117.82515400000021, 34.03321799912427], [-117.82509100000011, 34.03303699912438], [-117.82520900000014, 34.03299099912429], [-117.8247890000002, 34.03247199912426], [-117.82526400000026, 34.0317369991243], [-117.82513800000012, 34.03159199912425], [-117.82426800000019, 34.03256899912431], [-117.82194800000016, 34.0304789991243], [-117.82153800000026, 34.03089199912423], [-117.81979500000014, 34.029245999124264], [-117.82074100000021, 34.01253899912451], [-117.82137700000017, 34.01300099912446], [-117.822511, 34.012441999124526], [-117.82234900000019, 34.01188299912446], [-117.823263, 34.01039599912461], [-117.82371500000018, 34.01222899912445], [-117.8246330000001, 34.01191599912452], [-117.82490000000017, 34.01129299912457], [-117.8245850000002, 34.00972099912449], [-117.82508900000013, 34.00894899912462], [-117.82872600000019, 34.005689999124634], [-117.83418600000013, 34.00198899912462], [-117.83490300000018, 34.00183799912462], [-117.83571600000018, 34.00196999912457], [-117.84033300000016, 34.00175999912464], [-117.840965, 34.0034919991246], [-117.841022, 34.00611199912451], [-117.841141, 34.00641199912464], [-117.84215900000012, 34.006292999124554], [-117.84226800000012, 34.00677299912466], [-117.84185900000018, 34.00663699912464], [-117.84179900000025, 34.00689799912452], [-117.841189, 34.006604999124505], [-117.840357, 34.006598999124634], [-117.83908900000017, 34.00731899912458], [-117.8382340000002, 34.007542999124524], [-117.842022, 34.01002899912451], [-117.84292200000021, 34.00927499912442], [-117.84427300000031, 34.008483999124486], [-117.85517700000017, 34.00348299912453], [-117.85679000000016, 34.0019139991246], [-117.85646000000015, 34.00135599912464], [-117.85755600000019, 34.00083799912474], [-117.85854500000013, 34.000102999124636], [-117.85950300000029, 34.0015209991246], [-117.8613980000002, 34.00059999912465], [-117.8596840000001, 33.999229999124644], [-117.86011000000023, 33.998686999124644], [-117.8604210000001, 33.99715399912462], [-117.86190800000014, 33.99663399912476], [-117.86460938339444, 33.99642482824496], [-117.86682900000014, 33.99834699912466], [-117.86685200000018, 33.99862499912466], [-117.86797100000013, 33.999780999124646], [-117.871099, 33.99924299912461], [-117.87167500000011, 34.00163799912459], [-117.87465000000014, 34.001046999124675], [-117.87594400000017, 34.00039699912458], [-117.87649600000017, 34.000455999124746], [-117.87661900000012, 34.00011399912467], [-117.877879, 33.99966799912469], [-117.87777100000015, 33.99941699912464], [-117.87726200000017, 33.9994839991247], [-117.8771550000002, 33.9992329991248], [-117.87613700000017, 33.99926799912463], [-117.87638200000028, 33.99816699912463], [-117.86714200000021, 33.99859299912473], [-117.86542900000012, 33.996939999124834], [-117.86508399800834, 33.996372574645285], [-117.86837284417794, 33.99377009212252], [-117.868919, 33.994632999124725], [-117.869735, 33.994424999124746], [-117.86972712960579, 33.99303587452435], [-117.87001000000012, 33.99291099912477], [-117.87285205645891, 33.99332548764629], [-117.87265900000011, 33.99530399912468], [-117.87313600000014, 33.99535099912472], [-117.8732345081477, 33.994126687920186], [-117.87322860890643, 33.99543179743304], [-117.87382789380217, 33.99540096225707], [-117.87383472115604, 33.993569547501046], [-117.8790863899089, 33.994781434150234], [-117.88188671828361, 33.995265102617616], [-117.8817949600314, 33.997930138379246], [-117.88222396007363, 33.9979111383795], [-117.88221196007228, 33.99818213837967], [-117.882738474562, 33.99852148199926], [-117.88372830463295, 33.99860745802733], [-117.88362163939902, 33.99944042215995], [-117.88559115390386, 34.000101653790026], [-117.88717647131709, 34.00041793990203], [-117.88719380611464, 34.00026069675497], [-117.88803332515174, 34.00033054348028], [-117.88814482977457, 33.99935140934565], [-117.88740011977552, 33.999294853819976], [-117.88746781777144, 33.998658211243125], [-117.8882173882983, 33.99871421731989], [-117.88834552026414, 33.99758906471057], [-117.89416200000018, 33.99732499912466], [-117.89371687037834, 33.99633969423153], [-117.89395750716764, 33.99440945270526], [-117.8979789616277, 33.994468138378224], [-117.90045596187156, 33.99490613837964], [-117.90206896203046, 33.99494013838052], [-117.90185102173234, 33.99397690983686], [-117.90516900000021, 33.99382499912481], [-117.90538800000022, 33.99316699912488], [-117.90591100000012, 33.99306899912483], [-117.90631600000015, 33.993390999124884], [-117.90548500000014, 33.9939889991248], [-117.90673700000028, 33.993895999124796], [-117.9071383422669, 33.993717445104764], [-117.91010396282257, 33.993881138380765], [-117.910322962844, 33.99405713838059], [-117.91095396290628, 33.99406313838339], [-117.91121496293226, 33.993781138381024], [-117.91163496297413, 33.9922471383782], [-117.9118099629926, 33.98929413837471], [-117.91294096310396, 33.989743138374095], [-117.9139589632041, 33.989929138374755], [-117.92249796404514, 33.99032813837808], [-117.93015300000017, 33.990967999124734], [-117.93161292600024, 33.99087427370675], [-117.93099900000011, 33.997211999124644], [-117.9489506680739, 34.00239690323481], [-117.94870100000016, 34.006519999124556], [-117.95981265967663, 34.00986531188663], [-117.95867500000011, 34.01349199912457], [-117.9636850000002, 34.01553899912443], [-117.9646790000001, 34.01543699912442], [-117.96625100000011, 34.011828999124496], [-117.9735330000002, 34.014077999124474], [-117.97576687612423, 34.01497928253563], [-117.97524800000019, 34.015806999124486], [-117.97595835423184, 34.01609768877514], [-117.97557897398757, 34.01648495228202], [-117.97490897405117, 34.016383952282006], [-117.97371997416329, 34.01823695228362], [-117.97106897441397, 34.0207139522848], [-117.97313097421821, 34.02121095228544], [-117.97524097401755, 34.023414952287915], [-117.977129973839, 34.02102695228661], [-117.97512187933528, 34.02020854391074], [-117.97574300000011, 34.019174999124374], [-117.97988918846646, 34.02086884109508], [-117.97945897361788, 34.021932952287635], [-117.98191597338463, 34.02292195228889], [-117.98253497332618, 34.021933952288705], [-117.98991497262541, 34.02498495229241], [-117.989406972673, 34.0260239522932], [-117.99210597241678, 34.02713995229483], [-117.99245497238394, 34.026718952294374], [-118.00012297165561, 34.02968695229979], [-118.00265397141517, 34.03085795230037], [-118.00503497118915, 34.031634952301694], [-118.00647062157856, 34.0290235103976], [-118.00815025208144, 34.029022600123], [-118.00979900000014, 34.02860999912435], [-118.0107646413793, 34.02867617719223], [-118.01159948926349, 34.02818067932194], [-118.01238168734984, 34.028146250512606], [-118.012813, 34.027876999124324], [-118.0139299696134, 34.0278583005002], [-118.01512108911143, 34.02750557663537], [-118.01682856441136, 34.0276281809242], [-118.01955858934485, 34.02835999353858], [-118.02049071476952, 34.027978376171795], [-118.02156295706118, 34.0280876112537], [-118.02170719369998, 34.02790386699971], [-118.02413251201342, 34.027129637503734], [-118.02608886868515, 34.02735029560401], [-118.02642200711655, 34.027870661986334], [-118.02693500000017, 34.027680999124236], [-118.02697386053623, 34.02798069157815], [-118.02774612841245, 34.0276766436697], [-118.02808704592901, 34.02822328189697], [-118.03056500000027, 34.02709699912437], [-118.0312154131025, 34.027932693573305], [-118.05570129232106, 34.011250000522395], [-118.05582310119448, 34.01176051607085], [-118.05743200000032, 34.01428399912446], [-118.05626200000015, 34.015137999124434], [-118.05944700000015, 34.017298999124456], [-118.059254, 34.01781799912444], [-118.05875300000015, 34.01809799912443], [-118.05675900000016, 34.01849299912448], [-118.05568100000019, 34.018258999124434], [-118.0557840000002, 34.01814699912439], [-118.05461400000017, 34.017430999124464], [-118.05415300000018, 34.01789199912438], [-118.05412500000017, 34.016723999124395], [-118.05268800000029, 34.01788699912442], [-118.05093100000019, 34.01670799912437], [-118.04893900000026, 34.01867199912441], [-118.04876500000015, 34.018556999124435], [-118.04710000000023, 34.02011099912433], [-118.04731900000023, 34.02052699912444], [-118.04687300000028, 34.02077199912442], [-118.04472000000018, 34.02114699912435], [-118.04426100000026, 34.02159299912439], [-118.04468200000017, 34.02187999912435], [-118.04421700000016, 34.023130999124355], [-118.03759919699154, 34.02717485614442], [-118.03725255498719, 34.03062696160986], [-118.03790249396451, 34.0337023364932], [-118.03778297171854, 34.0332260057295], [-118.03599998397976, 34.03206800869788], [-118.03510797171494, 34.03289000572835], [-118.03531797171561, 34.0315200057267], [-118.03502097171533, 34.03142600572647], [-118.032971980413, 34.029621006855336], [-118.03095898603904, 34.03089200226412], [-118.02736398419003, 34.03373600014078], [-118.02679997170323, 34.03344000572716], [-118.02590897170234, 34.03245100572566], [-118.02587097863874, 34.02994400263655], [-118.00816898584483, 34.03171400230399], [-118.00530298599622, 34.03185800192837], [-118.00310298611424, 34.03153200259066], [-118.00202797166956, 34.031194005718376], [-117.99562498135147, 34.02858000756636], [-117.99535898433439, 34.028777997737045], [-117.99010697165394, 34.02871600571245], [-117.99069797165453, 34.02931000571343], [-117.99156597165552, 34.0298400057142], [-117.99045398142609, 34.03098199943277], [-117.98697598570882, 34.028623004124434], [-117.98403897164458, 34.031476005714616], [-117.98675397164773, 34.03334100571769], [-117.98396198127965, 34.03634099935114], [-117.98114898420057, 34.034397009156784], [-117.97843798138676, 34.03710199967632], [-117.97651797163257, 34.035912005718615], [-117.97741497163422, 34.035041005717716], [-117.97593297163266, 34.03366700571559], [-117.97761097163543, 34.03199400571371], [-117.97060398415707, 34.027171009083055], [-117.96903698209796, 34.02872199893774], [-117.96743197844698, 34.027219012095586], [-117.96590697162047, 34.02857800570654], [-117.97124498143931, 34.03249699940834], [-117.97178399036005, 34.031945005252076], [-117.97229897162822, 34.032266005712955], [-117.97185897162714, 34.032920005713585], [-117.97327498093969, 34.03389799924541], [-117.97375699050838, 34.033333005806135], [-117.9743459716303, 34.03375800571525], [-117.97383897162946, 34.034277005715786], [-117.97900698140181, 34.03780999940015], [-117.97958499036365, 34.03721100531132], [-117.9803669716374, 34.037708005721804], [-117.98069497163775, 34.037983005722296], [-117.98020397163693, 34.03863500572305], [-117.98176398155334, 34.03971299948927], [-117.98215999018589, 34.03932100526011], [-117.98309298262981, 34.03992699974626], [-117.98370398492452, 34.03950400222719], [-117.98529398380963, 34.03790000628783], [-117.9857619814744, 34.03802999759708], [-117.98590798544792, 34.03768501287091], [-117.98729797164681, 34.03864100572463], [-117.98656298190707, 34.039344999322815], [-117.9860869844032, 34.03896701003538], [-117.98405197164132, 34.041299005727275], [-117.98526597164282, 34.042136005728665], [-117.9851399716424, 34.042362005729075], [-117.98830498309536, 34.04450400001292], [-117.99003498611356, 34.04355900322916], [-117.99019198480208, 34.04480200063124], [-117.99051198684694, 34.044620004226154], [-117.9908429716495, 34.04476700573338], [-117.99002498833535, 34.045669997169135], [-117.99093698272362, 34.04629299973173], [-117.9927349716523, 34.04428700573328], [-117.99180297165121, 34.04374600573224], [-117.99271397682153, 34.04268201695101], [-117.99287797165294, 34.04303800573183], [-117.99300798858282, 34.042552012802695], [-117.99384398669618, 34.04310800406906], [-117.99328698495762, 34.043403000787244], [-117.99360497165375, 34.0436050057326], [-117.99316298537269, 34.0441790051763], [-117.99442498628564, 34.044387999674015], [-117.99311197165221, 34.04604500573566], [-117.99350897165266, 34.046369005736025], [-117.99342598141277, 34.04645199959848], [-117.99292098586493, 34.04612800989462], [-117.9921879716506, 34.04714800573688], [-117.99910798287371, 34.05199999983566], [-117.99941298722796, 34.05179800454569], [-118.0004529716602, 34.052574005745726], [-118.00036797166004, 34.05286200574615], [-118.00170298218934, 34.053785998534465], [-118.00224799071862, 34.053172005389776], [-118.00389997166467, 34.05406900574861], [-118.00666497557272, 34.05588599479469], [-118.00832597167154, 34.05130000574602], [-118.00991497167463, 34.04851300574292], [-118.0087249716739, 34.04606900573926], [-118.00941097167531, 34.044854005737996], [-118.0085409786131, 34.04412700280812], [-118.00779898593187, 34.044210003280725], [-118.00809898497991, 34.04231000080214], [-118.0151479865851, 34.03867500392269], [-118.01549899169375, 34.03700999839947], [-118.01641998635571, 34.03653400649724], [-118.01727898615147, 34.03663999994001], [-118.01778098590925, 34.037100003722315], [-118.01858298483717, 34.037059999414005], [-118.02082398679067, 34.03582900414442], [-118.02549698629484, 34.03855800350862], [-118.0203169853363, 34.04076200124857], [-118.02068500000016, 34.04188299912413], [-118.01631500000016, 34.044007999124034], [-118.01498700000018, 34.044930999123984], [-118.01282700000013, 34.046826999124], [-118.01153100000023, 34.04835999912403], [-118.01002400000021, 34.050722999124], [-118.00927700000024, 34.05236099912404], [-118.00742800000022, 34.057790999123995]], [[-117.9649879872772, 34.02785699632568], [-117.96656997162198, 34.02642800570392], [-117.96596297947949, 34.025876012849125], [-117.96446997161888, 34.027449005704675], [-117.9649879872772, 34.02785699632568]]], [[[-118.00742800000022, 34.057790999123995], [-118.0124810000002, 34.06105399912391], [-118.01184400000017, 34.062507999123895], [-118.0115940000002, 34.062398999123886], [-118.011115, 34.06333299912391], [-118.01142400000013, 34.06307199912392], [-118.01164800000018, 34.063131999123904], [-118.01141200000022, 34.06359899912392], [-118.01052, 34.06368999912387], [-118.01030800000018, 34.06276099912386], [-118.00966700000018, 34.06250999912378], [-118.01036700000023, 34.06106899912393], [-118.00979700000016, 34.06087799912392], [-118.00896800000012, 34.0626019991239], [-118.00820400000015, 34.062522999123836], [-118.007712, 34.063227999123924], [-118.007064, 34.06358099912393], [-118.0064020000002, 34.06358399912391], [-118.0059630000002, 34.06419699912382], [-118.00464200000013, 34.064376999123844], [-118.00576000000015, 34.06158499912389], [-118.00615900000015, 34.06150599912391], [-118.00742800000022, 34.057790999123995]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Industry", "metadata": {"sqmi": 12.3503569476, "type": "standalone-city", "name": "Industry", "slug": "industry"}, "cases": 1.0, "population": 0.004370056373727221, "external_id": "industry", "slug": "industry-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/industry-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.3666762430939, 33.98186875603094], [-118.3662520000002, 33.981644999124875], [-118.33518600000018, 33.981757999124966], [-118.33521200000015, 33.97269099912491], [-118.33302400000025, 33.972695999125065], [-118.33303000000018, 33.96724899912502], [-118.32648000000013, 33.96726699912499], [-118.3264710000002, 33.97090899912509], [-118.32236200000021, 33.97091599912512], [-118.32231500000015, 33.97079599912502], [-118.32188700000016, 33.97079599912502], [-118.32184000000018, 33.97091699912502], [-118.31774700000011, 33.97092299912509], [-118.31775297908966, 33.93090100164793], [-118.31339198605862, 33.93091200460982], [-118.3133920000002, 33.93068299912547], [-118.32209900000032, 33.93057099912544], [-118.32207200000018, 33.92903999912556], [-118.32642, 33.92909499912545], [-118.3264220000002, 33.92878799912551], [-118.32551000000014, 33.92879099912568], [-118.325542, 33.9267149991256], [-118.32642700000015, 33.92676899912554], [-118.32643000000016, 33.92613899912552], [-118.32674800000025, 33.926118999125535], [-118.326866, 33.925834999125584], [-118.33002200000021, 33.92521399912564], [-118.33277000000012, 33.925176999125526], [-118.33521900000011, 33.925387999125576], [-118.33666500000012, 33.9259269991256], [-118.33727700000013, 33.92709299912547], [-118.33736400000016, 33.92921699912555], [-118.3363460000001, 33.92932899912546], [-118.3363070000002, 33.93058399912546], [-118.34099300000011, 33.930580999125524], [-118.34386300000018, 33.930809999125536], [-118.34387500000018, 33.93100399912554], [-118.34422500000022, 33.9309869991255], [-118.34607400000019, 33.93204799912545], [-118.346297, 33.93237899912552], [-118.346348, 33.93252699912533], [-118.34610699077291, 33.932694001543624], [-118.34609298597675, 33.933255000189575], [-118.34574998612402, 33.9332630038719], [-118.34574398613628, 33.93344000003378], [-118.3450509861027, 33.93344600397483], [-118.34500798614592, 33.93665800373706], [-118.34605598603187, 33.936613001064124], [-118.34605298605146, 33.93735800075263], [-118.34546998617319, 33.937403003495554], [-118.34547598602991, 33.937833000837045], [-118.34489998617669, 33.93788200344013], [-118.3449109860922, 33.93820700402259], [-118.34531798608452, 33.93820600078068], [-118.34534098596235, 33.93851400065219], [-118.34456498616618, 33.938566003568525], [-118.34453898608776, 33.94000100021785], [-118.34425798613168, 33.94000000493039], [-118.34428498609708, 33.940913003999654], [-118.34444898607768, 33.94091200080675], [-118.34445098631961, 33.941455003078616], [-118.34429698585492, 33.941508001728614], [-118.3443079860918, 33.94272400402343], [-118.34668397913322, 33.94271700040126], [-118.34668499307557, 33.94206700308384], [-118.34690897924057, 33.94206400056318], [-118.34691999306307, 33.94185600314267], [-118.34730598607689, 33.94185300081888], [-118.34730498574102, 33.94209300494829], [-118.34797698643803, 33.942184999860395], [-118.34797598608313, 33.94272400407137], [-118.35207797914128, 33.942730000355326], [-118.35207899303474, 33.94181300327269], [-118.354814986098, 33.94182300075026], [-118.35481898611425, 33.944025003956384], [-118.35589598607477, 33.94401100085668], [-118.35589998609481, 33.944475004047675], [-118.35645197917599, 33.944475000356], [-118.35645499317349, 33.944253002428255], [-118.3569569790863, 33.944215001544286], [-118.3569579930507, 33.943932003215004], [-118.35783398609432, 33.943931000774036], [-118.35782698609997, 33.94426100403152], [-118.359114979124, 33.94425800039262], [-118.35911399304874, 33.94361500322717], [-118.35966298609756, 33.943615000766066], [-118.35968798609107, 33.94396200407465], [-118.36020398610435, 33.94396400073923], [-118.36020698609627, 33.94436200405458], [-118.36183798609903, 33.94436300076632], [-118.36184698598541, 33.944883004432285], [-118.36241798628832, 33.944915000828104], [-118.36301097908124, 33.94481400303142], [-118.36300599305477, 33.94451500320713], [-118.36662298080607, 33.94455100052952], [-118.36771198610315, 33.9433110024074], [-118.36780399290957, 33.9413920048591], [-118.36820598613386, 33.94172000390755], [-118.36877798607694, 33.94170900089165], [-118.36933997220858, 33.94300800568968], [-118.36888897220778, 33.94355500569013], [-118.36877098613978, 33.945405003878584], [-118.37003698623577, 33.9454199988107], [-118.370057, 33.95267199912537], [-118.37884300000026, 33.95264699912525], [-118.37879000000018, 33.95889499912517], [-118.378382, 33.958895999125225], [-118.37752200000013, 33.96018699912514], [-118.37607800000016, 33.96134999912518], [-118.37123900000014, 33.96336699912507], [-118.37161600000016, 33.96685199912505], [-118.371918, 33.967386999125054], [-118.37254000000017, 33.9671309991251], [-118.37289700000011, 33.96760699912506], [-118.37236600000017, 33.96798899912504], [-118.37014800000013, 33.96799299912506], [-118.37010800000017, 33.97660799912495], [-118.37034100000024, 33.981635999124784], [-118.36692700000016, 33.9816329991249], [-118.3666762430939, 33.98186875603094]]], [[[-118.37437398612072, 33.97972200193409], [-118.3744639860066, 33.979710001717514], [-118.37621198615261, 33.98286300262151], [-118.37538798690017, 33.98295800135227], [-118.37180499401644, 33.98205800273462], [-118.37180199543336, 33.979847001519005], [-118.37437398612072, 33.97972200193409]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Inglewood", "metadata": {"sqmi": 9.12268299949, "type": "standalone-city", "name": "Inglewood", "slug": "inglewood"}, "cases": 335.0, "population": 1.1358242354377162, "external_id": "inglewood", "slug": "inglewood-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/inglewood-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.92939800000015, 34.140126999122955], [-117.92953500000017, 34.12937599912309], [-117.9293820000002, 34.12635599912304], [-117.92890200000016, 34.12583499912313], [-117.92672600000019, 34.122002999123126], [-117.92670700000022, 34.12084899912317], [-117.92776800000016, 34.119755999123186], [-117.92957200000022, 34.11958599912318], [-117.93135800000032, 34.120555999123155], [-117.931395, 34.12166499912316], [-117.93829500000014, 34.12164699912319], [-117.93839700000015, 34.11430799912317], [-117.928569, 34.11432299912321], [-117.92881200000014, 34.10850599912329], [-117.92811000000015, 34.10849299912331], [-117.92802700000021, 34.110446999123305], [-117.92530200000013, 34.1105729991233], [-117.92539300016206, 34.09952800145877], [-117.92656098553145, 34.09937400158537], [-117.93020798590888, 34.09826600290265], [-117.93030399990592, 34.095939003161014], [-117.93680398586163, 34.096096999778226], [-117.93684598586488, 34.094139000482485], [-117.93650199276051, 34.09412400374622], [-117.93650298576581, 34.09305700084649], [-117.93416700002628, 34.093076002337206], [-117.93415899999111, 34.09151600249066], [-117.93592998492731, 34.09153300378875], [-117.93696100000018, 34.091842999123536], [-117.93842300000013, 34.09186499912352], [-117.93853400000022, 34.091707999123486], [-117.939792, 34.091683999123546], [-117.93976400000011, 34.0924319991235], [-117.94949100000015, 34.09233999912357], [-117.950993, 34.091923999123516], [-117.95229500000018, 34.09123199912354], [-117.95473500000013, 34.08904999912356], [-117.95477800000012, 34.09234299912355], [-117.95354600000019, 34.092353999123546], [-117.95350900000014, 34.09589099912354], [-117.95459700000016, 34.096007999123515], [-117.95459800000019, 34.09961899912344], [-117.94298000000019, 34.0997489991235], [-117.94295300000017, 34.1070639991234], [-117.9471420000003, 34.107023999123285], [-117.94720400000017, 34.10677099912333], [-117.947921, 34.10668999912334], [-117.94826300000015, 34.10674199912334], [-117.94828700000015, 34.107011999123394], [-117.95210700000014, 34.10697299912337], [-117.95210100000014, 34.10677499912329], [-117.95287600000016, 34.10671199912331], [-117.95373900000028, 34.10677099912333], [-117.95372000000023, 34.106956999123334], [-117.96103800000013, 34.10696299912327], [-117.97264, 34.10660599912335], [-117.97630300000012, 34.1065569991234], [-117.97756200000013, 34.10671899912338], [-117.97792500000017, 34.105384999123295], [-117.97799200000023, 34.099377999123405], [-117.98407300000021, 34.09912299912341], [-117.98441900000014, 34.092205999123514], [-117.984404, 34.092007999123545], [-117.982902, 34.09201499912345], [-117.98279600000014, 34.08108299912359], [-117.9983540000001, 34.07745599912367], [-118.00117500000017, 34.07693599912375], [-118.00105500000015, 34.079112999123794], [-118.00023900000028, 34.08292099912375], [-117.9985970000001, 34.08714899912355], [-117.995296, 34.091548999123596], [-117.993758, 34.09310499912349], [-117.99145, 34.09505999912351], [-117.992226, 34.09505299912344], [-117.99663900000012, 34.09654999912349], [-117.99509300000011, 34.099718999123525], [-118.00805400000012, 34.10410899912333], [-118.007067, 34.10612899912331], [-118.0029350000002, 34.104718999123406], [-118.0010990000002, 34.108506999123406], [-118.0043690000002, 34.1095049991233], [-118.00356200000016, 34.111243999123275], [-118.00380800000012, 34.11120799912328], [-118.00469, 34.109557999123325], [-118.00531600000014, 34.10970999912326], [-118.004642, 34.111088999123346], [-118.00384800000018, 34.11740399912328], [-118.0007200000002, 34.11612899912317], [-117.99651812109745, 34.11768324332478], [-117.9922, 34.117809999123125], [-117.99148300000022, 34.11968099912318], [-117.99129790174716, 34.11979136634926], [-117.99000266244042, 34.119588925549714], [-117.98965706828751, 34.12047999353587], [-117.99099800000018, 34.120906999123086], [-117.99054300000022, 34.122120999123155], [-117.98786500000013, 34.12138599912313], [-117.98695700000019, 34.12378599912305], [-117.98623900000017, 34.12359099912307], [-117.9863710000002, 34.12462299912317], [-117.98581900000013, 34.12491999912314], [-117.98523800000022, 34.12621599912314], [-117.98444900000011, 34.12604499912303], [-117.98236800000018, 34.126798999123125], [-117.982314, 34.12666199912308], [-117.98193000000015, 34.12664899912305], [-117.98194200000017, 34.12626899912317], [-117.97928100000028, 34.12627499912316], [-117.979198, 34.1251069991231], [-117.97754500000022, 34.125288999123114], [-117.97753600000013, 34.12500999912313], [-117.97358500000016, 34.12515499912309], [-117.97269600000013, 34.126467999123115], [-117.97058300000012, 34.12816999912305], [-117.96966200000021, 34.12844999912307], [-117.96922700000017, 34.130318999123006], [-117.9692660000002, 34.13221699912297], [-117.96769500000015, 34.13206499912304], [-117.960115, 34.13222299912308], [-117.9602320000001, 34.13489599912304], [-117.96066600000017, 34.13535499912296], [-117.96002700000015, 34.136075999122994], [-117.95205200000015, 34.136125999123045], [-117.95200000000013, 34.135910999123006], [-117.94891200000015, 34.13575099912295], [-117.946958, 34.13738499912295], [-117.94686000000013, 34.13718399912295], [-117.94629500000022, 34.137757999122975], [-117.94442800000016, 34.13695499912298], [-117.94380700000012, 34.137491999122986], [-117.93949700000033, 34.13459799912303], [-117.9390140000002, 34.134896999123036], [-117.93926600000017, 34.135308999123005], [-117.93936300000023, 34.13593899912301], [-117.93399100000016, 34.140812999122886], [-117.92939800000015, 34.140126999122955]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Irwindale", "metadata": {"sqmi": 9.58225973628, "type": "standalone-city", "name": "Irwindale", "slug": "irwindale"}, "cases": 2.0, "population": 0.014590020426028595, "external_id": "irwindale", "slug": "irwindale-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/irwindale-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.3090080000001, 34.0364109991242], [-118.3090080000001, 34.025611999124216], [-118.317708, 34.02561199912427], [-118.317708, 34.01901199912423], [-118.32830900000012, 34.02151199912432], [-118.335109, 34.02271199912422], [-118.335109, 34.03261099912418], [-118.333809, 34.03501099912416], [-118.331409, 34.03521099912408], [-118.32840900000011, 34.03571099912418], [-118.323609, 34.036110999124155], [-118.320009, 34.03671099912401], [-118.315308, 34.037210999124255], [-118.3090080000001, 34.03741099912408], [-118.3090080000001, 34.0364109991242]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Jefferson Park", "metadata": {"sqmi": 1.4190200982, "type": "segment-of-a-city", "name": "Jefferson Park", "slug": "jefferson-park"}, "cases": 22.0, "population": 0.08073098234927159, "external_id": "jefferson-park", "slug": "jefferson-park-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/jefferson-park-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.286908, 34.07650999912369], [-118.286908, 34.0690099991236], [-118.28710800000015, 34.06780999912369], [-118.28720800000013, 34.06201099912385], [-118.287913, 34.06200699912378], [-118.28790800000016, 34.05991099912378], [-118.289208, 34.059910999123936], [-118.289208, 34.05251099912384], [-118.29160800000012, 34.05251099912384], [-118.292708, 34.05291099912394], [-118.306408, 34.05281099912386], [-118.3112090000001, 34.05291099912394], [-118.315909, 34.05261099912384], [-118.319609, 34.05351099912386], [-118.323009, 34.05480999912394], [-118.3193090000001, 34.06190999912386], [-118.31443600000011, 34.061906999123785], [-118.314093, 34.06236199912393], [-118.31440900000011, 34.0712099991237], [-118.313609, 34.07180999912379], [-118.313809, 34.07310999912358], [-118.313709, 34.07630999912366], [-118.286908, 34.07650999912369]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Koreatown", "metadata": {"sqmi": 2.70048311541, "type": "segment-of-a-city", "name": "Koreatown", "slug": "koreatown"}, "cases": 333.0, "population": 1.3020632353381267, "external_id": "koreatown", "slug": "koreatown-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/koreatown-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.22209442715742, 34.24273456772886], [-118.222453, 34.24091899912175], [-118.22247, 34.24005099912174], [-118.22186700000017, 34.233730999121725], [-118.21752200000019, 34.233798999121746], [-118.21740300000023, 34.23728299912188], [-118.21331100000017, 34.2371189991218], [-118.19781900000012, 34.23728899912168], [-118.198139, 34.23630199912173], [-118.19764100000013, 34.23484999912176], [-118.19630600000026, 34.23456499912185], [-118.19571100000016, 34.23359499912183], [-118.1946060000002, 34.23350299912184], [-118.189906, 34.231102999121866], [-118.19050600000025, 34.228602999121904], [-118.19020600000022, 34.228102999121845], [-118.191206, 34.226702999121926], [-118.19083200000017, 34.22604399912197], [-118.19103500000016, 34.22550499912196], [-118.19048800000019, 34.22462199912187], [-118.18996600000018, 34.22456599912184], [-118.18999100000023, 34.22391199912191], [-118.18817900000016, 34.223227999121896], [-118.18804800000015, 34.22288699912193], [-118.18813400000019, 34.22260099912199], [-118.18450600000017, 34.22260399912192], [-118.18450600000017, 34.221103999121894], [-118.18219100000016, 34.220580999122], [-118.18116400000017, 34.219822999121945], [-118.180406, 34.21800399912196], [-118.18151500000027, 34.218496999121946], [-118.18290200000014, 34.21844799912198], [-118.18347800000015, 34.21807799912189], [-118.18358500000019, 34.216401999121985], [-118.18410400000016, 34.21604399912199], [-118.18248300000013, 34.215696999121974], [-118.1812050000002, 34.21521999912205], [-118.18033700000015, 34.215896999122], [-118.17985100000017, 34.21562799912208], [-118.17980900000025, 34.2147809991221], [-118.17848700000019, 34.214345999121996], [-118.17812700000027, 34.21381399912208], [-118.17834000000032, 34.21380299912201], [-118.177699, 34.21321199912213], [-118.17794700000029, 34.213053999122025], [-118.1773190000002, 34.21230599912197], [-118.17639900000027, 34.21248999912207], [-118.17653200000026, 34.21183799912203], [-118.17607800000029, 34.21183999912206], [-118.17596200000013, 34.21240899912212], [-118.175578, 34.21240899912215], [-118.17451000000018, 34.211431999122105], [-118.1754210000001, 34.21068399912205], [-118.17560600000023, 34.21080199912208], [-118.17550500000023, 34.21100399912204], [-118.1759310000001, 34.21112699912216], [-118.17639400000022, 34.21104599912203], [-118.17662800000019, 34.2108309991221], [-118.17654600000017, 34.20922399912215], [-118.17595900000029, 34.208203999122084], [-118.17593000000015, 34.20771099912203], [-118.17554400000013, 34.20683399912206], [-118.175762, 34.20608599912214], [-118.17564400000012, 34.20578099912218], [-118.17504300000013, 34.20564499912213], [-118.1742790000002, 34.20603899912215], [-118.17399100000017, 34.206818999122085], [-118.17386400000012, 34.20683299912209], [-118.17391700000016, 34.20641299912214], [-118.17357500000021, 34.206211999122054], [-118.17361200000015, 34.205574999122156], [-118.17302500000027, 34.20596399912214], [-118.17263200000019, 34.20574299912205], [-118.17243800000024, 34.20593499912215], [-118.17225800000031, 34.205768999122135], [-118.17265400000024, 34.20545999912215], [-118.1727060000001, 34.2046019991221], [-118.17100500000022, 34.2046019991221], [-118.17100500000022, 34.20390399912218], [-118.1689050000002, 34.2038039991222], [-118.16930500000012, 34.20150399912216], [-118.17131200000024, 34.19832099912237], [-118.17172900000016, 34.19855099912214], [-118.172205, 34.19690499912237], [-118.17407900000016, 34.19663899912224], [-118.17316000000017, 34.19768699912226], [-118.17545700000016, 34.1976789991223], [-118.176021, 34.19661099912222], [-118.1774020000002, 34.194923999122196], [-118.17781000000011, 34.194149999122246], [-118.17797200000031, 34.19421599912235], [-118.17791400000021, 34.19391199912222], [-118.178293, 34.19276099912227], [-118.17833700000021, 34.189454999122326], [-118.17889900000016, 34.18794799912235], [-118.17874000000012, 34.18712899912245], [-118.17831400000014, 34.18652199912237], [-118.17875700000013, 34.1869519991224], [-118.17975500000031, 34.1873609991224], [-118.18030500000017, 34.18740499912237], [-118.18071500000016, 34.186428999122434], [-118.17892500000019, 34.18567099912231], [-118.17743700000018, 34.18561699912237], [-118.17660500000015, 34.185804999122304], [-118.1759880000002, 34.18550499912242], [-118.17572800000019, 34.18530499912236], [-118.1754460000002, 34.18404099912229], [-118.17462600000019, 34.183662999122326], [-118.17417, 34.18288699912232], [-118.176282, 34.18215299912241], [-118.17618500000012, 34.18184799912239], [-118.18013500000016, 34.18075499912252], [-118.18117200000027, 34.18001599912244], [-118.18155000000016, 34.179505999122405], [-118.18221500000017, 34.17988499912248], [-118.18336700000022, 34.180235999122445], [-118.18400700000011, 34.179773999122396], [-118.18442500000019, 34.17969299912246], [-118.18731700000016, 34.17947599912243], [-118.1885320000002, 34.17813599912243], [-118.18888600000011, 34.17831699912246], [-118.1887730000002, 34.178512999122425], [-118.18954000000015, 34.17904399912242], [-118.189633, 34.17896599912246], [-118.189791, 34.179311999122454], [-118.19023000000013, 34.17910199912241], [-118.19120000000018, 34.180011999122364], [-118.19125300000013, 34.18035099912247], [-118.19533800000018, 34.18010599912233], [-118.1964380000001, 34.179893999122456], [-118.19786100000023, 34.1812319991224], [-118.198867, 34.181690999122466], [-118.20179100000014, 34.183713999122396], [-118.20520200000017, 34.18570799912234], [-118.20589800000015, 34.18704499912237], [-118.20790600000015, 34.18730499912238], [-118.2074180000001, 34.189044999122366], [-118.21022900000021, 34.189842999122234], [-118.21181300000013, 34.19090299912231], [-118.21230900000013, 34.19262599912233], [-118.21270700000015, 34.19240499912229], [-118.21073100000015, 34.194599999122296], [-118.21397000000019, 34.19665099912226], [-118.21420700000016, 34.1977049991222], [-118.215807, 34.1984049991222], [-118.215901, 34.200756999122135], [-118.21670700000027, 34.20090499912219], [-118.21680700000022, 34.20330399912215], [-118.21577600000015, 34.203397999122195], [-118.21563000000016, 34.20382399912212], [-118.21500700000021, 34.20380399912225], [-118.21500700000021, 34.20663199912214], [-118.21635600000019, 34.206200999122075], [-118.21731500000018, 34.205521999122055], [-118.2203250000002, 34.204860999122175], [-118.22047400000018, 34.206257999122116], [-118.22213298112396, 34.206109000238065], [-118.22224297191494, 34.2107050060026], [-118.22198197191422, 34.211966006004054], [-118.22218197191407, 34.2129530060055], [-118.22586997191877, 34.21412000600779], [-118.22589798530609, 34.21450300564003], [-118.22618498661313, 34.21456399949049], [-118.22616997191868, 34.21597800601031], [-118.22718698617281, 34.216371000225614], [-118.22721498581215, 34.216887004753865], [-118.22828598053974, 34.21697099906202], [-118.2284019929456, 34.216691003562644], [-118.22868398600596, 34.21669600067841], [-118.22864298582095, 34.217264004734346], [-118.22995897917869, 34.21734899940939], [-118.22996499288192, 34.21720000378081], [-118.23076498602842, 34.217227000610166], [-118.23194197192609, 34.217858006014154], [-118.23203497192594, 34.218314006014666], [-118.23086898402453, 34.21939700044552], [-118.23024498586051, 34.21958100222982], [-118.22940398655815, 34.22081700072735], [-118.22887598605121, 34.22085700374369], [-118.22871697191972, 34.22305300602014], [-118.22716498659193, 34.228383999260835], [-118.22654098559381, 34.228499001658015], [-118.22647597191478, 34.22875600602689], [-118.22683197191489, 34.22971700602824], [-118.22661797191428, 34.23075200602962], [-118.22721998533267, 34.23151000561766], [-118.22802798658284, 34.23167599953515], [-118.22777097191522, 34.23257700603236], [-118.22811498783454, 34.23371900493893], [-118.22706198711842, 34.234564002654295], [-118.22518898614328, 34.23759700314187], [-118.2248339857664, 34.237716002018125], [-118.2248499719092, 34.23844400603914], [-118.22379598730774, 34.23996000461891], [-118.22316698459903, 34.24037800054387], [-118.22296698634683, 34.24109199911489], [-118.22274598647445, 34.24107300612773], [-118.22307597190559, 34.24198400604327], [-118.22281098553016, 34.24233300156703], [-118.22269798153603, 34.243231000412884], [-118.221995, 34.24323799912172], [-118.22209442715742, 34.24273456772886]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "La Canada Flintridge", "metadata": {"sqmi": 8.60460338961, "type": "standalone-city", "name": "La Canada Flintridge", "slug": "la-canada-flintridge"}, "cases": 36.0, "population": 0.20693222969477496, "external_id": "la-canada-flintridge", "slug": "la-canada-flintridge-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/la-canada-flintridge-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.2369219719215, 34.25211800605981], [-118.22161097190047, 34.25156000605537], [-118.22190597190335, 34.24403300604584], [-118.22266297190454, 34.24350700604524], [-118.22281098553026, 34.242333001567054], [-118.22307597190569, 34.24198400604332], [-118.22274598647455, 34.241073006127756], [-118.22296698634693, 34.24109199911491], [-118.22316698459913, 34.24037800054391], [-118.22379598730784, 34.23996000461897], [-118.2248499719093, 34.238444006039195], [-118.22483398576652, 34.23771600201816], [-118.22518898614341, 34.237597003141886], [-118.22706198711852, 34.23456400265434], [-118.22811498783464, 34.233719004939], [-118.22777097191532, 34.232577006032386], [-118.22802798658294, 34.23167599953517], [-118.22721998533277, 34.23151000561769], [-118.22661797191435, 34.23075200602964], [-118.22683197191499, 34.22971700602827], [-118.22647597191488, 34.22875600602694], [-118.22654098559391, 34.22849900165805], [-118.227164986592, 34.22838399926086], [-118.22871697191982, 34.223053006020166], [-118.22887598605128, 34.220857003743745], [-118.22940398655825, 34.22081700072741], [-118.23024498586061, 34.219581002229894], [-118.2308689840246, 34.21939700044553], [-118.23203497192603, 34.21831400601469], [-118.23194197192619, 34.21785800601418], [-118.23076498602852, 34.217227000610194], [-118.22996499288202, 34.21720000378087], [-118.22995897917879, 34.21734899940941], [-118.22864298582103, 34.21726400473437], [-118.22868398600606, 34.21669600067847], [-118.2284019929457, 34.2166910035627], [-118.22828598053984, 34.21697099906205], [-118.22721498581222, 34.216887004753914], [-118.22718698617291, 34.21637100022567], [-118.2261699719188, 34.21597800601036], [-118.22618498661323, 34.21456399949051], [-118.22589798530619, 34.21450300564008], [-118.22586997191887, 34.214120006007825], [-118.22218197191414, 34.21295300600555], [-118.22198197191429, 34.21196600600411], [-118.22224297191504, 34.21070500600266], [-118.22211298603128, 34.20577000563873], [-118.22341598640438, 34.20584699927297], [-118.22333798606103, 34.20530100353639], [-118.22415497878723, 34.20521600281126], [-118.22416998587674, 34.205363004565356], [-118.22501597905449, 34.20539600130134], [-118.22496698548133, 34.20551300538638], [-118.22581197982342, 34.20565799979998], [-118.22566298597526, 34.20656700421777], [-118.22696598578248, 34.20658699953252], [-118.2272029845569, 34.20592100649243], [-118.22866597884112, 34.20612400223732], [-118.22851297192506, 34.20696600599925], [-118.22891098757401, 34.2071049974795], [-118.22915498501386, 34.206502007726144], [-118.2293489719263, 34.20657500599885], [-118.22915097192576, 34.20719200599963], [-118.22946598736435, 34.20729699761621], [-118.22976898492462, 34.206590007547334], [-118.23076197192819, 34.20688700599974], [-118.2303809719274, 34.20763600600051], [-118.23070198708821, 34.20775699716504], [-118.23117098593954, 34.20701500692244], [-118.2320289719298, 34.207267006000365], [-118.23258798581446, 34.20843700219906], [-118.23300398603645, 34.208319002812466], [-118.23301298567182, 34.20791600682257], [-118.23374197967938, 34.2080400000224], [-118.23524197193372, 34.20880800600313], [-118.23519997193227, 34.213031006008656], [-118.237541971935, 34.21448400601101], [-118.2370319719341, 34.21508600601176], [-118.23929197193675, 34.21656600601413], [-118.2394269857331, 34.21745500495935], [-118.2399589726425, 34.21767997527344], [-118.23995597193775, 34.21658600601439], [-118.24063397193842, 34.21696400601491], [-118.24054997193832, 34.21715600601524], [-118.24253098306635, 34.21849300018096], [-118.24274998091735, 34.218350007297516], [-118.24304198227047, 34.21845199988579], [-118.24339798539292, 34.21810200831069], [-118.24435197194312, 34.2187060060181], [-118.24431897194228, 34.22070900602069], [-118.24875297194788, 34.22249500602407], [-118.24851198146645, 34.24400900768971], [-118.24777498462981, 34.243829007297364], [-118.24735198481473, 34.24443699428911], [-118.24705798682716, 34.2442010041767], [-118.24691898511122, 34.24427600099692], [-118.2471059808799, 34.24491200729241], [-118.24668898603662, 34.245099002934076], [-118.24641898445759, 34.24549999436942], [-118.24626699009642, 34.245385005476955], [-118.24525998313608, 34.24639199939445], [-118.24441098541082, 34.24607000862193], [-118.24435197911629, 34.24671000486778], [-118.24386798549618, 34.24685700213409], [-118.24346799838874, 34.246595022726126], [-118.24337198070427, 34.2520500007964], [-118.23880799072303, 34.25220200343299], [-118.2369219719215, 34.25211800605981]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "La Crescenta-Montrose", "metadata": {"sqmi": 3.42644417184, "type": "unincorporated-area", "name": "La Crescenta-Montrose", "slug": "la-crescenta-montrose"}, "cases": 16.0, "population": 0.19801980198019803, "external_id": "la-crescenta-montrose", "slug": "la-crescenta-montrose-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/la-crescenta-montrose-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.36673575413067, 34.015310144504994], [-118.36717298965321, 34.00708799994498], [-118.36684299051318, 34.00707600371889], [-118.3662299860918, 34.00635200244775], [-118.3650269822155, 34.005555005190935], [-118.36265599492454, 34.00631599923107], [-118.36206098608892, 34.00695200244773], [-118.36198197493425, 34.00748300491877], [-118.36144798608825, 34.007690002447994], [-118.3614359768946, 34.00833200489534], [-118.35861498591107, 34.00905700130363], [-118.35754298269588, 34.00914500436619], [-118.35749198608566, 34.00724300244741], [-118.35912298608771, 34.001631002443915], [-118.35903298608768, 34.0010200024436], [-118.35819098608746, 33.99927000244232], [-118.35780498568305, 33.99714500176503], [-118.35936697217711, 33.996806005757094], [-118.35993597217794, 33.99683400575712], [-118.363143972182, 33.99798400575951], [-118.36537497218494, 33.9983390057604], [-118.36563397218558, 33.997301005759134], [-118.36548397218557, 33.99661200575816], [-118.36435197218468, 33.99488800575572], [-118.36415297218466, 33.99400800575455], [-118.3635609721842, 33.99294100575306], [-118.3634729721853, 33.9894990057485], [-118.361506972184, 33.98504200574225], [-118.36125998590585, 33.983034004046374], [-118.3717029889801, 33.98300199963576], [-118.37169598230702, 33.98203700675267], [-118.37582998602403, 33.982965000720995], [-118.37621198615271, 33.982863002621556], [-118.37446398600667, 33.979710001717535], [-118.37180199543346, 33.97984700151903], [-118.3718089827094, 33.977318004363276], [-118.37718398611672, 33.97702000201574], [-118.38034098594174, 33.97635500310189], [-118.38541898563784, 33.97665800292167], [-118.38655198611075, 33.97716000243135], [-118.3856509818367, 33.97856299750151], [-118.38450499150407, 33.978469005005806], [-118.37931598610405, 33.987579002437315], [-118.37864698610346, 33.98899000243802], [-118.37890999196173, 33.99271199860295], [-118.38210998683184, 33.99111200389278], [-118.38220898612434, 33.988956004013225], [-118.38800697461714, 33.98891100724408], [-118.38340999056088, 33.99231199741051], [-118.38589398610755, 33.99350400244189], [-118.38500898116199, 33.996433997474426], [-118.38380899101934, 33.99610000740383], [-118.38240999263074, 34.00031200443179], [-118.388622985858, 34.00120200234829], [-118.39036798610933, 34.00165400244757], [-118.39072298610948, 34.00194000244791], [-118.39012998610889, 34.00293500244852], [-118.38770898610645, 34.00818200245145], [-118.38782098610643, 34.0085690024518], [-118.38750998222538, 34.009668008884255], [-118.38432898405671, 34.012485997927776], [-118.37951698644277, 34.011416007129846], [-118.37859698514855, 34.0119329990585], [-118.37285799549137, 34.011921003115766], [-118.37264897701621, 34.015839000842945], [-118.3667189832137, 34.0156220050355], [-118.36673575413067, 34.015310144504994]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Ladera Heights", "metadata": {"sqmi": 2.93973763627, "type": "unincorporated-area", "name": "Ladera Heights", "slug": "ladera-heights"}, "cases": 15.0, "population": 0.07071135624381276, "external_id": "ladera-heights", "slug": "ladera-heights-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/ladera-heights-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.9353160301623, 33.973158168274715], [-117.91825867124435, 33.96920031218677], [-117.92151900000023, 33.95994799912517], [-117.92152000000019, 33.95955799912522], [-117.92575900000023, 33.94602899912529], [-117.93176400000024, 33.945913999125345], [-117.96079500000022, 33.94601299912536], [-117.9610400000003, 33.945878999125355], [-117.96117300000019, 33.94601299912536], [-117.96478000000023, 33.94590399912532], [-117.96660600000017, 33.945999999125284], [-117.96679700000018, 33.94603599912539], [-117.96676300000013, 33.94672599912536], [-117.96634300000022, 33.94671899912531], [-117.96568100000025, 33.947842999125236], [-117.96604800000016, 33.94783299912533], [-117.965576, 33.94869999912529], [-117.96561800000028, 33.94971399912523], [-117.9866530000002, 33.949436999125254], [-117.98616700000014, 33.950343999125224], [-117.98697600000015, 33.95044799912533], [-117.98728100000014, 33.95024999912527], [-117.98819200000013, 33.95055499912527], [-117.98864600000022, 33.9498229991253], [-117.988888, 33.949704999125245], [-117.99209300000021, 33.94969299912527], [-117.99269000000012, 33.94956299912526], [-117.99299700000012, 33.9499289991253], [-117.98171600000032, 33.95700999912512], [-117.98098800000022, 33.95789899912515], [-117.98162100000027, 33.95837399912519], [-117.98363700000016, 33.95902299912512], [-117.98386100000015, 33.95958899912517], [-117.9834340000002, 33.96016299912514], [-117.98327300000024, 33.96091399912513], [-117.98193500000012, 33.960998999125046], [-117.98244300000012, 33.9619279991251], [-117.98385000000023, 33.96342699912512], [-117.98370100000012, 33.96452199912501], [-117.98362700000017, 33.9646569991251], [-117.976921, 33.96474799912509], [-117.976757, 33.96566899912504], [-117.97696300000013, 33.96633299912501], [-117.97666100000028, 33.966500999125074], [-117.97607600000026, 33.96632199912498], [-117.97628600000017, 33.974485999125015], [-117.97431555579237, 33.97415796932355], [-117.96877735630378, 33.97257183085358], [-117.95797430647731, 33.97253606053579], [-117.9496119925358, 33.97463932246795], [-117.9496107702344, 33.97507396840948], [-117.94774400000014, 33.97545199912502], [-117.94772614752529, 33.97602327832117], [-117.9353160301623, 33.973158168274715]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "La Habra Heights", "metadata": {"sqmi": 6.22726592484, "type": "standalone-city", "name": "La Habra Heights", "slug": "la-habra-heights"}, "cases": 2.0, "population": 0.05455537370430988, "external_id": "la-habra-heights", "slug": "la-habra-heights-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/la-habra-heights-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.50091800000011, 34.22090299912183], [-118.5010180000001, 34.21540399912202], [-118.50091700000011, 34.21270399912196], [-118.501117, 34.211903999121915], [-118.50101700000015, 34.20830399912206], [-118.49461700000013, 34.20830399912203], [-118.494717, 34.201103999122054], [-118.49251700000012, 34.201103999122054], [-118.49251700000012, 34.19380399912225], [-118.4903170000001, 34.193803999122224], [-118.49034800000013, 34.18643299912223], [-118.518417, 34.186403999122305], [-118.518617, 34.19260399912219], [-118.518518, 34.22080299912185], [-118.502518, 34.221002999121836], [-118.50091800000011, 34.22090299912183]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Lake Balboa", "metadata": {"sqmi": 3.12585429603, "type": "segment-of-a-city", "name": "Lake Balboa", "slug": "lake-balboa"}, "cases": 90.0, "population": 0.42205965109735505, "external_id": "lake-balboa", "slug": "lake-balboa-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/lake-balboa-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.46165981439844, 34.702876849101784], [-118.46162517011187, 34.69923174955157], [-118.45280034272774, 34.6991897225409], [-118.4527735388628, 34.69550746758646], [-118.44393565093958, 34.69540508332281], [-118.44387569497232, 34.68830443388804], [-118.43061395544542, 34.688275668673654], [-118.43061123039065, 34.68795804844798], [-118.41304533655584, 34.687970809932764], [-118.41290668887686, 34.6738710727373], [-118.41730070685684, 34.673871772097286], [-118.41726197545313, 34.666587304256275], [-118.43048784601469, 34.66660947903074], [-118.43041073366388, 34.65943725166697], [-118.45674103668516, 34.65923129946811], [-118.4567122221968, 34.65197115408582], [-118.46557275829456, 34.651922201222824], [-118.46555331779746, 34.65010887976348], [-118.4699421311451, 34.6501093140024], [-118.46992262950332, 34.648295991771526], [-118.47870308978528, 34.64829640172775], [-118.47868554587683, 34.64644627938949], [-118.48305744148657, 34.64643492909422], [-118.48306498401051, 34.64462158339332], [-118.49203777852055, 34.64473553560444], [-118.49443463689428, 34.642773430371186], [-118.49465755581326, 34.6419791158663], [-118.49679622998639, 34.6403924043029], [-118.49769630235866, 34.64038298161678], [-118.49863479771042, 34.64005615739776], [-118.50035323389628, 34.639941192599274], [-118.50069681476567, 34.64054377844867], [-118.50059696455224, 34.64467475053702], [-118.49401125852637, 34.64476946798624], [-118.49403039434151, 34.64566702222385], [-118.48992538598962, 34.645659912657784], [-118.48964374891939, 34.64582610522837], [-118.48965274770255, 34.64655180064317], [-118.48855461551909, 34.64654000465064], [-118.48857219557706, 34.64833626885912], [-118.48415445056611, 34.648285375763415], [-118.48415357488499, 34.649196172481425], [-118.48304670132727, 34.64918513041515], [-118.48311766926828, 34.65560738646941], [-118.46560342089224, 34.65556530705647], [-118.4657171150526, 34.681138409598596], [-118.47468479270215, 34.68111568107172], [-118.47472792424404, 34.68464518297056], [-118.47914908980258, 34.684597491374426], [-118.47916126713548, 34.68647122839292], [-118.48354921249134, 34.68642067737859], [-118.48358207512067, 34.690058204865046], [-118.48800896152179, 34.690069274583756], [-118.48801644318834, 34.69098003266682], [-118.49244633218828, 34.69098955522151], [-118.4924566577594, 34.69190029798465], [-118.49687130024982, 34.69191104388089], [-118.49689143454508, 34.693729818165004], [-118.50130565933127, 34.69373762684356], [-118.50132527245597, 34.69555223985396], [-118.50573100650888, 34.695538035963864], [-118.50576080856399, 34.699157707853985], [-118.50136015975532, 34.69915959391432], [-118.50139505560557, 34.702766932874916], [-118.48370880321868, 34.70271405981773], [-118.46165981439844, 34.702876849101784]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Lake Hughes", "metadata": {"sqmi": 9.38403052074, "type": "unincorporated-area", "name": "Lake Hughes", "slug": "lake-hughes"}, "cases": 0.0, "population": 0, "external_id": "lake-hughes", "slug": "lake-hughes-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/lake-hughes-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.84505468931268, 34.631391951883174], [-117.8450500712808, 34.63120060779416], [-117.809364218105, 34.63125062945128], [-117.80921721732155, 34.60194262941813], [-117.81810121740334, 34.60205262925615], [-117.81803403605433, 34.59823962156431], [-117.82661527689818, 34.59821210328054], [-117.82675844708066, 34.59180585683946], [-117.83562430249059, 34.5918005233647], [-117.83562404290686, 34.587241700750376], [-117.84451552935025, 34.58717963885903], [-117.84443121704636, 34.57989662874884], [-117.86217821720511, 34.57993962842573], [-117.86245221740622, 34.58738562842977], [-117.85711789910289, 34.58726638844695], [-117.85344181841387, 34.58661006944215], [-117.85234886097109, 34.586664309814644], [-117.84987999945906, 34.58719839666711], [-117.84449899470457, 34.58720935278703], [-117.84457902449492, 34.616327875896], [-117.84459706090125, 34.616484709167516], [-117.86248221818414, 34.6165316284641], [-117.86263921837926, 34.623791628470435], [-117.85363472075343, 34.6238080039118], [-117.85380779649992, 34.63120521818633], [-117.86279621857769, 34.6311636284761], [-117.86286121877176, 34.638422628484975], [-117.85395757117696, 34.63845249874371], [-117.85400785550287, 34.6421812680843], [-117.84526971056141, 34.64215254945017], [-117.84505468931268, 34.631391951883174]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Lake Los Angeles", "metadata": {"sqmi": 6.95819809473, "type": "unincorporated-area", "name": "Lake Los Angeles", "slug": "lake-los-angeles"}, "cases": 17.0, "population": 0.12993961629595657, "external_id": "lake-los-angeles", "slug": "lake-los-angeles-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/lake-los-angeles-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.3873940000001, 34.29823299912109], [-118.38739, 34.296962999120964], [-118.382878, 34.29695599912106], [-118.382951, 34.293329999121184], [-118.382371, 34.2933289991211], [-118.382372, 34.29152599912105], [-118.386911, 34.29149399912118], [-118.386916, 34.289733999121104], [-118.3846190000001, 34.289730999121126], [-118.38461799999989, 34.28817499912114], [-118.385762, 34.28481699912118], [-118.381859, 34.28389699912116], [-118.377103, 34.28336399912122], [-118.3748010000001, 34.28365999912115], [-118.374675, 34.28282699912129], [-118.372637, 34.28283199912116], [-118.37351899906301, 34.283166001591596], [-118.37365700000014, 34.28598499912115], [-118.373517, 34.28614599912117], [-118.369838, 34.286126999121116], [-118.370474, 34.28450999912112], [-118.37053100000011, 34.28360799912121], [-118.37135, 34.28234299912118], [-118.370176, 34.281897999121014], [-118.369515, 34.283461999121144], [-118.3689, 34.283257999121254], [-118.368105, 34.28205199912128], [-118.3674070000001, 34.28036899912108], [-118.367281, 34.28058899912134], [-118.364279, 34.280764999121274], [-118.361314, 34.279727999121185], [-118.360516, 34.27995999912114], [-118.3547080000001, 34.27884799912124], [-118.351735, 34.27883299912125], [-118.351729, 34.282474999121156], [-118.326831, 34.28243499912116], [-118.326914, 34.28605999912125], [-118.31714360651196, 34.28608209854985], [-118.317455, 34.28372899912106], [-118.315919, 34.28110499912111], [-118.316111, 34.280600999121205], [-118.31701100000012, 34.28030099912117], [-118.317311, 34.27950099912119], [-118.31901100000012, 34.27930099912126], [-118.319411, 34.278900999121205], [-118.319329, 34.27828099912124], [-118.318729, 34.275660999121214], [-118.31778200000012, 34.27529599912127], [-118.31658100000013, 34.27556199912125], [-118.316411, 34.27530099912117], [-118.316998, 34.27446299912122], [-118.31708100000014, 34.27406799912126], [-118.315411, 34.274300999121266], [-118.318474, 34.27309799912121], [-118.3234110000001, 34.27290099912125], [-118.32661200000014, 34.27390099912123], [-118.32771200000012, 34.27380099912115], [-118.329012, 34.272801999121334], [-118.330812, 34.2723019991213], [-118.331248, 34.2719699991212], [-118.33455800000011, 34.2716349991212], [-118.33650200000014, 34.271100999121245], [-118.34065600000012, 34.27235399912129], [-118.3425280000001, 34.27204999912126], [-118.344, 34.272033999121305], [-118.345456, 34.27161799912123], [-118.34577600000011, 34.27132999912121], [-118.34667200000015, 34.27102599912139], [-118.34736000000015, 34.27116999912124], [-118.348928, 34.2707859991213], [-118.35145700000011, 34.27060999912127], [-118.35224100000013, 34.27024199912127], [-118.35483300000011, 34.269809999121335], [-118.355857, 34.268945999121335], [-118.35716700000017, 34.26873499912136], [-118.359137, 34.27277699912113], [-118.359313, 34.2720019991213], [-118.36061300000016, 34.27220199912128], [-118.36111300000013, 34.2726019991211], [-118.361095, 34.27289699912131], [-118.381394, 34.27411299912126], [-118.3823820000001, 34.27374299912122], [-118.391781, 34.27333299912138], [-118.39391400000011, 34.27350199912125], [-118.39459700000012, 34.273864999121294], [-118.408326, 34.28688999912116], [-118.40767933041626, 34.28736472062902], [-118.406168, 34.28592699912125], [-118.401588, 34.28642299912101], [-118.401143, 34.288449999121], [-118.400822, 34.288444999121005], [-118.400906, 34.29014299912115], [-118.400232, 34.29257199912101], [-118.399814, 34.29341999912119], [-118.396984, 34.2933479991211], [-118.396743, 34.29698299912105], [-118.393711, 34.29697899912102], [-118.393635, 34.29878799912113], [-118.38739600000011, 34.29877999912105], [-118.3873940000001, 34.29823299912109]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Lake View Terrace", "metadata": {"sqmi": 4.23104663578, "type": "segment-of-a-city", "name": "Lake View Terrace", "slug": "lake-view-terrace"}, "cases": 56.0, "population": 0.13132900260312844, "external_id": "lake-view-terrace", "slug": "lake-view-terrace-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/lake-view-terrace-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.16418000000016, 33.82768499912678], [-118.16418500000017, 33.82311899912691], [-118.16436700000013, 33.8216219991268], [-118.16473800000027, 33.82021399912685], [-118.16756200000015, 33.82014899912687], [-118.16755400000011, 33.82769199912679], [-118.16418000000016, 33.82768499912678]]], [[[-118.16418000000016, 33.82768499912678], [-118.164182, 33.84705699912655], [-118.16755900000015, 33.846939999126576], [-118.16774500000018, 33.854443999126474], [-118.16634200000021, 33.854431999126426], [-118.16418300000026, 33.85408999912645], [-118.16420000000011, 33.854779999126436], [-118.15582700000013, 33.854830999126456], [-118.15584700000029, 33.85732399912639], [-118.15761300000014, 33.85734899912629], [-118.15697200000018, 33.85783599912638], [-118.15709900000024, 33.86018299912635], [-118.14676900000022, 33.860252999126416], [-118.14653100000014, 33.86430199912632], [-118.14650900000021, 33.86793699912635], [-118.146901, 33.86900799912626], [-118.12902000000011, 33.86903699912624], [-118.12515200000014, 33.86817799912623], [-118.11720400000023, 33.86814199912629], [-118.11431000000015, 33.86923699912637], [-118.114279, 33.865573999126326], [-118.1084290000002, 33.8655869991264], [-118.108316, 33.8582829991263], [-118.10636200000013, 33.85829699912642], [-118.10574700000032, 33.85851299912631], [-118.10394400000017, 33.85851999912636], [-118.10391000000021, 33.85831299912632], [-118.10278800000027, 33.85831999912643], [-118.1000850000001, 33.84827599912654], [-118.09893900000017, 33.845874999126565], [-118.08680400000013, 33.84596899912648], [-118.08653300000017, 33.850125999126355], [-118.0835120000002, 33.85018799912647], [-118.082027, 33.85013299912645], [-118.081981, 33.84600599912656], [-118.062393, 33.846160999126504], [-118.0599190000003, 33.846383999126594], [-118.05835700000019, 33.84634799912648], [-118.05918800000022, 33.84413699912656], [-118.059197, 33.835214999126705], [-118.05944900000023, 33.83499699912675], [-118.06061000000017, 33.834877999126675], [-118.06101000000017, 33.834684999126644], [-118.06138800000016, 33.83373099912669], [-118.06182200000015, 33.833409999126665], [-118.0677110000002, 33.83344899912674], [-118.06770700000031, 33.83249099912672], [-118.068362, 33.83248899912671], [-118.06912600000013, 33.833217999126674], [-118.06912200000023, 33.83482199912675], [-118.06819700000017, 33.83473599912675], [-118.06819500000013, 33.83490599912663], [-118.06768200000029, 33.83490799912679], [-118.06764100000018, 33.837991999126714], [-118.07204600000013, 33.837991999126665], [-118.07204700000013, 33.83872999912662], [-118.0791410000001, 33.83871799912658], [-118.07883900000013, 33.83725999912665], [-118.07952700000016, 33.83726799912671], [-118.0796790000003, 33.83694699912668], [-118.079836, 33.8340099991267], [-118.08154700000028, 33.83397599912664], [-118.08185400000022, 33.83418399912667], [-118.08182700000022, 33.83145499912669], [-118.09031000000014, 33.831435999126754], [-118.09330900000015, 33.83171199912673], [-118.09333800000016, 33.831878999126694], [-118.09444100000017, 33.83184899912661], [-118.09740800000017, 33.832183999126734], [-118.12514500000016, 33.83227599912672], [-118.12507500000018, 33.84705499912655], [-118.13229900000026, 33.84707799912656], [-118.1321180000002, 33.84651699912661], [-118.13378800000014, 33.84666699912647], [-118.14248500000012, 33.84669399912652], [-118.142544, 33.832353999126724], [-118.14950100000013, 33.8323759991267], [-118.15070300000022, 33.829481999126706], [-118.15204800000022, 33.82875499912684], [-118.15420100000017, 33.828815999126775], [-118.15410300000013, 33.82755199912671], [-118.15599600000026, 33.82756399912675], [-118.15579400000013, 33.825031999126814], [-118.157788, 33.825039999126744], [-118.1610660000002, 33.827576999126784], [-118.16418000000016, 33.82768499912678]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Lakewood", "metadata": {"sqmi": 9.51248700913, "type": "standalone-city", "name": "Lakewood", "slug": "lakewood"}, "cases": 83.0, "population": 0.8036405886909372, "external_id": "lakewood", "slug": "lakewood-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/lakewood-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.00462700000018, 33.92646599912558], [-118.00351298585566, 33.92307700235819], [-117.99743298587906, 33.92447500124663], [-117.9943990000183, 33.9245050022698], [-117.99433798603215, 33.91821300015903], [-117.99233399264855, 33.91804500401986], [-117.99243898584612, 33.917451002341686], [-117.9916849929254, 33.91762200074484], [-117.99197198583799, 33.91721300077764], [-117.97649499293007, 33.91731200309699], [-117.97649600000024, 33.913512999125665], [-117.97669600000019, 33.91151299912559], [-117.97669600000019, 33.91061299912581], [-117.97649600000024, 33.90981299912578], [-117.97659600000013, 33.90261299912588], [-117.9842960000002, 33.902812999125814], [-117.98529600000018, 33.90261299912588], [-117.98529500000012, 33.89531299912596], [-117.99412900000014, 33.89550299912595], [-117.994113, 33.89002499912608], [-117.99397400000016, 33.889689999126], [-117.99415200000018, 33.88828799912605], [-117.99484600000015, 33.88829499912611], [-117.99507900000022, 33.88811199912602], [-118.00282800000016, 33.88811199912602], [-118.00281000000014, 33.884178999126014], [-118.00292200000023, 33.883759999126006], [-118.00260800000018, 33.8837669991261], [-118.002596, 33.8809099991261], [-118.01146000000017, 33.880912999126075], [-118.0113890000002, 33.87341899912627], [-118.02877600000019, 33.873318999126354], [-118.02911500000016, 33.9025259991258], [-118.034308, 33.902489999125905], [-118.03441300000021, 33.904140999125815], [-118.0356630000002, 33.90356399912592], [-118.03679800000022, 33.904212999125846], [-118.037849, 33.90416599912587], [-118.03794700000017, 33.91541499912565], [-118.03643100000014, 33.91541299912571], [-118.03644799058202, 33.91700000129196], [-118.01484198586837, 33.91711500393792], [-118.01485397172561, 33.918144005574966], [-118.01445897172495, 33.918615005575454], [-118.02322698585657, 33.92413100234444], [-118.00525199056693, 33.92826800126905], [-118.00462700000018, 33.92646599912558]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "La Mirada", "metadata": {"sqmi": 7.84124979432, "type": "standalone-city", "name": "La Mirada", "slug": "la-mirada"}, "cases": 62.0, "population": 0.496, "external_id": "la-mirada", "slug": "la-mirada-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/la-mirada-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.30764647983841, 34.769182235691964], [-118.30763670902067, 34.76881320869032], [-118.30738400000017, 34.76879599911548], [-118.30744950773321, 34.76187620236692], [-118.31078189792116, 34.76180872787317], [-118.31073000000019, 34.76073799911566], [-118.31173700000011, 34.760790999115585], [-118.31166855818051, 34.75199077620536], [-118.3157687012126, 34.751868388807104], [-118.31572700000021, 34.74713399911574], [-118.30727900000011, 34.747368999115785], [-118.29856600000022, 34.747364999115646], [-118.29848902409432, 34.740127179922744], [-118.2921680000001, 34.740123999115816], [-118.29195000000014, 34.7381399991159], [-118.29845, 34.73811199911584], [-118.29841942223005, 34.73649323049909], [-118.29410000000018, 34.73639599911588], [-118.29423600000024, 34.734587999115845], [-118.296298, 34.73457399911592], [-118.29627500000016, 34.73282499911592], [-118.2942370000002, 34.73282799911591], [-118.29387100000012, 34.72708499911603], [-118.29394200000027, 34.725693999115876], [-118.28980721087251, 34.725739808436835], [-118.29008500000016, 34.73284899911587], [-118.28517100000018, 34.7328739991159], [-118.28518700000016, 34.729127999115995], [-118.2872290000002, 34.72908199911591], [-118.28712600000011, 34.72577899911594], [-118.28102500000014, 34.72585399911597], [-118.28121300000012, 34.72926299911594], [-118.27666859240578, 34.72930039627731], [-118.2765500000001, 34.725732999116005], [-118.27226986079903, 34.72578988531018], [-118.27228700000015, 34.72783699911595], [-118.27150500000032, 34.727868999116026], [-118.27150290671023, 34.72761723256449], [-118.26781971448818, 34.727638026399305], [-118.2677596719141, 34.72407740201294], [-118.27220233598335, 34.72402724817409], [-118.27204395737598, 34.714886999696816], [-118.2663694799544, 34.71496430130594], [-118.26640490466711, 34.71846080001644], [-118.26390900000017, 34.71848999911611], [-118.26391600000012, 34.717508999116156], [-118.26330919057582, 34.71751356731746], [-118.26330191044495, 34.71846287591834], [-118.26313500000016, 34.718493999116134], [-118.25453200000017, 34.71855399911606], [-118.25461556892992, 34.722196701041455], [-118.25902895045107, 34.722268694877535], [-118.25907304266407, 34.72399592920207], [-118.25799582781914, 34.724026387685356], [-118.2580375885068, 34.72567303745733], [-118.25775279767963, 34.72567853645991], [-118.25777600000012, 34.726273999115996], [-118.25698800000013, 34.726276999116045], [-118.257264, 34.72768399911598], [-118.25475331173985, 34.72766602997543], [-118.25489074565118, 34.733040522266045], [-118.25462177446393, 34.747893291454524], [-118.25465600000031, 34.7619919991155], [-118.17558584290616, 34.762308976213], [-118.1753450000002, 34.73322099911597], [-118.1307970000003, 34.733402999115924], [-118.13062000000012, 34.71851899911616], [-118.11257500000022, 34.718885999116104], [-118.09427249654243, 34.71877810232397], [-118.059156, 34.71927999911608], [-118.05921956127015, 34.69726601197136], [-118.0412280000002, 34.69718999911627], [-118.04118452558441, 34.68995695553333], [-118.03477986058893, 34.689949610683016], [-118.03481722509008, 34.69351005324335], [-118.03236173657824, 34.693528677112546], [-118.032311, 34.68995199911641], [-118.01919800000013, 34.689974999116465], [-118.0191168101913, 34.686541304918], [-118.01898986566309, 34.68996312555797], [-117.98790500000014, 34.69013199911643], [-117.98733433730138, 34.690115543309545], [-117.9874002524534, 34.68649777257451], [-117.98655700000018, 34.68649767747503], [-117.98656300000017, 34.6901499991164], [-117.97854300000014, 34.69019899911639], [-117.9785350000002, 34.67921699911655], [-117.97445100000012, 34.67920899911655], [-117.96966600000019, 34.67924999911662], [-117.969666, 34.68294099911649], [-117.96515546758582, 34.68293342330937], [-117.96509220220153, 34.68652570698392], [-117.963313, 34.686517999116454], [-117.96304477568073, 34.69018444833452], [-117.960862, 34.69017399911641], [-117.96091700000017, 34.68287499911648], [-117.95195500000018, 34.68277399911658], [-117.95195034245478, 34.6811051123787], [-117.9474433837668, 34.681024328887005], [-117.94744707155832, 34.68082884488879], [-117.94723400000018, 34.68082599911645], [-117.94721100000015, 34.675472999116565], [-117.93852794730641, 34.67539940156775], [-117.93840300000018, 34.660992999116836], [-117.94734800000018, 34.6609469991168], [-117.95203600000016, 34.66075999911669], [-117.98610400000022, 34.66065799911663], [-117.99101300000021, 34.66078999911666], [-117.99342886617289, 34.66063478935531], [-117.995362, 34.660777999116924], [-118.01404700000018, 34.66068299911676], [-118.01791400000015, 34.66073399911685], [-118.0194860000001, 34.6609469991167], [-118.02307100000013, 34.66067299911671], [-118.07671800000014, 34.660656999116725], [-118.11225600000019, 34.660465999116724], [-118.1123270000002, 34.64593699911689], [-118.18303341160667, 34.64568656461447], [-118.18337280688687, 34.63113455148007], [-118.2100090000002, 34.6309499991171], [-118.20997594977173, 34.64429600985163], [-118.20924895517643, 34.64447501852375], [-118.20735, 34.645563999116995], [-118.20343299726483, 34.64559848604333], [-118.20343322666876, 34.64651889049305], [-118.20264943480424, 34.64651020955969], [-118.20258600000018, 34.64577899911687], [-118.20233463836789, 34.64578636003727], [-118.20233424034119, 34.64559457446451], [-118.20123880518139, 34.64559203127671], [-118.20123964339321, 34.64581841475235], [-118.2010830000002, 34.6458229991169], [-118.20106100000011, 34.646979999116994], [-118.2012701989789, 34.65042877220838], [-118.20133876512259, 34.66017432979546], [-118.20570703204241, 34.66019541979155], [-118.20568236449796, 34.66384770558432], [-118.202316, 34.66379299911673], [-118.2024100000001, 34.664692999116745], [-118.20135316752922, 34.664722747844024], [-118.20138900000016, 34.66673599911661], [-118.20246459704653, 34.66663034433603], [-118.20247969987858, 34.66839319531145], [-118.2013822966926, 34.66838568530817], [-118.2013470000002, 34.671177999116615], [-118.20238200000017, 34.67117699911664], [-118.20240400000013, 34.6731159991166], [-118.20353300000016, 34.67322699911666], [-118.20354600000022, 34.6747709991167], [-118.20582740570484, 34.67480194963114], [-118.20584949173156, 34.6775570943635], [-118.20702669086508, 34.677545577199474], [-118.20702926515207, 34.678041493956], [-118.20804529230925, 34.67804939981136], [-118.20805235241532, 34.678884630819695], [-118.21024844222002, 34.678899741507976], [-118.21021573369353, 34.67483404353248], [-118.21131186356932, 34.67484203604356], [-118.2112680317531, 34.671196374810165], [-118.21019559277167, 34.67118981321121], [-118.21017644209603, 34.66937402852371], [-118.21460600000013, 34.669448999116575], [-118.214532, 34.66756599911667], [-118.21884000000016, 34.66760299911671], [-118.2188757442671, 34.67491941047665], [-118.22326017980645, 34.67487338091217], [-118.22321329748877, 34.66024558742268], [-118.22762400000013, 34.660217999116675], [-118.22741716646222, 34.652912308918566], [-118.2317931437165, 34.652903178237146], [-118.23173412539708, 34.65028754542565], [-118.22952478681232, 34.65029193247998], [-118.22948500000011, 34.65003999911688], [-118.22842357025013, 34.65004559360924], [-118.22840559615634, 34.649239196731955], [-118.22733282838198, 34.64923979816624], [-118.22726900000018, 34.64560899911692], [-118.23156200000012, 34.64562999911682], [-118.231554, 34.64821399911689], [-118.23170864850435, 34.649243340938526], [-118.23501686946433, 34.649243425141854], [-118.23611404495759, 34.64924117853026], [-118.23606000000018, 34.645604999116905], [-118.27121700000014, 34.64553299911698], [-118.27167700000012, 34.645330999116965], [-118.27711012415354, 34.64555846286639], [-118.27772800000011, 34.645436999117], [-118.28033600000015, 34.645551999117], [-118.2842446686666, 34.645371304162104], [-118.30663900000017, 34.64548999911693], [-118.30648023223976, 34.65272954021925], [-118.31115000000013, 34.65409999911683], [-118.31153100000023, 34.65481999911682], [-118.31236900000019, 34.654986999116794], [-118.31244993819385, 34.655169190668126], [-118.3128251253224, 34.655148921117004], [-118.31283958483738, 34.65544376403742], [-118.31359900000014, 34.6550389991168], [-118.31387732790948, 34.655220840304025], [-118.314715, 34.65497699911682], [-118.31461200000012, 34.65462199911675], [-118.31475500000013, 34.654595999116864], [-118.31507700000013, 34.65507699911686], [-118.31597704308122, 34.65509708464957], [-118.3168120000002, 34.655554999116745], [-118.31678931908351, 34.65589226411617], [-118.31790811055166, 34.65650115615847], [-118.3171849221631, 34.65698157073956], [-118.31758269566673, 34.65782251326256], [-118.31822592745772, 34.658010238548805], [-118.319138, 34.65742299911679], [-118.31968500000013, 34.65941699911675], [-118.32012500000022, 34.65945999911678], [-118.32080000000032, 34.65980999911671], [-118.32190129719206, 34.65958970849721], [-118.3223384240282, 34.65934415695962], [-118.32266417159721, 34.65993607504631], [-118.32432634114585, 34.65997501668293], [-118.32432599434834, 34.66068752238774], [-118.32409963044472, 34.6606206250694], [-118.32413700000015, 34.661588999116695], [-118.32297800000018, 34.66116399911672], [-118.32200100000021, 34.661657999116734], [-118.32208900000018, 34.664691999116656], [-118.324314, 34.66464399911674], [-118.32415000000019, 34.67458199911655], [-118.31913500000017, 34.674656999116614], [-118.31917200000024, 34.67860499911662], [-118.32415800000011, 34.6786019991165], [-118.32422300000016, 34.689212999116435], [-118.31558196057307, 34.689228340259625], [-118.31555600000014, 34.70101799911619], [-118.31209700000015, 34.700611999116255], [-118.31247600000015, 34.703769999116176], [-118.30681245650722, 34.703744161901014], [-118.30705005788197, 34.70881186310486], [-118.30685300000013, 34.71088099911618], [-118.31567894710953, 34.710799104147185], [-118.31576703838871, 34.71821101050484], [-118.32008468272406, 34.71813340379268], [-118.32013718405716, 34.72194393737694], [-118.31587351948966, 34.72201340994298], [-118.31584855163369, 34.72533061984446], [-118.31951800000016, 34.725300999116], [-118.31952400973402, 34.725435179412756], [-118.32021537722774, 34.72542485729054], [-118.32027508747075, 34.728971474617325], [-118.31578363392566, 34.729010901899265], [-118.31574929546979, 34.73264346462731], [-118.31509700000011, 34.73267699911585], [-118.31108200000021, 34.732717999115884], [-118.31134130208888, 34.72933446144045], [-118.30743542696281, 34.72930973783912], [-118.30727445636836, 34.737916928351325], [-118.30708960049424, 34.73973759757235], [-118.30719244242125, 34.74337479413109], [-118.31135095012957, 34.743250713252436], [-118.31104493287377, 34.73994702296663], [-118.31147246836457, 34.73994151095638], [-118.3114380000002, 34.73926799911584], [-118.31464400000017, 34.73923499911583], [-118.31471200000017, 34.741438999115836], [-118.3190910000001, 34.74143799911587], [-118.31905240050041, 34.737118250006894], [-118.32156705224439, 34.73707374588559], [-118.32164930102876, 34.73923046554245], [-118.32472200000015, 34.739134999115834], [-118.32487922623731, 34.74264267597923], [-118.32441164699827, 34.742654663899394], [-118.3244412702867, 34.74242415974049], [-118.31919044706692, 34.74243223828062], [-118.31932372304074, 34.747075912802586], [-118.3205840000002, 34.74706699911576], [-118.32077192629583, 34.75056476559103], [-118.32513078486012, 34.75047670822751], [-118.32517900000015, 34.75205099911567], [-118.32075746876772, 34.75204188882466], [-118.32116453841793, 34.7616112637546], [-118.31168500000013, 34.76182099911561], [-118.311893, 34.768854999115554], [-118.31153388240831, 34.76885160320454], [-118.31154714475029, 34.769173228505935], [-118.30764647983841, 34.769182235691964]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Lancaster", "metadata": {"sqmi": 102.399673487, "type": "standalone-city", "name": "Lancaster", "slug": "lancaster"}, "cases": 328.0, "population": 1.6886244209708232, "external_id": "lancaster", "slug": "lancaster-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/lancaster-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.97139, 34.05141899912405], [-117.96858898981245, 34.04935900531053], [-117.96816398697003, 34.04975499638761], [-117.96736500000027, 34.04926799912411], [-117.96672499022812, 34.04868499723444], [-117.96718298759157, 34.04833900478948], [-117.96311900000019, 34.045319999124025], [-117.9680440000002, 34.040665999124194], [-117.95855898991634, 34.033692005433295], [-117.95364397160004, 34.03835800571647], [-117.95485197160151, 34.03924500571783], [-117.95432599524538, 34.039926988663694], [-117.95375198954987, 34.039227005863204], [-117.95227398759333, 34.04059199590024], [-117.9517219896542, 34.04015500547375], [-117.94959297159313, 34.04216100572037], [-117.95279798072592, 34.04454300719797], [-117.95231700000018, 34.04491299912401], [-117.952092, 34.044749999124114], [-117.9518770000003, 34.04494099912408], [-117.95163800000012, 34.04479199912418], [-117.95048300000013, 34.04581199912407], [-117.95090700000013, 34.04625099912412], [-117.950243, 34.04674599912407], [-117.95187800000012, 34.04797799912405], [-117.94934500000014, 34.05034899912394], [-117.94826300000015, 34.04954999912407], [-117.94569700000014, 34.051893999124], [-117.94538400000012, 34.05155299912402], [-117.9438560000003, 34.05298999912408], [-117.94249000000015, 34.051818999123995], [-117.94840200000017, 34.04645799912405], [-117.94890100000013, 34.04580999912409], [-117.94864498577772, 34.04522100085498], [-117.94802798581279, 34.045228003993195], [-117.94801498595305, 34.04560699914789], [-117.94734699264772, 34.045556004043576], [-117.94769798593036, 34.04197800032456], [-117.9470299851179, 34.04193500553736], [-117.94687398630454, 34.042463999863365], [-117.9459219856463, 34.042456004983585], [-117.9458809860869, 34.042947999014146], [-117.94499399258949, 34.04286800417995], [-117.94499698592425, 34.04180700033577], [-117.94429498552581, 34.04176300554549], [-117.94425898616873, 34.04213399877001], [-117.9433169924781, 34.042026004419526], [-117.94332998590735, 34.04185600037915], [-117.94281499272354, 34.041827003835785], [-117.94283298592633, 34.041670000325894], [-117.94031799273779, 34.04152600379222], [-117.94100800000022, 34.034531999124226], [-117.93734700000017, 34.03424999912422], [-117.93749800000022, 34.03378299912416], [-117.93779200000023, 34.02804599912432], [-117.943497, 34.02809199912426], [-117.94346800000012, 34.02689299912431], [-117.94381300000019, 34.02682099912422], [-117.94414700000019, 34.02586499912435], [-117.94473600000018, 34.02509199912429], [-117.94309700000017, 34.02444399912438], [-117.94309700000017, 34.022811999124244], [-117.93672000000016, 34.02236499912443], [-117.93784100000012, 34.01771299912441], [-117.93167400000013, 34.01608299912447], [-117.93166100000023, 34.017918999124404], [-117.92068300000017, 34.01709499912444], [-117.92156300000015, 34.01529599912445], [-117.9232160000002, 34.0126259991245], [-117.9236980000002, 34.011098999124584], [-117.92456700000018, 34.009717999124504], [-117.92527000000015, 34.0090439991245], [-117.93921800000011, 34.01138699912448], [-117.94029900000014, 34.01187299912447], [-117.941246, 34.01259299912452], [-117.94212100000017, 34.01233499912449], [-117.94427600000019, 34.0131799991245], [-117.94826100000026, 34.015378999124415], [-117.95269200000011, 34.01858299912444], [-117.95414800000015, 34.019911999124375], [-117.95279100000022, 34.022805999124415], [-117.98143500000015, 34.043832999124156], [-117.9855039938095, 34.046636003550454], [-117.98175497163494, 34.05055600573886], [-117.98275897163609, 34.051224005739876], [-117.9821409867974, 34.051918995431194], [-117.98109899011641, 34.051216005402296], [-117.97528898685898, 34.05722899588804], [-117.97116, 34.0546099991241], [-117.970651, 34.05411599912395], [-117.972609, 34.052311999124036], [-117.97139, 34.05141899912405]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "La Puente", "metadata": {"sqmi": 3.48684995452, "type": "standalone-city", "name": "La Puente", "slug": "la-puente"}, "cases": 42.0, "population": 0.4069767441860465, "external_id": "la-puente", "slug": "la-puente-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/la-puente-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.312609, 34.083608999123626], [-118.309309, 34.08360899912347], [-118.309309, 34.07640999912364], [-118.3262090000001, 34.076309999123566], [-118.326309, 34.0835089991235], [-118.312609, 34.083608999123626]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Larchmont", "metadata": {"sqmi": 0.486332164533, "type": "segment-of-a-city", "name": "Larchmont", "slug": "larchmont"}, "cases": null, "population": null, "external_id": "larchmont", "slug": "larchmont-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/larchmont-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.75552600000026, 34.161155999122755], [-117.755601, 34.15711099912283], [-117.75052500000015, 34.157061999122746], [-117.750419, 34.150915999122795], [-117.75054900000022, 34.15097399912282], [-117.75333400000017, 34.14952999912279], [-117.75443300000012, 34.14962699912298], [-117.755723, 34.1458929991228], [-117.75582900000016, 34.14519999912289], [-117.753597, 34.14533399912298], [-117.753811, 34.143776999122835], [-117.753586, 34.14366199912281], [-117.75213400000015, 34.14379399912282], [-117.75100200000018, 34.142595999122925], [-117.75015200000023, 34.14332999912294], [-117.75018, 34.141133999122935], [-117.749659, 34.14111899912281], [-117.74768700000011, 34.14015799912295], [-117.747667, 34.13756599912299], [-117.74813800000014, 34.13468899912292], [-117.7487840000002, 34.13328699912292], [-117.7488450000001, 34.132407999123], [-117.75036900000012, 34.132380999122965], [-117.75009300000015, 34.13032699912309], [-117.750242, 34.12942399912305], [-117.75969700000019, 34.12952999912306], [-117.759794, 34.11944499912324], [-117.7550710000002, 34.11931399912323], [-117.755192, 34.12068299912316], [-117.7507690000003, 34.12067399912311], [-117.75073100000013, 34.109179999123334], [-117.75103200000021, 34.108648999123325], [-117.75608700000016, 34.110270999123244], [-117.75619900000015, 34.10566199912329], [-117.756104, 34.09939999912342], [-117.756233, 34.09894899912352], [-117.75688200000027, 34.098124999123385], [-117.75611900000021, 34.09792299912348], [-117.7561340000001, 34.08996599912352], [-117.75748400000028, 34.09004999912359], [-117.7585450000002, 34.09040499912345], [-117.762103, 34.092760999123456], [-117.76426600000016, 34.089416999123564], [-117.764786, 34.090711999123414], [-117.76658800000018, 34.0938099991235], [-117.76992500000014, 34.095847999123514], [-117.77024100000018, 34.09512699912344], [-117.77111800000016, 34.09389099912357], [-117.77681000000017, 34.0861659991236], [-117.78022700000012, 34.08804799912357], [-117.78414400000014, 34.0890979991236], [-117.784948, 34.09032899912358], [-117.79242500000014, 34.0913399991235], [-117.793172, 34.09307399912352], [-117.79291100000023, 34.0930619991235], [-117.79259300000011, 34.093635999123535], [-117.79037100000015, 34.094580999123494], [-117.78916500000017, 34.09468499912347], [-117.787726, 34.0944209991236], [-117.78675400000019, 34.0953489991235], [-117.78992200000016, 34.09601099912347], [-117.790866, 34.095923999123514], [-117.7930440000002, 34.09529799912343], [-117.79472700000024, 34.09532999912351], [-117.79507800000022, 34.095772999123454], [-117.79677800000017, 34.09707099912347], [-117.79654900000024, 34.09842499912345], [-117.7971480000001, 34.09934799912342], [-117.79707500000028, 34.0995809991234], [-117.7974420000002, 34.09986499912344], [-117.79797, 34.099884999123425], [-117.79871000000013, 34.099484999123426], [-117.80138300000019, 34.099402999123406], [-117.801299, 34.10122599912341], [-117.796251, 34.10121399912346], [-117.79588700000019, 34.10273199912343], [-117.79400800000013, 34.1022659991234], [-117.79403600000018, 34.1030249991234], [-117.79134700000014, 34.103019999123354], [-117.79173600000018, 34.10404699912344], [-117.79171600000011, 34.10666599912337], [-117.79406300000015, 34.106661999123354], [-117.79404300000023, 34.11570599912316], [-117.79174000000015, 34.11570599912316], [-117.79174000000015, 34.11607599912318], [-117.79179400000018, 34.11911999912317], [-117.79396100000015, 34.119076999123166], [-117.79398300000021, 34.12242899912323], [-117.79298500000013, 34.12227299912315], [-117.79309100000012, 34.12368099912307], [-117.79417400000018, 34.12360099912314], [-117.794151, 34.12542799912313], [-117.7899010000001, 34.127319999123074], [-117.78739800000012, 34.12815799912307], [-117.78729700000017, 34.12854599912308], [-117.78539400000017, 34.12870299912308], [-117.78469300000017, 34.12918099912306], [-117.7836, 34.130496999123096], [-117.78334400000016, 34.13291099912303], [-117.782562, 34.13356099912303], [-117.78079900000021, 34.134609999123], [-117.77701800000011, 34.13931699912293], [-117.775946, 34.13923399912291], [-117.774335, 34.13940599912293], [-117.77342100000018, 34.140745999122935], [-117.77363600000024, 34.141221999122884], [-117.77250500000018, 34.14228299912298], [-117.77247800000016, 34.142803999122926], [-117.77262400000014, 34.1424359991229], [-117.773168, 34.14231599912293], [-117.77300500000014, 34.14271599912299], [-117.77328000000016, 34.14262099912295], [-117.77355700000018, 34.14316199912281], [-117.77274800000019, 34.143499999122824], [-117.77367900000016, 34.14478599912278], [-117.77421200000018, 34.14413699912288], [-117.77446700000014, 34.14407399912286], [-117.7759960000002, 34.14456199912285], [-117.776481, 34.145087999122886], [-117.77611700000016, 34.145840999122846], [-117.77611500000017, 34.14701999912283], [-117.77592600000011, 34.1479029991229], [-117.775695, 34.14833499912278], [-117.77446300000018, 34.14940699912285], [-117.774716, 34.150484999122824], [-117.77453464657631, 34.15071456056943], [-117.76771532903383, 34.15074559438335], [-117.767919, 34.15274299912282], [-117.767759, 34.15723699912277], [-117.75877500000013, 34.157273999122836], [-117.75868100000017, 34.16360199912276], [-117.75548100000016, 34.16356699912275], [-117.75552600000026, 34.161155999122755]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "La Verne", "metadata": {"sqmi": 8.57295018917, "type": "standalone-city", "name": "La Verne", "slug": "la-verne"}, "cases": 18.0, "population": 0.3532477669032403, "external_id": "la-verne", "slug": "la-verne-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/la-verne-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.34382300000026, 33.90193299912586], [-118.34383000000031, 33.89541799912598], [-118.3445200000003, 33.895460999125945], [-118.34450700000014, 33.89351399912596], [-118.34382100000018, 33.893484999126024], [-118.34377498067963, 33.87730200415273], [-118.351748, 33.874742999126205], [-118.35471100000017, 33.87285399912624], [-118.36129000000024, 33.87285799912621], [-118.36129000000024, 33.8946529991259], [-118.36625100000019, 33.89463699912597], [-118.3682800000002, 33.89606699912593], [-118.36917800000016, 33.896924999125915], [-118.36128600000015, 33.896858999125975], [-118.36125600000018, 33.90134199912586], [-118.35912600000013, 33.90153499912584], [-118.35900100000022, 33.90108099912585], [-118.35868800000016, 33.901103999125844], [-118.35866400000016, 33.90064799912587], [-118.35814200000016, 33.900587999125904], [-118.35810800000023, 33.90231399912582], [-118.35320600000027, 33.90230099912586], [-118.35317400000011, 33.901690999125876], [-118.35237200000014, 33.9016149991259], [-118.35237600000023, 33.90108199912591], [-118.35214700000017, 33.90111399912588], [-118.35215000000018, 33.901915999125926], [-118.351032, 33.90192599912576], [-118.35106900000024, 33.902566999125746], [-118.34383000000031, 33.9024529991258], [-118.34382300000026, 33.90193299912586]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Lawndale", "metadata": {"sqmi": 1.96846523451, "type": "standalone-city", "name": "Lawndale", "slug": "lawndale"}, "cases": 59.0, "population": 0.3361440291704649, "external_id": "lawndale", "slug": "lawndale-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/lawndale-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.318108, 34.01461199912431], [-118.318008, 34.01091199912451], [-118.31700800000013, 34.01091199912446], [-118.31700800000013, 34.003612999124634], [-118.322308, 34.003512999124546], [-118.32920800000015, 34.00361299912457], [-118.33246922524283, 34.00338903404319], [-118.33390998606953, 34.004625002442786], [-118.33534698607014, 34.006773002444426], [-118.33567141630907, 34.00802810642058], [-118.33500900000011, 34.00831199912448], [-118.335109, 34.02271199912422], [-118.32830900000012, 34.02151199912432], [-118.317708, 34.01901199912423], [-118.31800800000012, 34.01831199912425], [-118.318108, 34.01461199912431]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Leimert Park", "metadata": {"sqmi": 1.19252997439, "type": "segment-of-a-city", "name": "Leimert Park", "slug": "leimert-park"}, "cases": 31.0, "population": 0.15234912522115196, "external_id": "leimert-park", "slug": "leimert-park-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/leimert-park-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.36989198586366, 33.94540400305961], [-118.36877098613988, 33.94540500387863], [-118.3688889722079, 33.943555005690186], [-118.36933997220868, 33.94300800568972], [-118.36877798607703, 33.941709000891706], [-118.36820598613399, 33.941720003907605], [-118.3679579861511, 33.941396000586636], [-118.36780399290967, 33.94139200485915], [-118.36765598610319, 33.943444002407574], [-118.36662298080617, 33.94455100052957], [-118.36300599305487, 33.94451500320715], [-118.36301097908134, 33.94481400303147], [-118.36241798628842, 33.94491500082813], [-118.36184698598551, 33.94488300443231], [-118.36183798609913, 33.94436300076636], [-118.36020698609637, 33.94436200405462], [-118.36020398610445, 33.94396400073927], [-118.35968798609115, 33.94396200407468], [-118.35966298609769, 33.94361500076612], [-118.35911399304885, 33.943615003227215], [-118.3591149791241, 33.94425800039265], [-118.35782698610006, 33.94426100403156], [-118.35783398609442, 33.94393100077409], [-118.3569579930508, 33.943932003215025], [-118.3569569790864, 33.94421500154435], [-118.3564549931736, 33.94425300242828], [-118.35645197917609, 33.94447500035601], [-118.35589998609493, 33.94447500404771], [-118.35589598607486, 33.94401100085672], [-118.35481898611437, 33.94402500395643], [-118.3548149860981, 33.94182300075028], [-118.35207899303485, 33.94181300327272], [-118.35207797914138, 33.94273000035538], [-118.34797598608323, 33.942724004071394], [-118.34797698643814, 33.942184999860444], [-118.34730498574112, 33.9420930049483], [-118.34730598607699, 33.94185300081894], [-118.34691999306317, 33.9418560031427], [-118.34690897924067, 33.94206400056323], [-118.34668499307568, 33.94206700308387], [-118.34668397913332, 33.9427170004013], [-118.3443079860919, 33.942724004023454], [-118.34429698585502, 33.94150800172868], [-118.34445098631971, 33.941455003078666], [-118.34444898607778, 33.9409120008068], [-118.34428498609718, 33.940913003999675], [-118.34425798613181, 33.94000000493044], [-118.34453898608785, 33.94000100021791], [-118.34456498616628, 33.93856600356858], [-118.34534098596247, 33.93851400065224], [-118.34531798608462, 33.93820600078074], [-118.3449109860923, 33.938207004022644], [-118.34489998617678, 33.93788200344018], [-118.34547598603001, 33.93783300083708], [-118.34546998617331, 33.93740300349563], [-118.34605298605153, 33.93735800075265], [-118.34605598603197, 33.936613001064174], [-118.34500798614603, 33.93665800373709], [-118.3450509861028, 33.93344600397489], [-118.34574398613638, 33.933440000033805], [-118.34574998612412, 33.93326300387194], [-118.34609298597688, 33.93325500018962], [-118.34610699077301, 33.93269400154365], [-118.34719897910553, 33.932605001717995], [-118.34714199304769, 33.93381500320793], [-118.34824098608672, 33.93381399995346], [-118.34823998613791, 33.93340400380416], [-118.34836097906754, 33.9334000019278], [-118.34834799315762, 33.933644002563504], [-118.34875097902574, 33.933619002234785], [-118.34875099317486, 33.93373500237265], [-118.34945098477145, 33.933679005304384], [-118.35035698662502, 33.93396400208788], [-118.35247897936623, 33.934200000858915], [-118.35248099318035, 33.93454200230979], [-118.35376998663419, 33.93451899980447], [-118.35378198614552, 33.93414700378222], [-118.3547979790681, 33.934110001964086], [-118.35479899304812, 33.93452300321924], [-118.35587298617216, 33.934522999944335], [-118.35589798565505, 33.933982001336034], [-118.35692698643851, 33.93355500311717], [-118.35894898661759, 33.93293200550323], [-118.36017099310355, 33.93302000101756], [-118.3613039860799, 33.932782002138325], [-118.36129798610402, 33.93240700402265], [-118.36178498607575, 33.93240599996557], [-118.36178898557678, 33.93198100120847], [-118.36414498662707, 33.93094400522698], [-118.37003297694831, 33.930929001015066], [-118.3700369862359, 33.94541999881073], [-118.36989198586366, 33.94540400305961]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Lennox", "metadata": {"sqmi": 1.06461567706, "type": "unincorporated-area", "name": "Lennox", "slug": "lennox"}, "cases": 46.0, "population": 0.22542389493286288, "external_id": "lennox", "slug": "lennox-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/lennox-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.35072036963466, 34.645038563735405], [-118.35071354178883, 34.63906074624547], [-118.34181416794863, 34.636904693643004], [-118.34182629970715, 34.63778471862662], [-118.32394035830188, 34.637807901751145], [-118.3235551241984, 34.630538963157065], [-118.28865740498169, 34.63110432268006], [-118.27989880784625, 34.630996393037165], [-118.27103380034279, 34.6311156983303], [-118.27119907234234, 34.61673139846796], [-118.2283240781996, 34.6164493978044], [-118.22750665838996, 34.61703668107793], [-118.2239340395095, 34.61758990740343], [-118.22261172137505, 34.617281009004394], [-118.22201500068218, 34.61615813582363], [-118.21863516038222, 34.61490491279584], [-118.21862103701471, 34.61360461928555], [-118.21918470338628, 34.61405229432348], [-118.22310509964761, 34.61488014068951], [-118.22386311284856, 34.615924865510436], [-118.22533184581096, 34.61608276183934], [-118.22529719749376, 34.615893172593786], [-118.2257539736243, 34.616040569690284], [-118.2274862800375, 34.61539638667731], [-118.22737954354031, 34.609171833059406], [-118.2185721997493, 34.60911310885989], [-118.21849363645299, 34.6018582284784], [-118.22725421857852, 34.60189220388961], [-118.22683486147197, 34.59463290391926], [-118.23557145369915, 34.59466214190668], [-118.23575237907434, 34.59762547931243], [-118.2345760973985, 34.597675368362985], [-118.23503848719747, 34.59862500569054], [-118.23584847609963, 34.59919587586644], [-118.24005185614561, 34.60061825677565], [-118.24106525635202, 34.60112048629486], [-118.24196854779989, 34.60113195905234], [-118.2436169901628, 34.600822704115515], [-118.24477645489613, 34.60099938555261], [-118.24827646224199, 34.603165522586465], [-118.25084544030904, 34.60444074211689], [-118.25357936379594, 34.605316990335375], [-118.25536368547878, 34.60662807834254], [-118.25821941081885, 34.607991466836474], [-118.26141523138902, 34.60913594577614], [-118.26235352279377, 34.60931997860848], [-118.26252782832944, 34.60951997328539], [-118.26491284344668, 34.609693985227786], [-118.26496429416272, 34.60947328241412], [-118.2652827390861, 34.609474837229634], [-118.2652550683682, 34.60676165468347], [-118.26233746382304, 34.60675312160342], [-118.26231985822537, 34.60403995705299], [-118.2711641812706, 34.60406462727877], [-118.2709175644721, 34.59130032298174], [-118.26652863640936, 34.59131859616102], [-118.26647844117245, 34.58766299223133], [-118.26143022191232, 34.587698588559846], [-118.26146388698453, 34.58374354880071], [-118.27465731369765, 34.58375749762671], [-118.27458994756864, 34.58739517740328], [-118.28331745776084, 34.58747052355055], [-118.28335460120147, 34.583754507482446], [-118.28770325132324, 34.583752115012366], [-118.28773856816042, 34.58001823391204], [-118.30540787407287, 34.58061708965032], [-118.30978963140966, 34.58047380088577], [-118.30981318123483, 34.58223770863373], [-118.3141783936552, 34.582135466362416], [-118.3142014971496, 34.58390011627063], [-118.31746518523266, 34.58389163492596], [-118.31748640343669, 34.585724242529984], [-118.31422612206536, 34.58574436573664], [-118.31425015141154, 34.58754811395973], [-118.30770113975275, 34.587518019510014], [-118.30770228200844, 34.589325892974706], [-118.30551944945326, 34.589326782836636], [-118.30552347099166, 34.60174827383202], [-118.3405235736448, 34.602024823826305], [-118.34074386687143, 34.62715342024595], [-118.35828491022616, 34.627078435432466], [-118.35830330518176, 34.630681289234396], [-118.35947878904905, 34.630692465990485], [-118.35949499766032, 34.63781120648563], [-118.36391953513262, 34.63780936817746], [-118.36395031417817, 34.64500977936099], [-118.35072036963466, 34.645038563735405]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Leona Valley", "metadata": {"sqmi": 15.3283588666, "type": "unincorporated-area", "name": "Leona Valley", "slug": "leona-valley"}, "cases": 1.0, "population": 0.01751006828926633, "external_id": "leona-valley", "slug": "leona-valley-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/leona-valley-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.212306, 34.083709999123464], [-118.21210600000015, 34.08310999912351], [-118.211206, 34.08320999912352], [-118.21200600000013, 34.08238899912361], [-118.21200600000013, 34.079209999123485], [-118.210406, 34.07920999912363], [-118.211006, 34.07990999912359], [-118.208406, 34.08160999912358], [-118.206306, 34.083609999123475], [-118.2057060000001, 34.08300999912352], [-118.205306, 34.08370999912341], [-118.205006, 34.08510999912346], [-118.203506, 34.08410999912361], [-118.20390600000016, 34.08260999912355], [-118.20435700000014, 34.082124999123586], [-118.20433200000012, 34.08134099912347], [-118.20498, 34.08135799912342], [-118.20680600000013, 34.079109999123595], [-118.20640600000013, 34.07830999912363], [-118.206006, 34.078009999123545], [-118.20580600000017, 34.07560999912364], [-118.20540600000011, 34.075509999123554], [-118.20540600000017, 34.07440999912369], [-118.204605, 34.07490999912363], [-118.204105, 34.075509999123554], [-118.204105, 34.07720999912362], [-118.2029050000001, 34.07720999912362], [-118.2029050000001, 34.07870999912364], [-118.20180500000015, 34.07870999912354], [-118.20180500000015, 34.08040999912359], [-118.201005, 34.08050999912348], [-118.200892, 34.08107999912353], [-118.20010800000013, 34.08283099912352], [-118.199118, 34.08280899912359], [-118.198905, 34.08260999912364], [-118.197105, 34.08200999912356], [-118.198005, 34.08040999912359], [-118.197405, 34.08000999912364], [-118.197805, 34.079409999123584], [-118.196605, 34.078809999123706], [-118.196505, 34.08040999912359], [-118.19620500000015, 34.08050999912348], [-118.195105, 34.07960999912369], [-118.193805, 34.07920999912363], [-118.19370500000014, 34.07960999912369], [-118.193305, 34.078609999123536], [-118.19400500000012, 34.07580999912377], [-118.19530500000012, 34.0690099991236], [-118.196105, 34.06630999912371], [-118.197305, 34.06481099912375], [-118.202105, 34.06571099912376], [-118.2048050000001, 34.06571099912376], [-118.20750600000012, 34.06521099912367], [-118.213506, 34.06141099912384], [-118.219306, 34.05691099912389], [-118.22580600000012, 34.05441099912397], [-118.226606, 34.05471099912388], [-118.227306, 34.05511099912379], [-118.226634, 34.05575499912381], [-118.226506, 34.05673099912393], [-118.227106, 34.061810999123814], [-118.224706, 34.06771099912369], [-118.22480600000016, 34.07060999912368], [-118.22661800000013, 34.079945999123645], [-118.22590600000011, 34.08020999912356], [-118.22350600000013, 34.08200999912356], [-118.219306, 34.08470999912355], [-118.214506, 34.08630999912341], [-118.212906, 34.0864099991235], [-118.213006, 34.08560999912344], [-118.21150600000014, 34.085209999123435], [-118.212306, 34.0842099991235], [-118.212306, 34.083709999123464]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Lincoln Heights", "metadata": {"sqmi": 2.51055393684, "type": "segment-of-a-city", "name": "Lincoln Heights", "slug": "lincoln-heights"}, "cases": 77.0, "population": 0.32596731860130385, "external_id": "lincoln-heights", "slug": "lincoln-heights-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/lincoln-heights-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.95367939063702, 34.52828073487475], [-117.9536868376532, 34.523253089103974], [-117.95823205660378, 34.522451903647166], [-117.95905335693163, 34.522157615211576], [-117.96022567010709, 34.5213012043861], [-117.96848383108241, 34.52121249275931], [-117.96848433835889, 34.521073112172424], [-117.97273415431692, 34.51937798762481], [-117.9730729227806, 34.51933363011167], [-117.97317342413292, 34.519507013298174], [-117.97347271093973, 34.519388372607175], [-117.97337220910681, 34.51921498966608], [-117.97363194710334, 34.519019291692324], [-117.9774642499146, 34.51749023549079], [-117.97855606584187, 34.51716791970263], [-117.97864668747103, 34.51732480969022], [-117.97894595897041, 34.51720478157359], [-117.97884050321446, 34.51702450565392], [-117.97919660057109, 34.51680020643016], [-117.98344767468154, 34.5150937143725], [-117.983859210004, 34.51510726188845], [-117.98463409888498, 34.515561441693215], [-117.9857391659106, 34.51643689811021], [-117.98742801498548, 34.51743627929158], [-117.9873576454647, 34.51759682779726], [-117.98768256833937, 34.51769526095282], [-117.98775459738636, 34.517533365560205], [-117.98920298540844, 34.517674796954125], [-117.99196950161777, 34.517339033762134], [-117.99727228940442, 34.51737556736781], [-117.999002018783, 34.516473563104896], [-118.00112640929459, 34.51481150817285], [-118.00125875863344, 34.514500012558834], [-118.00232150085641, 34.514364116486426], [-118.00232900564802, 34.51921774959853], [-118.00249499706062, 34.51921271763977], [-118.00249798482479, 34.52111840487176], [-118.0028727195031, 34.52193932741443], [-118.00244292551498, 34.523174595905076], [-118.00207548550621, 34.52375060286617], [-118.00193918639178, 34.524647332572286], [-118.0012785818531, 34.52464553658175], [-118.00127925279564, 34.52826134095414], [-117.95367939063702, 34.52828073487475]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Littlerock", "metadata": {"sqmi": 1.8128731011, "type": "unincorporated-area", "name": "Littlerock", "slug": "littlerock"}, "cases": 6.0, "population": 0.04020908725371934, "external_id": "littlerock", "slug": "littlerock-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/littlerock-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.31836000000018, 33.807652999127164], [-118.311705, 33.807515999127055], [-118.31177100000016, 33.80213199912711], [-118.30879000000013, 33.80221699912707], [-118.30868500000022, 33.789470999127204], [-118.30847200000018, 33.78877299912729], [-118.308713, 33.78820699912724], [-118.30870900000015, 33.78221499912736], [-118.30903800000014, 33.78217899912727], [-118.30903900000025, 33.78194099912735], [-118.30992400000011, 33.78194699912743], [-118.30946400000018, 33.77891499912739], [-118.30766200000018, 33.7792189991274], [-118.30642700000018, 33.77495799912741], [-118.30885000000019, 33.7749639991275], [-118.3091350000002, 33.77648599912745], [-118.30991100000021, 33.776278999127484], [-118.31093500000021, 33.77729099912738], [-118.31276300000019, 33.77651799912741], [-118.31326800000015, 33.77655699912744], [-118.31410300000017, 33.77615799912742], [-118.31324400000018, 33.77628799912745], [-118.31294800000023, 33.77582999912746], [-118.3165750000003, 33.775644999127394], [-118.316446, 33.775250999127366], [-118.31830700000013, 33.77521799912735], [-118.31677500000015, 33.77718299912742], [-118.3161450000001, 33.77688299912744], [-118.31572300000016, 33.77708199912748], [-118.31633900000014, 33.77813899912743], [-118.31607300000015, 33.7786899991274], [-118.31657700000011, 33.778736999127396], [-118.315946, 33.77911099912741], [-118.31572500000016, 33.779533999127324], [-118.31655400000014, 33.78007199912729], [-118.31663300000022, 33.780566999127316], [-118.31722000000018, 33.780603999127415], [-118.31741200000027, 33.78091699912735], [-118.31760500000019, 33.7809169991273], [-118.31805200000011, 33.781712999127365], [-118.31900400000016, 33.78170899912735], [-118.31633200000016, 33.783795999127314], [-118.316856, 33.783858999127304], [-118.31848900000021, 33.78461599912726], [-118.31903600000014, 33.78442299912729], [-118.319009, 33.784663999127346], [-118.32165700000014, 33.785681999127256], [-118.32448900000014, 33.785914999127264], [-118.32547000000015, 33.785858999127306], [-118.32560500000011, 33.78631599912725], [-118.32781700000021, 33.78612799912734], [-118.32790300000016, 33.787286999127254], [-118.32890400000015, 33.78719499912737], [-118.328726, 33.78766299912727], [-118.328721, 33.78912499912725], [-118.32780900000024, 33.78923899912725], [-118.32785100000015, 33.788933999127316], [-118.32616600000019, 33.7889099991273], [-118.32622900000025, 33.78954599912722], [-118.32676100000023, 33.78954599912722], [-118.32680500000019, 33.79031599912721], [-118.32819000000012, 33.790302999127185], [-118.32775, 33.79100099912724], [-118.32909500000014, 33.79095299912726], [-118.3294980000001, 33.79201399912721], [-118.32950500000015, 33.792341999127224], [-118.32801100000013, 33.79388799912723], [-118.32807600000021, 33.79678799912713], [-118.32832100000013, 33.79823999912714], [-118.328175, 33.80097199912706], [-118.32612100000019, 33.80108599912704], [-118.32598300000012, 33.80350299912711], [-118.32792400000017, 33.80341499912713], [-118.32794100000015, 33.8068489991271], [-118.31991900000014, 33.80692199912707], [-118.31991600000016, 33.807660999127016], [-118.31836000000018, 33.807652999127164]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Lomita", "metadata": {"sqmi": 1.91718201513, "type": "standalone-city", "name": "Lomita", "slug": "lomita"}, "cases": 34.0, "population": 0.2072917936836971, "external_id": "lomita", "slug": "lomita-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/lomita-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.16418000000016, 33.82768499912678], [-118.1610660000002, 33.827576999126784], [-118.157788, 33.825039999126744], [-118.15579400000013, 33.825031999126814], [-118.15599600000026, 33.82756399912675], [-118.15410300000013, 33.82755199912671], [-118.15420100000017, 33.828815999126775], [-118.15204800000022, 33.82875499912684], [-118.15070300000022, 33.829481999126706], [-118.14950100000013, 33.8323759991267], [-118.142544, 33.832353999126724], [-118.14248500000012, 33.84669399912652], [-118.13378800000014, 33.84666699912647], [-118.1321180000002, 33.84651699912661], [-118.13229900000026, 33.84707799912656], [-118.12507500000018, 33.84705499912655], [-118.12514500000016, 33.83227599912672], [-118.09740800000017, 33.832183999126734], [-118.09444100000017, 33.83184899912661], [-118.09333800000016, 33.831878999126694], [-118.09330900000015, 33.83171199912673], [-118.091071, 33.83145899912667], [-118.08182700000022, 33.83145499912669], [-118.08179300000025, 33.830873999126766], [-118.08242600000027, 33.83060099912683], [-118.08272800000015, 33.830178999126765], [-118.082995, 33.82868599912677], [-118.08212100000028, 33.82568399912678], [-118.08190200000028, 33.8253619991268], [-118.08170400000012, 33.824318999126824], [-118.08089600000015, 33.82430399912682], [-118.08133700000016, 33.82497699912678], [-118.0794140000002, 33.824143999126846], [-118.074622, 33.822776999126816], [-118.07460900000018, 33.82320899912684], [-118.072377, 33.82305899912693], [-118.07179200000016, 33.8225439991269], [-118.071826, 33.82397399912676], [-118.068721, 33.82401999912673], [-118.06871300000014, 33.822477999126804], [-118.065961, 33.82259999912682], [-118.06544000000015, 33.82401199912681], [-118.06326800000029, 33.8240739991268], [-118.063162, 33.81960999912697], [-118.07259700000026, 33.81511499912682], [-118.08459700000013, 33.80321599912707], [-118.08639700000015, 33.796715999127066], [-118.0867380000003, 33.796089999127034], [-118.09899700000022, 33.776815999127415], [-118.09789400000014, 33.77471299912752], [-118.09675200000018, 33.77301999912757], [-118.09183, 33.75983499912762], [-118.09189700000029, 33.758716999127635], [-118.09689700000014, 33.75591699912762], [-118.0976960000002, 33.75561699912764], [-118.1081930000002, 33.75001699912774], [-118.1137900000002, 33.74672299912773], [-118.11483195462746, 33.745947149846266], [-118.11575601825668, 33.749306024597935], [-118.11477201446537, 33.7507810043492], [-118.11502197447241, 33.75189901111625], [-118.11543897784354, 33.75178699999117], [-118.11733501209625, 33.75267798561939], [-118.11789401547982, 33.75268098450813], [-118.11850699886054, 33.75246801079558], [-118.11990200824552, 33.751080998447335], [-118.12064899460218, 33.750898013622084], [-118.12124298502096, 33.75032301616543], [-118.12118700576438, 33.749392992371426], [-118.11838998958764, 33.746884974367376], [-118.11657597757248, 33.746008983182904], [-118.11657997609086, 33.74539500017243], [-118.11765799767481, 33.74377602114962], [-118.12040198087169, 33.74592001615018], [-118.12388200711216, 33.74784398741921], [-118.13300799383194, 33.75127297993868], [-118.13650101525688, 33.752891011944115], [-118.13908500510885, 33.753843974606234], [-118.14231801761876, 33.755543976237234], [-118.1458900097804, 33.75705399563576], [-118.14815801146105, 33.757832023121516], [-118.15809701270196, 33.760480988896205], [-118.16730802054838, 33.76260299204607], [-118.16758402353666, 33.76251802353184], [-118.16833300915243, 33.762845007628556], [-118.17186901464915, 33.7634669876757], [-118.17431900152546, 33.76371999918347], [-118.17497202270145, 33.763604989169785], [-118.17816099889777, 33.763670017704534], [-118.18005798016803, 33.76333498395897], [-118.18133997879829, 33.76254001538257], [-118.18188598699733, 33.76199900533144], [-118.18088498950323, 33.76083201671497], [-118.18071699912184, 33.760827018567156], [-118.1808589991341, 33.76058800187334], [-118.18315399081342, 33.76326101137002], [-118.18812798976703, 33.76041901186228], [-118.18919401579596, 33.759997010343255], [-118.19096399149734, 33.75973700142833], [-118.19065200184428, 33.758386975374655], [-118.18920001357347, 33.75761699753763], [-118.1875479941623, 33.75700001563848], [-118.18682000076785, 33.75696997413899], [-118.18619502183192, 33.75714701379884], [-118.1837730245838, 33.7581560083296], [-118.18360098307197, 33.758162006107014], [-118.18347397750324, 33.757926987931576], [-118.18607001552232, 33.75670901820653], [-118.18731697450522, 33.756562020046154], [-118.18829797940757, 33.756792987091266], [-118.19073002556351, 33.75787000904558], [-118.1912309978194, 33.75843201131777], [-118.19152299488091, 33.759601998822916], [-118.19229902310738, 33.75961399437783], [-118.19250999756103, 33.759774987352394], [-118.19410798436256, 33.75958400549049], [-118.19588301082403, 33.75978998179601], [-118.19745000910878, 33.76033099184718], [-118.19946799817042, 33.761320993415886], [-118.19891799145294, 33.762326989057904], [-118.1989259884895, 33.76324701655598], [-118.20067402495248, 33.76327700544341], [-118.20081902385367, 33.76317299135488], [-118.20066397604454, 33.76207397754991], [-118.20005599081173, 33.76157200566461], [-118.20051597825459, 33.76173699715738], [-118.20152402576787, 33.76176198789686], [-118.20233198952897, 33.76139102009849], [-118.20241900991451, 33.76118699044002], [-118.20244200139469, 33.76040701630732], [-118.20163398502169, 33.7593769769433], [-118.20181002505198, 33.75918799434066], [-118.20165397761336, 33.75896602396181], [-118.20118799239275, 33.75915400693493], [-118.19789000396024, 33.757174003797374], [-118.19784801951782, 33.75608198739947], [-118.19714701612187, 33.755441014390435], [-118.19582298043726, 33.754891007673066], [-118.19486601925682, 33.75506899435042], [-118.19428602365191, 33.754557973186685], [-118.19420200215527, 33.75412597537198], [-118.18868299463225, 33.752196006325605], [-118.1887299772225, 33.75207899705265], [-118.18787397862953, 33.7519000107458], [-118.18761602158581, 33.75166599219992], [-118.1882000157088, 33.75057097691321], [-118.18880000390527, 33.75044602321572], [-118.19010899253415, 33.749602020177726], [-118.18611199996467, 33.73854201328114], [-118.18795700049675, 33.7366269860664], [-118.18848201647455, 33.73586900378441], [-118.18513299432132, 33.73510902224322], [-118.18511700024803, 33.733036000942796], [-118.19571002229472, 33.73290499685577], [-118.19634299826699, 33.73333299615219], [-118.19659600977492, 33.73381797433467], [-118.19649999272322, 33.73565297857106], [-118.19712802315986, 33.73620098602911], [-118.20238202362003, 33.73629400419216], [-118.20414200302581, 33.73848698104222], [-118.20452301973187, 33.738775979215035], [-118.20492697530638, 33.73855200957698], [-118.20393597410805, 33.739386016319145], [-118.20365702484322, 33.739364024468344], [-118.20258400140729, 33.73990598153702], [-118.2023870217678, 33.74063297530201], [-118.19538898336333, 33.74063797344996], [-118.19243902386079, 33.743040977735824], [-118.19244802052707, 33.74495200643248], [-118.19676899830449, 33.74492701569288], [-118.19731700576249, 33.74471298973853], [-118.19729001576388, 33.7511910103132], [-118.19895397811794, 33.75108999511351], [-118.19893498515589, 33.74398599597354], [-118.19907598553873, 33.74390197447668], [-118.19917000333125, 33.74415498598459], [-118.20309602220044, 33.74415398635506], [-118.20365702484322, 33.744539001579575], [-118.20624901173188, 33.744566991207776], [-118.20628399876719, 33.744981995319684], [-118.20644199285287, 33.744981995319684], [-118.20641000470637, 33.75007300354618], [-118.20700099623645, 33.7506749910016], [-118.21295400083336, 33.74762001778117], [-118.21298798823909, 33.746895023275236], [-118.20682001067041, 33.74256699547865], [-118.20649502583271, 33.74077997346222], [-118.2062740024714, 33.74052901382571], [-118.20650002398065, 33.740654020135246], [-118.20661897990072, 33.74029099676152], [-118.2155349917967, 33.746244001358306], [-118.21495599582158, 33.748956996038295], [-118.21545102291209, 33.74897199048196], [-118.21546301846702, 33.7490969967916], [-118.21530202549246, 33.74918701606592], [-118.21526998473388, 33.75100197509842], [-118.21506000991009, 33.751143975110985], [-118.21503701842983, 33.75202201816659], [-118.21519701177446, 33.7522699789146], [-118.20742799590336, 33.75629301446503], [-118.20743699256957, 33.756875009328915], [-118.20763602408016, 33.75691299525284], [-118.20766301407895, 33.76299800356642], [-118.20896200641202, 33.76299700393684], [-118.20896700455974, 33.75952497473327], [-118.20912000049763, 33.75953802252987], [-118.20987098537266, 33.7572660223309], [-118.21192101519259, 33.75621199185698], [-118.21379200609388, 33.756331000389046], [-118.21391401351471, 33.7626279827857], [-118.21409599871045, 33.76280002429759], [-118.21509699620454, 33.762798025038286], [-118.21510799212986, 33.757360987140935], [-118.21634200854027, 33.75736998380723], [-118.21841697648777, 33.76137597304282], [-118.21875500912216, 33.761538018258875], [-118.22050799112074, 33.764764980379226], [-118.22009398663833, 33.76535602452131], [-118.220399978514, 33.7660950138413], [-118.22026797479744, 33.76684499908664], [-118.21911398136548, 33.76748902359661], [-118.2172259967615, 33.766954011323], [-118.21670697856112, 33.767524010631895], [-118.2181540212962, 33.76819702439961], [-118.21529097695499, 33.76922201300354], [-118.21408100426669, 33.769747975998925], [-118.2139789894373, 33.76991601899247], [-118.21159897663172, 33.76930498225876], [-118.21100598584246, 33.769571988580786], [-118.21097899584385, 33.769810005644935], [-118.21299598527574, 33.77028698679082], [-118.21158898033589, 33.77088597535754], [-118.20944498533528, 33.77026699419912], [-118.20906502087075, 33.770474022746406], [-118.2090159864092, 33.770788011658674], [-118.21048002284712, 33.771134988347065], [-118.21049101877254, 33.771297980580755], [-118.20811900300349, 33.77228998140862], [-118.20855999748461, 33.77309299963372], [-118.20919802421692, 33.773093999263374], [-118.2124039941161, 33.771872978037464], [-118.21247202153965, 33.771484016906705], [-118.21341498790596, 33.77107301131317], [-118.21380200238967, 33.770981992409304], [-118.21441798465922, 33.77128498539629], [-118.21443597799167, 33.770883976098325], [-118.21964999326862, 33.76881400629879], [-118.22060600743167, 33.769084011509534], [-118.22092999263967, 33.77066300534912], [-118.21794999163768, 33.77259597328427], [-118.2179929757096, 33.77274102479744], [-118.21261802007032, 33.77472097532284], [-118.2097790194512, 33.77600597284173], [-118.20983599833725, 33.776621008093905], [-118.21013899132406, 33.777120980720106], [-118.21583798478363, 33.774778006820874], [-118.21655098373458, 33.77434101085832], [-118.21674201820852, 33.77444402531709], [-118.21687702081375, 33.774867973483225], [-118.21992599625682, 33.77326398890409], [-118.22000901812409, 33.77344497447011], [-118.22497801892972, 33.77073897719698], [-118.22546199748271, 33.77078201388123], [-118.22697001762222, 33.77026899345833], [-118.22684801020135, 33.77004902233858], [-118.23818801860466, 33.767439989135006], [-118.2383130249142, 33.767673008051375], [-118.23903901904957, 33.76723701171825], [-118.24053099250374, 33.76700599206118], [-118.24110698959011, 33.766732987961696], [-118.24131901628536, 33.76692002391732], [-118.2419478738632, 33.76652963969067], [-118.22066900000027, 33.78253699912735], [-118.22768100000023, 33.789943999127296], [-118.22734100000021, 33.79080599912721], [-118.22694200000016, 33.7906999991273], [-118.22679700000012, 33.792147999127224], [-118.22243600000017, 33.80415199912706], [-118.2224420000001, 33.812451999127], [-118.22276800000019, 33.81272799912698], [-118.22457000000017, 33.82156799912686], [-118.224604, 33.824287999126824], [-118.22229700000031, 33.82429199912682], [-118.22228300000032, 33.82581399912671], [-118.21888500000016, 33.82568199912674], [-118.21576200000013, 33.8260749991268], [-118.21687500000014, 33.83015199912677], [-118.216847, 33.83171499912677], [-118.21596800000012, 33.834383999126686], [-118.213191, 33.83442099912667], [-118.21265800000016, 33.835459999126684], [-118.21179800000017, 33.83663599912664], [-118.21126200000019, 33.838306999126566], [-118.2073320000002, 33.83941899912664], [-118.2057840000003, 33.84500599912656], [-118.20549600000017, 33.84662299912655], [-118.206791, 33.84656799912648], [-118.20679800000015, 33.84840299912642], [-118.20601600000023, 33.848441999126614], [-118.2056, 33.848777999126604], [-118.20547100000014, 33.84929299912645], [-118.20527300000012, 33.84944999912653], [-118.20483100000013, 33.85253699912645], [-118.20398800000018, 33.85514599912641], [-118.202973, 33.85717499912645], [-118.20098100000013, 33.860093999126434], [-118.20349200000015, 33.86040899912628], [-118.20354200000017, 33.86106899912645], [-118.206321, 33.87034299912627], [-118.20566600000015, 33.87038999912621], [-118.20560300000027, 33.872015999126276], [-118.20589500000014, 33.87289399912625], [-118.20560700000017, 33.87428599912616], [-118.207155, 33.874268999126116], [-118.2071570000002, 33.87471699912619], [-118.20792500000017, 33.874802999126196], [-118.20796300000012, 33.87426499912625], [-118.2082400000002, 33.87426399912617], [-118.20823800000015, 33.87482499912618], [-118.20856600000019, 33.8748569991262], [-118.208513, 33.879775999126174], [-118.20861600000023, 33.880660999126], [-118.2088980000002, 33.8806529991261], [-118.20889600000022, 33.88129199912605], [-118.1923870000002, 33.88143699912611], [-118.19162600000018, 33.88091699912609], [-118.190069, 33.88141199912617], [-118.1883680000002, 33.88132499912618], [-118.18760100000014, 33.8854029991261], [-118.18577800000021, 33.885441999126], [-118.17743500000017, 33.88535899912612], [-118.17742700000022, 33.88185699912621], [-118.15131500000021, 33.881986999126106], [-118.151239, 33.8689699991262], [-118.146901, 33.86900799912626], [-118.14650900000021, 33.86793699912635], [-118.14653100000014, 33.86430199912632], [-118.14676900000022, 33.860252999126416], [-118.15709900000024, 33.86018299912635], [-118.15697200000018, 33.85783599912638], [-118.15761300000014, 33.85734899912629], [-118.15584700000029, 33.85732399912639], [-118.15582700000013, 33.854830999126456], [-118.16420000000011, 33.854779999126436], [-118.16418300000026, 33.85408999912645], [-118.16634200000021, 33.854431999126426], [-118.16774500000018, 33.854443999126474], [-118.16755900000015, 33.846939999126576], [-118.164182, 33.84705699912655], [-118.16418000000016, 33.82768499912678]], [[-118.16418000000016, 33.82768499912678], [-118.16755400000011, 33.82769199912679], [-118.16756200000015, 33.82014899912687], [-118.16473800000027, 33.82021399912685], [-118.16436700000013, 33.8216219991268], [-118.16418500000017, 33.82311899912691], [-118.16418000000016, 33.82768499912678]], [[-118.175273, 33.818788999126944], [-118.18480200000015, 33.818615999126884], [-118.18480700000016, 33.817094999126816], [-118.18392300000018, 33.817055999126836], [-118.18395700000023, 33.81619399912694], [-118.18480500000015, 33.816403999126905], [-118.18467100000011, 33.81457899912699], [-118.18490700000018, 33.81163499912698], [-118.18489100000019, 33.80439599912707], [-118.18173400000026, 33.80423099912705], [-118.18172700000022, 33.80348899912711], [-118.182134, 33.80259999912714], [-118.18200100000014, 33.802116999127165], [-118.18210100000017, 33.80071699912709], [-118.17849300000016, 33.798514999127136], [-118.1717520000002, 33.793881999127215], [-118.16764500000016, 33.7914079991272], [-118.16690300000013, 33.790795999127255], [-118.16697100000015, 33.79055599912728], [-118.1665320000003, 33.7900799991273], [-118.16611100000011, 33.78985299912735], [-118.14942600000016, 33.78983599912719], [-118.151001, 33.79122299912726], [-118.15174900000014, 33.79242599912727], [-118.15171200000019, 33.79284699912714], [-118.15222600000011, 33.79346399912723], [-118.15457000000012, 33.79346999912717], [-118.1545650000003, 33.796809999127184], [-118.15631, 33.79635099912723], [-118.15889700000015, 33.796268999127236], [-118.15888800000022, 33.797118999127164], [-118.15138600000016, 33.797118999127164], [-118.15134600000017, 33.804426999127095], [-118.1568570000002, 33.804421999127], [-118.15685900000014, 33.80412799912704], [-118.15887700000029, 33.80244899912701], [-118.15891300000017, 33.81013199912693], [-118.16154800000015, 33.81011599912697], [-118.16145200000027, 33.80907599912709], [-118.16324900000023, 33.80913399912701], [-118.16326900000011, 33.81167799912699], [-118.17630200000015, 33.81164699912699], [-118.17631100000027, 33.80424399912702], [-118.18064600000022, 33.80422999912706], [-118.18066200000024, 33.81164099912698], [-118.1787920000002, 33.811629999127035], [-118.17878700000013, 33.81352799912702], [-118.17428600000014, 33.81371299912692], [-118.17425500000017, 33.81532299912688], [-118.17196800000016, 33.815293999126894], [-118.171971, 33.81880599912689], [-118.17409900000027, 33.81870799912687], [-118.17414400000011, 33.81891599912689], [-118.17527300000017, 33.818909999126916], [-118.175273, 33.818788999126944]]], [[[-118.23711099665037, 33.72782698381385], [-118.23714131134656, 33.72771940083146], [-118.24311443374121, 33.741955115708514], [-118.24300102458375, 33.74181800986284], [-118.23711099665037, 33.72782698381385]]], [[[-118.22454102296709, 33.76761797581249], [-118.22347099841987, 33.76610201124841], [-118.2229289887392, 33.7659230249414], [-118.22261400019731, 33.76599599790082], [-118.22251398462728, 33.7658150123348], [-118.22269902132373, 33.76570000232102], [-118.22270501910121, 33.76525900784008], [-118.22158001492716, 33.76382201401279], [-118.22036099296038, 33.76143000565216], [-118.2205459770448, 33.76135797971039], [-118.21943402066721, 33.75922897915344], [-118.21965799030538, 33.75914800915745], [-118.22004900330724, 33.758296009082756], [-118.2187690039362, 33.75534199844989], [-118.21855297872274, 33.75532800363579], [-118.2185349853903, 33.75370802498345], [-118.22295297984914, 33.75242597374114], [-118.22481597371358, 33.756830973015305], [-118.22766802212941, 33.75597697368152], [-118.22777098397619, 33.75581498107743], [-118.22906997630929, 33.75556302181124], [-118.22774699286617, 33.75242397448192], [-118.22816199697822, 33.752299020784456], [-118.22947198523666, 33.75543801550172], [-118.23522601093507, 33.75371102387209], [-118.23559797836297, 33.75368098237265], [-118.23574197763453, 33.753816984607575], [-118.23680700403389, 33.75362700237534], [-118.23705801628266, 33.753455013475495], [-118.23690701960389, 33.75319400493102], [-118.2443669920986, 33.751009025117554], [-118.24448600063079, 33.751257985495], [-118.2457899911118, 33.7506749910016], [-118.24315302089202, 33.74433402490356], [-118.24249800045664, 33.74375097779803], [-118.2334810259731, 33.74229499100889], [-118.23282000776034, 33.745157982737894], [-118.23260998032426, 33.745122995702594], [-118.23325100594555, 33.74225400619606], [-118.23139001134011, 33.74197600394858], [-118.22724702024007, 33.74315598774962], [-118.22673799833547, 33.74543898387402], [-118.22654501721445, 33.745403996838704], [-118.22703499354483, 33.7432380099873], [-118.2251260167197, 33.74379601374128], [-118.224359984789, 33.74660097434255], [-118.22486100965682, 33.743902974106334], [-118.21979999031768, 33.74535201610055], [-118.21745401752976, 33.74442299193625], [-118.23110901020415, 33.740481978623315], [-118.23287498738722, 33.74061398233997], [-118.24136100072774, 33.74198000246699], [-118.24310898457834, 33.74292901922295], [-118.2434742378281, 33.742812640608605], [-118.248966, 33.755901999127715], [-118.240767, 33.75829599912762], [-118.24115300000017, 33.758540999127646], [-118.2452903394487, 33.763690624791884], [-118.24202401819946, 33.76436102480465], [-118.2417630096551, 33.76472799408475], [-118.24013398172426, 33.765038984108195], [-118.24003701765498, 33.76492902485446], [-118.23963001057967, 33.765139999307934], [-118.23928298127923, 33.7647880244716], [-118.23823200230612, 33.764872992985765], [-118.23773197706787, 33.76509601560633], [-118.23487798200509, 33.76558199341847], [-118.2343480204914, 33.76602898567689], [-118.23367800561238, 33.766317983849675], [-118.22843200218885, 33.76751301470647], [-118.22777098397609, 33.76733197652827], [-118.22733598727265, 33.76766900953301], [-118.22693797686354, 33.76760098210954], [-118.2264689927543, 33.767762974713584], [-118.22548398933338, 33.76838600700227], [-118.22501200633562, 33.7681399929014], [-118.22454102296709, 33.76761797581249]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Long Beach", "metadata": {"sqmi": 52.1003673205, "type": "standalone-city", "name": "Long Beach", "slug": "long-beach"}, "cases": 667.0, "population": 4.018072289156627, "external_id": "long-beach", "slug": "long-beach-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/long-beach-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.375281, 34.31849599912095], [-118.374737, 34.31839999912093], [-118.373979, 34.31874299912094], [-118.37364899999987, 34.31862399912097], [-118.371793, 34.31862399912097], [-118.370801, 34.31774399912088], [-118.37044899999987, 34.31718399912094], [-118.371601, 34.315247999120956], [-118.371825, 34.31156799912106], [-118.371441, 34.31190399912099], [-118.371249, 34.311519999120975], [-118.371809, 34.31036799912107], [-118.371825, 34.30983999912099], [-118.369873, 34.30977599912106], [-118.368961, 34.310031999121094], [-118.367633, 34.31014399912103], [-118.366673, 34.311039999121036], [-118.365297, 34.31023999912102], [-118.36350499999989, 34.30959999912104], [-118.363697, 34.30905599912103], [-118.363793, 34.30783999912111], [-118.363473, 34.306639999121124], [-118.361985, 34.30337599912111], [-118.361713, 34.30228799912113], [-118.362097, 34.30204799912107], [-118.362097, 34.301631999121135], [-118.361617, 34.300927999121136], [-118.361265, 34.29971199912108], [-118.360865, 34.29907199912119], [-118.360769, 34.298351999121145], [-118.360913, 34.29760099912118], [-118.360811, 34.297090999121174], [-118.362369, 34.298079999121185], [-118.362833, 34.29879999912114], [-118.362977, 34.299375999121146], [-118.363777, 34.29982399912111], [-118.364385, 34.29995199912116], [-118.365201, 34.30108799912117], [-118.366113, 34.30159999912119], [-118.36657699999988, 34.30028799912119], [-118.366993, 34.29975999912119], [-118.368897, 34.29868799912112], [-118.369665, 34.29868799912116], [-118.370609, 34.29676899912111], [-118.370913, 34.295776999121166], [-118.371025, 34.295072999121174], [-118.370833, 34.29284899912121], [-118.371005, 34.29180899912122], [-118.37147, 34.29044999912129], [-118.371858, 34.28993699912133], [-118.372593, 34.28942399912121], [-118.373678, 34.28896099912129], [-118.373968, 34.28849699912123], [-118.373775, 34.287457999121315], [-118.37392, 34.28627199912131], [-118.373687, 34.28592799912127], [-118.37351899906321, 34.2831660015917], [-118.3726370000003, 34.28283199912124], [-118.37467500000027, 34.28282699912136], [-118.3748010000003, 34.28365999912122], [-118.37710300000025, 34.28336399912132], [-118.38185900000028, 34.283896999121204], [-118.38576200000031, 34.28481699912123], [-118.38461800000012, 34.288174999121225], [-118.3846190000003, 34.28973099912117], [-118.3869160000003, 34.28973399912122], [-118.38691100000013, 34.29149399912124], [-118.38237200000025, 34.29152599912113], [-118.38237100000019, 34.29332899912118], [-118.38295100000012, 34.29332999912126], [-118.38287800000022, 34.29695599912112], [-118.38739000000024, 34.296962999121064], [-118.38739600000032, 34.29877999912113], [-118.3936350000002, 34.298787999121195], [-118.3937110000002, 34.29697899912114], [-118.39674300000014, 34.29698299912113], [-118.39698400000019, 34.29334799912119], [-118.39981400000023, 34.29341999912126], [-118.40023200000023, 34.29257199912106], [-118.4009060000002, 34.29014299912123], [-118.40082200000015, 34.288444999121076], [-118.40114300000025, 34.28844999912107], [-118.40158800000022, 34.28642299912113], [-118.40616800000024, 34.28592699912134], [-118.40940000000022, 34.28901199912114], [-118.410294, 34.29107099912126], [-118.41034800000035, 34.29196799912116], [-118.41021700000015, 34.29184299912112], [-118.40896000000023, 34.29180799912107], [-118.4090720000003, 34.293658999121185], [-118.40350800000026, 34.29351299912115], [-118.4034600000002, 34.29710599912115], [-118.40120500000022, 34.29706499912096], [-118.40105200000026, 34.30066999912105], [-118.40560000000018, 34.300725999121056], [-118.40546900000022, 34.30791199912098], [-118.4037510000002, 34.30791699912097], [-118.40356600000015, 34.30896999912088], [-118.40411400000023, 34.30903799912103], [-118.40388100000023, 34.310049999121034], [-118.40332400000021, 34.31002399912102], [-118.40301600000022, 34.30938899912102], [-118.40247900000018, 34.30942899912094], [-118.40244600000025, 34.30960799912097], [-118.40183600000019, 34.309876999120945], [-118.4010790000002, 34.30972199912081], [-118.40090400000037, 34.31002699912092], [-118.40076000000023, 34.31757699912094], [-118.39971600000017, 34.31759399912097], [-118.39866000000022, 34.31810999912085], [-118.39753800000034, 34.31828999912097], [-118.39727900000028, 34.317114999120754], [-118.39687872689846, 34.31727729876774], [-118.396867, 34.31497199912095], [-118.397593, 34.31491199912102], [-118.397581, 34.31440699912099], [-118.397154, 34.31444799912103], [-118.3965939999999, 34.31417599912097], [-118.396866, 34.31342399912099], [-118.39675399999989, 34.312735999121045], [-118.39685, 34.31257599912106], [-118.397042, 34.31260799912103], [-118.397042, 34.31227199912102], [-118.396434, 34.311823999120975], [-118.396587, 34.311255999120974], [-118.396306, 34.31110399912101], [-118.39581, 34.311471999121], [-118.395362, 34.31155199912105], [-118.39509, 34.311407999121016], [-118.394706, 34.31076799912101], [-118.39205, 34.31255999912106], [-118.391346, 34.31281599912098], [-118.390658, 34.31262399912098], [-118.388178, 34.311007999120946], [-118.385538, 34.31372799912089], [-118.382898, 34.315183999120926], [-118.38261, 34.31577599912097], [-118.382386, 34.31446399912098], [-118.381506, 34.315519999120966], [-118.381362, 34.31590399912093], [-118.380754, 34.3161759991209], [-118.379826, 34.31718399912094], [-118.379282, 34.316831999120964], [-118.3787059999999, 34.31695999912098], [-118.377906, 34.31814399912093], [-118.376657, 34.318751999120884], [-118.375585, 34.31881599912095], [-118.375281, 34.31849599912095]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Lopez/Kagel Canyons", "metadata": {"sqmi": 3.5744194134, "type": "unincorporated-area", "name": "Lopez/Kagel Canyons", "slug": "lopezkagel-canyons"}, "cases": 1.0, "population": 0.014120304998587971, "external_id": "lopezkagel-canyons", "slug": "lopezkagel-canyons-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/lopezkagel-canyons-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.27320800000012, 34.11840799912326], [-118.27190800000012, 34.11690799912317], [-118.27180800000014, 34.117207999123046], [-118.269108, 34.11390899912315], [-118.26800800000012, 34.11270899912319], [-118.267408, 34.11230899912312], [-118.26910800000012, 34.11160899912317], [-118.271508, 34.10910899912317], [-118.273508, 34.104108999123284], [-118.27330800000011, 34.101108999123376], [-118.274008, 34.099008999123264], [-118.275508, 34.097608999123324], [-118.276608, 34.09590899912338], [-118.284208, 34.09590899912338], [-118.289308, 34.099508999123266], [-118.291909, 34.101108999123305], [-118.29340900000012, 34.10180899912332], [-118.309409, 34.10160899912327], [-118.309409, 34.10770799912324], [-118.308009, 34.108007999123195], [-118.30760900000014, 34.10920799912327], [-118.30750900000015, 34.11340799912308], [-118.306609, 34.11380799912332], [-118.299009, 34.11570799912322], [-118.29220900000011, 34.1176079991232], [-118.286109, 34.118507999123096], [-118.274208, 34.11980799912314], [-118.27320800000012, 34.11840799912326]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Los Feliz", "metadata": {"sqmi": 2.60795509818, "type": "segment-of-a-city", "name": "Los Feliz", "slug": "los-feliz"}, "cases": 33.0, "population": 0.21608171817705604, "external_id": "los-feliz", "slug": "los-feliz-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/los-feliz-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.21322400000017, 33.94418699912533], [-118.21370200000014, 33.94024499912532], [-118.21053200000023, 33.93982699912538], [-118.21086200000026, 33.9370149991254], [-118.19955600000011, 33.935920999125386], [-118.19850700000016, 33.935704999125484], [-118.18961100000016, 33.93508199912544], [-118.18235600000023, 33.93428599912552], [-118.18174000000013, 33.934362999125376], [-118.18189100000022, 33.933274999125445], [-118.18282400000024, 33.93079099912547], [-118.18007700000032, 33.9309419991256], [-118.17532900000022, 33.930476999125474], [-118.17665300000014, 33.918312999125654], [-118.178709, 33.918591999125674], [-118.180507, 33.91006799912571], [-118.18177300000013, 33.90754699912575], [-118.183158, 33.90598499912583], [-118.18389300000017, 33.90638399912574], [-118.18497700000017, 33.90540499912577], [-118.18586000000013, 33.90498599912577], [-118.18645100000018, 33.905417999125746], [-118.18702700000011, 33.90548499912583], [-118.1867750000003, 33.90689299912581], [-118.18931500000018, 33.907339999125746], [-118.189516, 33.90606099912576], [-118.19019500000014, 33.9060999991258], [-118.19019, 33.90581899912588], [-118.19579200000011, 33.906330999125814], [-118.1938910000002, 33.91093299912574], [-118.195122, 33.9112719991258], [-118.19714900000017, 33.90646799912588], [-118.19997900000013, 33.906676999125764], [-118.198387, 33.91067899912584], [-118.19872600000012, 33.910560999125714], [-118.20186200000025, 33.91166399912581], [-118.20582700000023, 33.91262199912573], [-118.20640800000011, 33.91061899912573], [-118.21383900000018, 33.91306099912571], [-118.21392200000012, 33.91260299912577], [-118.21679700000014, 33.91222699912574], [-118.21818400000014, 33.92123799912561], [-118.21866000000016, 33.921313999125594], [-118.21962500000018, 33.922086999125675], [-118.21995900000023, 33.92275099912556], [-118.22000600000018, 33.92231799912575], [-118.22409300000014, 33.92219999912564], [-118.22428700000019, 33.923417999125526], [-118.22882798103045, 33.922779001859105], [-118.23032396964395, 33.92900099777439], [-118.22953500000015, 33.92900599912548], [-118.22566700000013, 33.92991999912563], [-118.2267720000003, 33.93709599912541], [-118.228311, 33.93695099912545], [-118.22837400000014, 33.93736599912541], [-118.22921300000013, 33.93733099912545], [-118.22864600000015, 33.93900699912546], [-118.22949698601839, 33.943100000711894], [-118.2278079929868, 33.94308900327576], [-118.22740499300309, 33.94270500075814], [-118.22690600000014, 33.94016699912537], [-118.22302200000013, 33.93975699912536], [-118.22324600000017, 33.9378419991254], [-118.21392200000022, 33.9368929991254], [-118.21401000000027, 33.93737499912542], [-118.21424100000017, 33.937414999125416], [-118.214219, 33.93840499912537], [-118.21452800000013, 33.93844399912543], [-118.21441900000016, 33.93885399912539], [-118.21482, 33.939857999125415], [-118.214708, 33.940102999125415], [-118.2150620000002, 33.940204999125314], [-118.21511400000011, 33.94120599912533], [-118.215521, 33.94135099912539], [-118.21540400000019, 33.94231499912535], [-118.21629700000013, 33.94251599912541], [-118.21608, 33.943932999125344], [-118.21623000000024, 33.94389599912535], [-118.21654900000016, 33.94498099912532], [-118.21683400000019, 33.945019999125286], [-118.21676800000016, 33.945440999125296], [-118.21291600000016, 33.945020999125326], [-118.21322400000017, 33.94418699912533]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Lynwood", "metadata": {"sqmi": 4.90022698292, "type": "standalone-city", "name": "Lynwood", "slug": "lynwood"}, "cases": 192.0, "population": 0.7204773162219971, "external_id": "lynwood", "slug": "lynwood-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/lynwood-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.917696, 34.067374999123786], [-118.8705877894077, 34.052304080417976], [-118.8705862552877, 34.05206845124172], [-118.869818, 34.05182999912402], [-118.86993378001296, 34.0491302197347], [-118.86971544875101, 34.04913058792273], [-118.869712083048, 34.04873930588034], [-118.86921900000019, 34.048712999123936], [-118.86927576759214, 34.04283307171069], [-118.861565566124, 34.04284410658411], [-118.8615717438675, 34.04567188030824], [-118.86118025464211, 34.045768513712886], [-118.86068245181525, 34.04767148327072], [-118.859312728027, 34.04672228521405], [-118.85887503071217, 34.04854968510577], [-118.84613659253718, 34.04447555463985], [-118.81842878835805, 34.03993786523512], [-118.7981149259729, 34.03840909376653], [-118.7981764031122, 34.038305058169705], [-118.79783400000024, 34.03826399912415], [-118.79838900000024, 34.037629999124185], [-118.79927284508038, 34.03780716626857], [-118.79958032122714, 34.037465693037404], [-118.79322280133424, 34.036269657232715], [-118.79316938215251, 34.036632784294206], [-118.79413799052075, 34.03739184027363], [-118.79424257244462, 34.03812571949045], [-118.79462000000012, 34.03833699912412], [-118.79070524289914, 34.039206119960205], [-118.78022307642799, 34.04223617181105], [-118.7557940000002, 34.04273799912418], [-118.74867934743567, 34.04267237002934], [-118.74159500199332, 34.04276907460497], [-118.74029500000017, 34.04290599912409], [-118.73345100000022, 34.04289399912416], [-118.72422200000011, 34.043438999124184], [-118.72285700000019, 34.043653999124075], [-118.71958888341713, 34.04371365135574], [-118.7193128327078, 34.04218739173224], [-118.71833806742885, 34.040347138173125], [-118.71839062823769, 34.03922168600846], [-118.718023, 34.03708299912415], [-118.71439600000016, 34.035405999124244], [-118.71417619873559, 34.03542728269737], [-118.71510920757939, 34.036045734504455], [-118.71570244844183, 34.03693337564989], [-118.71522353822316, 34.03751505651241], [-118.71601500000018, 34.038618999124175], [-118.7155190000002, 34.03931899912424], [-118.715906, 34.04103399912416], [-118.7155010000003, 34.04135999912413], [-118.71512500000014, 34.04111199912421], [-118.71537800000013, 34.04143899912428], [-118.71451500000012, 34.042022999124256], [-118.71382700000015, 34.04069999912418], [-118.71293200000015, 34.040973999124226], [-118.71191470087093, 34.03926259919573], [-118.71091360971717, 34.03866389628697], [-118.70881817374998, 34.03676640614675], [-118.70869400000014, 34.03601499912429], [-118.70908600000016, 34.035679999124184], [-118.7093794312603, 34.03430149581559], [-118.70335005192806, 34.034737333457045], [-118.70345012820445, 34.03677493896939], [-118.70308354800454, 34.037788802904075], [-118.70257244217666, 34.03845617706032], [-118.7013639678962, 34.039328878996905], [-118.6976655709196, 34.0404511793216], [-118.69903759103478, 34.04237951498046], [-118.69927013404234, 34.043622814091876], [-118.69897129691209, 34.04470970063892], [-118.69847663774361, 34.04478947686173], [-118.69835983548157, 34.04499839307038], [-118.6873456203928, 34.04566464217395], [-118.68224757183263, 34.04752530189196], [-118.6540701976361, 34.047485728508995], [-118.64364881702082, 34.046656355674685], [-118.63951700000011, 34.04663699912395], [-118.63878700000015, 34.045739999124116], [-118.63825947313417, 34.045632530922354], [-118.62633137747699, 34.04562007922922], [-118.62545500000016, 34.04586499912407], [-118.60345316909137, 34.04559720232961], [-118.58773400000014, 34.04557999912412], [-118.58442457361303, 34.037837306389996], [-118.58727697692788, 34.038916023281004], [-118.58983597604048, 34.03909500958789], [-118.59161500102016, 34.039449983312956], [-118.59501900280048, 34.039632021120696], [-118.59556001285146, 34.039604978509836], [-118.5966169896022, 34.03916798254731], [-118.59721497853918, 34.039086012921715], [-118.59889898609681, 34.039207020712944], [-118.60379501394317, 34.039105005883684], [-118.60537100889405, 34.03867900584632], [-118.60813398505309, 34.03694101829145], [-118.60979000298246, 34.03635097377876], [-118.6126679891552, 34.03683400531429], [-118.6148600189878, 34.036890984200284], [-118.62229400111347, 34.03777097390327], [-118.62378797382678, 34.03782100799431], [-118.6248629965218, 34.03768600538895], [-118.62695301152516, 34.036877989015935], [-118.62797999938846, 34.03680601568612], [-118.63139999524186, 34.03701699013967], [-118.63266500016935, 34.03683000679603], [-118.63374901953054, 34.03686699309043], [-118.63438099587336, 34.036717995671], [-118.63526098557624, 34.03619397932271], [-118.63616401937139, 34.03611900710425], [-118.64232799842186, 34.037522013525766], [-118.64670800695671, 34.03810200913042], [-118.64774699037473, 34.03802798392944], [-118.6484919774722, 34.03748497461909], [-118.64903398715293, 34.0373730161062], [-118.65831302242279, 34.038500019539484], [-118.66278099836067, 34.03874098288031], [-118.66839002515783, 34.03878301993481], [-118.67189299026637, 34.03843599063434], [-118.67408801898785, 34.03791902430522], [-118.67646198140379, 34.036997997177544], [-118.67569900097396, 34.03585000152299], [-118.67557299503473, 34.03590398152041], [-118.6753810135433, 34.03563197705044], [-118.6756690120864, 34.03550602372346], [-118.67652800956814, 34.03695501310552], [-118.67738400816117, 34.036387013055794], [-118.67827899230778, 34.035407007782894], [-118.67863002012643, 34.03424201842558], [-118.67962102132486, 34.032256017510704], [-118.68010000172988, 34.03188599672981], [-118.68121500960815, 34.03165897559103], [-118.68214498078997, 34.03082702072017], [-118.6837740087208, 34.0307210073726], [-118.69134599234054, 34.03241501122601], [-118.6944460015042, 34.032600994939955], [-118.69694602247164, 34.032306998619084], [-118.70073998501212, 34.03109097554133], [-118.70686097999055, 34.029550020237856], [-118.7146859751182, 34.03149598335742], [-118.7154939914912, 34.031589001520516], [-118.71983401484275, 34.03140301780652], [-118.72215999503909, 34.03151397668989], [-118.73367699049015, 34.033025995347764], [-118.73973600843473, 34.03299800571931], [-118.74398301362329, 34.03247998714867], [-118.74743099910481, 34.03149498372793], [-118.75193901283782, 34.02973400469269], [-118.75447801935894, 34.02818799862908], [-118.75590601651987, 34.02616101290147], [-118.75653099545565, 34.02578099582482], [-118.75949200349582, 34.02550599246616], [-118.76307699084181, 34.02552498542821], [-118.76844700094543, 34.02488701130783], [-118.77335102582829, 34.02405000567694], [-118.78166599728651, 34.022290973288776], [-118.78360001746319, 34.02172502511026], [-118.78534500242539, 34.02098598317822], [-118.78750599112881, 34.01946202157756], [-118.78792299449984, 34.0189749915239], [-118.78822398822754, 34.01824299961076], [-118.7898189761405, 34.016809004672304], [-118.79042601435593, 34.016004986817556], [-118.7907669932669, 34.014872985236494], [-118.79201900300971, 34.01349002401865], [-118.7924170134189, 34.01199699832295], [-118.79387699872639, 34.01086599637125], [-118.7940910246806, 34.010414005964954], [-118.79408902542147, 34.00994002370774], [-118.79383301502483, 34.008456994307785], [-118.79423502395231, 34.007472990516526], [-118.79530299662828, 34.00682302084133], [-118.79944198921012, 34.006437005987166], [-118.8008699863711, 34.00606298668797], [-118.80225300020093, 34.00546499775088], [-118.80389102479793, 34.00414701245572], [-118.80473697448302, 34.00290699826796], [-118.80488802377361, 34.00236898710557], [-118.80487197708828, 34.00111697736278], [-118.8050690093397, 34.00067898177046], [-118.80546202160092, 34.00049099879739], [-118.80676101393398, 34.00041597396687], [-118.80771197733704, 34.00066598658596], [-118.80860301557733, 34.00126697441186], [-118.81365898415648, 34.006514977094454], [-118.81591099176389, 34.009129008445974], [-118.81750398041768, 34.01063697597339], [-118.8236079816932, 34.01562102383473], [-118.82720601683612, 34.01829098183069], [-118.835263978268, 34.02415202050622], [-118.84254601669737, 34.02904299759246], [-118.84656200222872, 34.03122897703543], [-118.85165800860331, 34.03345299501452], [-118.85495999555421, 34.03458199770701], [-118.85933500594103, 34.03533698110022], [-118.86041197528323, 34.03529999480578], [-118.86148699797845, 34.03453801400545], [-118.86207199173076, 34.034516022154676], [-118.86451698045923, 34.035397011487085], [-118.86874199379706, 34.036612981953006], [-118.87045798950129, 34.036717995671], [-118.87209301520947, 34.037357022032914], [-118.87608201074228, 34.03806702209511], [-118.87907700618797, 34.03804597726185], [-118.88161001493145, 34.038293990621874], [-118.88292000318985, 34.038138995424895], [-118.88535499562256, 34.0385480017593], [-118.88893098630248, 34.03878901771231], [-118.89066197645028, 34.03913999291896], [-118.89185500804803, 34.0389430132798], [-118.89427500603692, 34.03936001665076], [-118.89582900913716, 34.039237009600306], [-118.89745098704867, 34.03971099185744], [-118.89853000826216, 34.0398519922404], [-118.89994900875685, 34.040585983412456], [-118.90146097480267, 34.041122994945155], [-118.90469598657168, 34.04176202130717], [-118.90629802450364, 34.04156398942619], [-118.9101259744499, 34.042194019121936], [-118.91274500394934, 34.04174397536265], [-118.91520198823261, 34.04172098388234], [-118.9210790209816, 34.04473402527249], [-118.92381227977302, 34.04566389486088], [-118.92408300000018, 34.046912999124096], [-118.91973900000018, 34.055980999124], [-118.919776, 34.06310299912386], [-118.91845400000014, 34.06524199912383], [-118.917696, 34.067374999123786]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Malibu", "metadata": {"sqmi": 19.8863310758, "type": "standalone-city", "name": "Malibu", "slug": "malibu"}, "cases": 30.0, "population": 0.12961202799619803, "external_id": "malibu", "slug": "malibu-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/malibu-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.30020700000011, 33.97451399912481], [-118.3003070000001, 33.96891399912489], [-118.300207, 33.9599139991251], [-118.3177610000001, 33.9598165504934], [-118.31774723199024, 33.970712999124984], [-118.317608, 33.970712999124984], [-118.31760800000012, 33.97441299912493], [-118.30020700000011, 33.97451399912481]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Manchester Square", "metadata": {"sqmi": 1.01264126487, "type": "segment-of-a-city", "name": "Manchester Square", "slug": "manchester-square"}, "cases": 13.0, "population": 0.08535784635587655, "external_id": "manchester-square", "slug": "manchester-square-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/manchester-square-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.4184110000003, 33.90371299912586], [-118.41742600000018, 33.90167099912583], [-118.41560400000017, 33.90189099912577], [-118.41550200000017, 33.90173499912576], [-118.414413, 33.90189599912582], [-118.40170100000024, 33.901959999125765], [-118.3787010000002, 33.90190499912588], [-118.37859900000021, 33.882779999126065], [-118.37891700000014, 33.8816919991261], [-118.37867300000018, 33.8814729991261], [-118.37866700000015, 33.88007299912614], [-118.37993900000014, 33.88007299912612], [-118.38002000000013, 33.879649999126045], [-118.37995500000024, 33.872833999126215], [-118.39552200000016, 33.872830999126236], [-118.39596800000014, 33.873985999126205], [-118.395963, 33.877100999126256], [-118.40155000000016, 33.8770829991261], [-118.40203100000019, 33.877320999126255], [-118.40276000000023, 33.87704599912621], [-118.40312000000017, 33.87764599912596], [-118.40453900000018, 33.87714599912616], [-118.404855, 33.87782099912622], [-118.40693200000014, 33.877217999126195], [-118.40719200000017, 33.87774699912618], [-118.40946266447587, 33.87673109163654], [-118.41137400116718, 33.88076299646456], [-118.41764899171297, 33.892306981914096], [-118.42020099341845, 33.897827988696235], [-118.42090299644414, 33.89977300479833], [-118.42176599244405, 33.90156902348102], [-118.42180197910898, 33.90200501981408], [-118.42247899139493, 33.90316301176432], [-118.4226700258689, 33.90415201370346], [-118.42327939601124, 33.90486737284448], [-118.41950900000019, 33.906184999125884], [-118.4184110000003, 33.90371299912586]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Manhattan Beach", "metadata": {"sqmi": 3.97071434338, "type": "standalone-city", "name": "Manhattan Beach", "slug": "manhattan-beach"}, "cases": 66.0, "population": 0.3599869095669248, "external_id": "manhattan-beach", "slug": "manhattan-beach-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/manhattan-beach-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.43654398614527, 33.978509002437974], [-118.43364498614358, 33.9765510024364], [-118.43225898160769, 33.97501600188325], [-118.4513009793637, 33.96423100779194], [-118.45476098071747, 33.96967500853251], [-118.45453199079489, 33.969838998491745], [-118.45747799406915, 33.97378599553228], [-118.45760197898169, 33.9737210075144], [-118.46062198616215, 33.97743900244006], [-118.46142099552706, 33.978356998987465], [-118.4617999768484, 33.978275004348696], [-118.46197498616274, 33.979366002441544], [-118.4634799812208, 33.98104900637736], [-118.45505098225952, 33.986416000744896], [-118.44830198598098, 33.98466100258495], [-118.44160398940076, 33.983380005282484], [-118.43952398614695, 33.98105000244006], [-118.43654398614527, 33.978509002437974]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Marina del Rey", "metadata": {"sqmi": 1.45477168604, "type": "unincorporated-area", "name": "Marina del Rey", "slug": "marina-del-rey"}, "cases": 11.0, "population": 0.09411362080766598, "external_id": "marina-del-rey", "slug": "marina-del-rey-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/marina-del-rey-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.421411, 34.01032399912458], [-118.420085, 34.00864499912458], [-118.41923, 34.009102999124394], [-118.417344, 34.006748999124596], [-118.421249, 34.004421999124546], [-118.418239, 34.00061899912464], [-118.419178, 34.00003399912455], [-118.4204, 33.99868799912457], [-118.42598, 33.99806999912463], [-118.428489, 34.00134399912459], [-118.430836, 34.00010199912455], [-118.430327, 33.99944599912462], [-118.435307, 33.996898999124646], [-118.435811, 33.99691699912452], [-118.44249096721673, 33.99366434702838], [-118.44335, 33.995316999124725], [-118.44435733428358, 33.99462071443707], [-118.45601985035636, 34.00987941955189], [-118.443426, 34.01662499912446], [-118.44441200000011, 34.01780999912447], [-118.44481200000011, 34.02010999912427], [-118.44281200000013, 34.020709999124385], [-118.44101200000013, 34.02150999912428], [-118.43029800000014, 34.026819999124214], [-118.418471, 34.012018999124436], [-118.421411, 34.01032399912458]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Mar Vista", "metadata": {"sqmi": 2.89525385641, "type": "segment-of-a-city", "name": "Mar Vista", "slug": "mar-vista"}, "cases": 53.0, "population": 0.4247135187114352, "external_id": "mar-vista", "slug": "mar-vista-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/mar-vista-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.00390198936488, 34.12930500164439], [-118.00399900000016, 34.11780699912319], [-118.00447000000011, 34.11762999912324], [-118.00465000000011, 34.11738899912328], [-118.00534300000018, 34.11764399912323], [-118.00525600000022, 34.117915999123376], [-118.006569, 34.11839299912333], [-118.00641200000014, 34.11782899912331], [-118.0059920000003, 34.11783099912333], [-118.00600100000017, 34.11699699912328], [-118.00709900000012, 34.11700299912322], [-118.00709600000019, 34.11446899912331], [-118.0066990000002, 34.11447499912333], [-118.0066990000002, 34.115177999123254], [-118.00539900000015, 34.11528299912342], [-118.00439900000029, 34.1171929991232], [-118.0041990000003, 34.1171929991232], [-118.0048960000002, 34.111462999123276], [-118.00529500000012, 34.11099399912331], [-118.00505300000013, 34.11102899912332], [-118.00516300000031, 34.110646999123325], [-118.00687900000015, 34.11043299912335], [-118.00714300000013, 34.11072599912331], [-118.00763700000017, 34.11045199912335], [-118.00736400000014, 34.11016299912331], [-118.01221100000016, 34.10560799912336], [-118.01576098617113, 34.10420000343584], [-118.0160619865793, 34.105568003965395], [-118.01594599829552, 34.10562899589352], [-118.01681073917553, 34.10933509867734], [-118.01671459353636, 34.109868607300854], [-118.01691998565882, 34.109929000937434], [-118.0160360000002, 34.11372199912331], [-118.015446, 34.11472699912324], [-118.01523598620918, 34.11567000004742], [-118.01487698584302, 34.11567300409474], [-118.01392818149793, 34.117269543293716], [-118.01347456463648, 34.11728275704989], [-118.01341022989122, 34.11702806499557], [-118.0130779858297, 34.11701900414836], [-118.01310497165537, 34.11865500583447], [-118.01234698588756, 34.11868100519347], [-118.01237097165384, 34.119885005837375], [-118.01210597379287, 34.12033500049803], [-118.00859498582462, 34.119129008151], [-118.00848998580392, 34.12192700423937], [-118.008574971647, 34.12490700584152], [-118.00878597164699, 34.125885005844786], [-118.00673398079735, 34.129335998614884], [-118.00637600000012, 34.1292759991231], [-118.005799, 34.13020699912311], [-118.00493998597904, 34.13036500196762], [-118.00395200000018, 34.130295999123135], [-118.00390198936488, 34.12930500164439]]], [[[-117.98861400000014, 34.12711299912314], [-117.9909980000003, 34.120906999123136], [-117.98965706828763, 34.12047999353591], [-117.99000266244052, 34.11958892554981], [-117.99129790174726, 34.11979136634928], [-117.99148300000031, 34.119680999123204], [-117.9922000000002, 34.11780999912318], [-117.99651812109755, 34.11768324332483], [-117.99578400000014, 34.11809399912324], [-117.9954000000002, 34.118656999123196], [-117.99594200000018, 34.11857099912321], [-117.99774400000018, 34.119012999123235], [-117.99790500000016, 34.119005999123175], [-117.99827700000023, 34.118076999123296], [-117.99876300000017, 34.11739799912323], [-117.99964700000012, 34.11741799912325], [-117.99940600000019, 34.11803499912323], [-118.00130000000033, 34.11790899912322], [-118.00130500000014, 34.11742599912325], [-118.003505, 34.11750699912328], [-118.00340200000016, 34.124518999123225], [-118.00382600000016, 34.12451799912307], [-118.00382432287842, 34.124928055371214], [-117.99991923506707, 34.124935687679695], [-117.9992558683744, 34.12771801164163], [-117.9960513964897, 34.12686863901159], [-117.99586300000023, 34.12704899912318], [-117.9950760000003, 34.12917899912308], [-117.99499046421641, 34.130417420041304], [-117.9906828412691, 34.13043620318005], [-117.99073400000017, 34.129878999123015], [-117.98880700000026, 34.12979299912312], [-117.98768000000037, 34.129510999123056], [-117.98861400000014, 34.12711299912314]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Mayflower Village", "metadata": {"sqmi": 1.21537929985, "type": "unincorporated-area", "name": "Mayflower Village", "slug": "mayflower-village"}, "cases": null, "population": null, "external_id": "mayflower-village", "slug": "mayflower-village-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/mayflower-village-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.19452500000017, 33.995332999124614], [-118.18498900000013, 33.99435199912476], [-118.18504600000023, 33.99385399912477], [-118.18454600000013, 33.99380999912476], [-118.18430300000011, 33.994453999124765], [-118.18289800000022, 33.9936719991247], [-118.18337100000016, 33.99306599912474], [-118.17799200000019, 33.98993299912474], [-118.17811100000017, 33.9896559991248], [-118.17608300000025, 33.98760099912484], [-118.17513700000022, 33.9868449991248], [-118.17394100000026, 33.98674899912477], [-118.1739590000002, 33.98625199912477], [-118.17313700000018, 33.986228999124805], [-118.17257900000021, 33.986436999124805], [-118.17219800000014, 33.98627299912471], [-118.17085000000014, 33.98385199912482], [-118.16994500000013, 33.98023799912481], [-118.17003500000013, 33.98000799912491], [-118.18956600000021, 33.9819329991249], [-118.18900900000021, 33.986561999124824], [-118.18967000000013, 33.98659199912489], [-118.18967400000018, 33.986784999124815], [-118.19011100000017, 33.98680499912484], [-118.1900150000002, 33.98741899912478], [-118.1922680000002, 33.98762099912487], [-118.19338100000026, 33.98749299912479], [-118.194433, 33.98781899912485], [-118.20264600000017, 33.98864899912478], [-118.20282800000012, 33.98891699912479], [-118.204285, 33.98907899912477], [-118.20428100000025, 33.98893399912483], [-118.20450200000029, 33.98894699912477], [-118.20466100000014, 33.99664599912468], [-118.2034310000002, 33.99666999912465], [-118.19450000000033, 33.9957389991247], [-118.19452500000017, 33.995332999124614]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Maywood", "metadata": {"sqmi": 1.18806818977, "type": "standalone-city", "name": "Maywood", "slug": "maywood"}, "cases": 69.0, "population": 0.2804878048780488, "external_id": "maywood", "slug": "maywood-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/maywood-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.35381, 34.04820999912394], [-118.34700900000016, 34.04770999912397], [-118.344709, 34.04770999912402], [-118.338309, 34.048610999124044], [-118.33480900000013, 34.04871099912388], [-118.332609, 34.04841099912401], [-118.3301090000001, 34.04821099912388], [-118.329509, 34.04831099912403], [-118.32670900000012, 34.04801099912404], [-118.332709, 34.03671099912401], [-118.333809, 34.03501099912416], [-118.3453090000001, 34.0347109991241], [-118.36211000000013, 34.03401099912428], [-118.36861000000013, 34.034810999124076], [-118.369577, 34.03507999912423], [-118.375919, 34.03241699912417], [-118.384206, 34.03021399912429], [-118.38639600000013, 34.02890499912422], [-118.386662, 34.029206999124256], [-118.38679900000012, 34.029128999124204], [-118.387171, 34.02939999912424], [-118.38776190953162, 34.02906290865564], [-118.38951000000014, 34.030410999124236], [-118.39091, 34.03120999912416], [-118.38981, 34.03330999912412], [-118.38611100000011, 34.04660999912396], [-118.38511100000014, 34.04640999912406], [-118.38311000000013, 34.04560999912394], [-118.37681000000013, 34.04450999912405], [-118.37611000000011, 34.04690999912396], [-118.3762100000001, 34.05330999912392], [-118.36221000000015, 34.05060999912388], [-118.36001, 34.049809999123966], [-118.35981000000014, 34.049609999123895], [-118.35681000000011, 34.04860999912396], [-118.35381, 34.04820999912394]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Mid-City", "metadata": {"sqmi": 3.46810947987, "type": "segment-of-a-city", "name": "Mid-City", "slug": "mid-city"}, "cases": 165.0, "population": 0.5986820026080057, "external_id": "mid-city", "slug": "mid-city-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/mid-city-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.36151, 34.07150899912353], [-118.35331, 34.070308999123625], [-118.34741, 34.06910999912373], [-118.34411, 34.0689099991237], [-118.34411, 34.062109999123706], [-118.338609, 34.06200999912369], [-118.327509, 34.062109999123706], [-118.324509, 34.06190999912386], [-118.319309, 34.061909999123806], [-118.320609, 34.05920999912379], [-118.326709, 34.04801099912402], [-118.329509, 34.048310999124], [-118.330109, 34.04821099912382], [-118.332609, 34.04841099912393], [-118.334809, 34.04871099912383], [-118.33700899999988, 34.04871099912397], [-118.344709, 34.04770999912399], [-118.347009, 34.04770999912391], [-118.35381, 34.04820999912388], [-118.35681, 34.04860999912391], [-118.35981, 34.049609999123845], [-118.36001, 34.04980999912393], [-118.36221, 34.05060999912383], [-118.36691, 34.0515099991239], [-118.36381, 34.05840999912381], [-118.36151, 34.063009999123736], [-118.36161, 34.0658099991237], [-118.36151, 34.07150899912353]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Mid-Wilshire", "metadata": {"sqmi": 2.78116898514, "type": "segment-of-a-city", "name": "Mid-Wilshire", "slug": "mid-wilshire"}, "cases": 83.0, "population": 0.4363698056842265, "external_id": "mid-wilshire", "slug": "mid-wilshire-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/mid-wilshire-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.455616, 34.28010099912111], [-118.4552160000001, 34.27950099912121], [-118.45441600000014, 34.27990099912114], [-118.452462, 34.281320999121306], [-118.448707, 34.277733999121246], [-118.44706604532324, 34.27645903626253], [-118.45030300000013, 34.27411299912133], [-118.44766700000011, 34.27094499912125], [-118.444053, 34.267475999121345], [-118.44230000000012, 34.26449699912131], [-118.447916, 34.25740199912136], [-118.451816, 34.25170199912146], [-118.451816, 34.25000299912155], [-118.472025, 34.24999999912156], [-118.472002, 34.27185399912114], [-118.469314, 34.280127999121085], [-118.468244, 34.29016299912113], [-118.468369, 34.29116799912103], [-118.46868, 34.29205899912097], [-118.46963000000014, 34.293322999120974], [-118.46775500000015, 34.29166599912096], [-118.46554200000016, 34.288344999121065], [-118.46420300000015, 34.28694999912104], [-118.462966, 34.2859019991212], [-118.457826, 34.283147999121226], [-118.456964, 34.282206999121144], [-118.455616, 34.28010099912111]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Mission Hills", "metadata": {"sqmi": 3.1874975889, "type": "segment-of-a-city", "name": "Mission Hills", "slug": "mission-hills"}, "cases": 76.0, "population": 0.24123920771965462, "external_id": "mission-hills", "slug": "mission-hills-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/mission-hills-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.99000266244042, 34.119588925549714], [-117.99005363985458, 34.119457487152054], [-117.99087776153424, 34.11967862796363], [-117.990462, 34.119676999123215], [-117.99000266244042, 34.119588925549714]]], [[[-117.99210753445172, 34.117705241137436], [-117.99559623137631, 34.117687841252284], [-117.9922, 34.117809999123125], [-117.99148300000022, 34.11968099912318], [-117.99134095164732, 34.119680442616385], [-117.99210753445172, 34.117705241137436]]], [[[-117.98961291769521, 34.12059382989298], [-117.98965706828751, 34.12047999353587], [-117.99099800000018, 34.120906999123086], [-117.98891621415223, 34.12631177923025], [-117.99087702044606, 34.120921615387545], [-117.98961291769521, 34.12059382989298]]], [[[-117.98846991722266, 34.12747994774142], [-117.98890012186608, 34.1263539002952], [-117.9885580000002, 34.127260999123074], [-117.98846991722266, 34.12747994774142]]], [[[-117.95582546494461, 34.19418427875491], [-117.95340528321361, 34.194173871757094], [-117.9595930000002, 34.194175999122294], [-117.95959400000021, 34.180580999122455], [-117.94179900000015, 34.1805009991225], [-117.94153600000017, 34.1670529991225], [-117.94447100000015, 34.16704999912267], [-117.94439700000014, 34.1652059991227], [-117.977198, 34.16500599912263], [-117.9774460000001, 34.155866999122786], [-117.9800180000002, 34.15669799912275], [-117.980112, 34.156509999122804], [-117.98090200000019, 34.156833999122775], [-117.98109500000015, 34.15643099912273], [-117.98191900000013, 34.15663499912275], [-117.98256500000019, 34.156519999122715], [-117.98269900000021, 34.15629899912278], [-117.98473700000018, 34.15638499912276], [-117.9848770000002, 34.155712999122755], [-117.98513600000018, 34.15573399912274], [-117.98556700000013, 34.15511799912272], [-117.985851, 34.15512499912271], [-117.98537800000027, 34.15400899912272], [-117.98507600000015, 34.15155799912276], [-117.9838840000003, 34.1515619991228], [-117.983556, 34.15117799912281], [-117.98339000000026, 34.15058699912279], [-117.98208000000015, 34.15041799912286], [-117.98196600000024, 34.14782499912286], [-117.98033500000015, 34.14791699912287], [-117.9803610000002, 34.146870999122854], [-117.97538236966402, 34.14690429647322], [-117.97538000000016, 34.143657999122944], [-117.97755300000013, 34.143635999122864], [-117.97754600000015, 34.14324699912287], [-117.9796970000001, 34.14322799912288], [-117.9797030000002, 34.14013599912291], [-117.98108700000014, 34.140228999122925], [-117.9811050000002, 34.13952099912298], [-117.98630000000013, 34.13946999912304], [-117.986319, 34.13251799912302], [-117.98677100000013, 34.13188099912297], [-117.98768000000027, 34.12951099912301], [-117.98880700000016, 34.12979299912309], [-117.990734, 34.129878999122994], [-117.99068284126903, 34.13043620317998], [-117.99499046421631, 34.13041742004125], [-117.9950760000002, 34.12917899912303], [-117.99586300000013, 34.12704899912315], [-117.9960513964896, 34.126868639011576], [-117.99925586837428, 34.127718011641576], [-117.99991923506697, 34.12493568767967], [-118.00382432287829, 34.12492805537119], [-118.003826, 34.124517999123036], [-118.003402, 34.12451899912317], [-118.003505, 34.11750699912326], [-118.001305, 34.11742599912322], [-118.00130000000023, 34.11790899912319], [-117.999406, 34.11803499912321], [-117.999647, 34.11741799912321], [-117.998763, 34.11739799912321], [-117.99827700000013, 34.11807699912325], [-117.997905, 34.11900599912315], [-117.995942, 34.11857099912317], [-117.9954000000001, 34.11865699912315], [-117.995784, 34.11809399912318], [-117.99631900000023, 34.11775299912324], [-118.0007200000002, 34.11612899912317], [-118.00384800000018, 34.11740399912328], [-118.004642, 34.111088999123346], [-118.00531600000014, 34.10970999912326], [-118.00469, 34.109557999123325], [-118.00380800000012, 34.11120799912328], [-118.00356200000016, 34.111243999123275], [-118.0043690000002, 34.1095049991233], [-118.0010990000002, 34.108506999123406], [-118.0029350000002, 34.104718999123406], [-118.007067, 34.10612899912331], [-118.007342, 34.10556599912338], [-118.01555100000012, 34.10290199912331], [-118.015760986171, 34.10420000343579], [-118.012211, 34.10560799912333], [-118.007364, 34.110162999123276], [-118.0076370000001, 34.11045199912329], [-118.007143, 34.11072599912326], [-118.006879, 34.1104329991233], [-118.00516300000021, 34.11064699912328], [-118.005053, 34.11102899912329], [-118.005295, 34.11099399912326], [-118.00489600000012, 34.111462999123255], [-118.00419900000018, 34.11719299912316], [-118.00439900000019, 34.11719299912316], [-118.005399, 34.11528299912339], [-118.006699, 34.115177999123205], [-118.006699, 34.1144749991233], [-118.007096, 34.11446899912323], [-118.007099, 34.11700299912317], [-118.006001, 34.11699699912315], [-118.0059920000002, 34.11783099912329], [-118.006412, 34.11782899912329], [-118.006569, 34.11839299912328], [-118.00525600000012, 34.117915999123326], [-118.005343, 34.11764399912322], [-118.00465, 34.11738899912323], [-118.00447, 34.11762999912321], [-118.003999, 34.11780699912315], [-118.00395200000011, 34.130295999123085], [-118.00493998597894, 34.13036500196757], [-118.005799, 34.13020699912307], [-118.006376, 34.129275999123074], [-118.007219, 34.129333999123084], [-118.00723700000019, 34.130328999123044], [-118.01256900000013, 34.130264999123035], [-118.01457800000016, 34.13002899912308], [-118.016525, 34.13021799912306], [-118.016515, 34.12998099912304], [-118.0180500000001, 34.129985999123114], [-118.018055, 34.13019099912306], [-118.020009, 34.130163999123106], [-118.02002000000013, 34.13114299912311], [-118.020326, 34.131098999123076], [-118.02070500000016, 34.15111199912289], [-118.021009, 34.151107999122836], [-118.0213, 34.15476199912276], [-118.021883, 34.154752999122714], [-118.02190600000023, 34.15705299912276], [-118.02127800000014, 34.15706299912267], [-118.021288, 34.15793399912273], [-118.02065200000014, 34.15746199912277], [-118.020387, 34.157653999122765], [-118.0212630000001, 34.15855199912263], [-118.02110600000012, 34.15905399912282], [-118.0211190000002, 34.15977999912267], [-118.0213140000001, 34.15980499912274], [-118.021419, 34.173631999122485], [-118.021255, 34.17353399912244], [-118.020497, 34.174728999122465], [-118.019931, 34.174899999122516], [-118.0196320000001, 34.1753949991225], [-118.01872000000013, 34.175410999122484], [-118.018634, 34.17660299912245], [-118.0181860000001, 34.17623199912254], [-118.017052, 34.177181999122524], [-118.017593, 34.179452999122375], [-118.02136921876989, 34.1794387315851], [-118.02169100000012, 34.1885079991223], [-118.02159900000014, 34.190781999122365], [-118.022046, 34.193819999122205], [-118.02138509061986, 34.193807838876126], [-118.0213851980747, 34.19394004064254], [-118.01264500170018, 34.19396347294122], [-117.99508537083169, 34.194314692478166], [-117.95582546494461, 34.19418427875491]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Monrovia", "metadata": {"sqmi": 13.9299619674, "type": "standalone-city", "name": "Monrovia", "slug": "monrovia"}, "cases": 57.0, "population": 0.426806341911489, "external_id": "monrovia", "slug": "monrovia-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/monrovia-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.09338000000015, 34.04345299912415], [-118.09380300000012, 34.04271999912417], [-118.09225400000012, 34.0420179991241], [-118.09104998603472, 34.04048100032417], [-118.0906880000001, 34.04039599912413], [-118.09055900000014, 34.039956999124065], [-118.08776500000016, 34.03904499912419], [-118.08578900000019, 34.03868199912418], [-118.08539600000012, 34.03775199912413], [-118.08515400000014, 34.0376639991242], [-118.083209, 34.03769899912425], [-118.08296300000023, 34.037428999124174], [-118.08317700000026, 34.036686999124214], [-118.08299600000021, 34.036643999124244], [-118.08326100000019, 34.034993999124275], [-118.08305600000014, 34.03451399912425], [-118.08257100000019, 34.034353999124264], [-118.08247600000011, 34.034082999124145], [-118.08164600000016, 34.03423999912427], [-118.08041800000017, 34.03474999912422], [-118.0800540000001, 34.03525199912416], [-118.080019, 34.03574799912415], [-118.07949500000014, 34.03584399912421], [-118.07907900000019, 34.03531299912416], [-118.0782580000002, 34.03606399912432], [-118.07259400000015, 34.0307249991243], [-118.073043, 34.030045999124255], [-118.07297100000022, 34.028075999124226], [-118.07657900000021, 34.024704999124395], [-118.07510185510334, 34.02658830834995], [-118.0757102312963, 34.02627490607615], [-118.0829550000002, 34.020586999124376], [-118.09180000000026, 34.01451099912447], [-118.0929350000002, 34.0135719991245], [-118.09273200000028, 34.013394999124515], [-118.09444000000025, 34.011667999124555], [-118.09534400000021, 34.0104569991246], [-118.09586100000014, 34.00839299912445], [-118.096201, 34.007661999124515], [-118.09655500000014, 34.00412899912449], [-118.097289, 34.00149199912457], [-118.10366600000026, 33.9997899991246], [-118.10428300000014, 33.998531999124666], [-118.10434500000022, 33.99767399912458], [-118.10478600000019, 33.997201999124705], [-118.10509000000032, 33.99719799912464], [-118.10672100000016, 33.99492599912472], [-118.10737600000023, 33.994621999124675], [-118.10765100000015, 33.994688999124726], [-118.10883500000023, 33.993294999124764], [-118.11003900000014, 33.99394799912476], [-118.11165400000023, 33.99184099912481], [-118.11057800000016, 33.99123999912477], [-118.11379700000015, 33.987234999124816], [-118.11398100000014, 33.987286999124706], [-118.11432800000019, 33.98659799912476], [-118.11419500000014, 33.98617799912478], [-118.11453900000018, 33.98397299912483], [-118.11484200000015, 33.983216999124856], [-118.115212, 33.98120599912489], [-118.11544600000018, 33.98103299912484], [-118.11596800000031, 33.97975699912489], [-118.11845300000019, 33.975789999125006], [-118.11883700000018, 33.97525099912496], [-118.12056600000012, 33.975244999124925], [-118.1232380000001, 33.97491199912494], [-118.12285900000015, 33.97445099912494], [-118.12636900000027, 33.97778299912492], [-118.12658000000016, 33.9776449991249], [-118.12963500000015, 33.98104899912482], [-118.13316500000013, 33.984556999124806], [-118.132721, 33.98601699912478], [-118.13099600000014, 33.98490199912482], [-118.12860500000022, 33.98530299912491], [-118.12517900000022, 33.99095499912476], [-118.12670200000015, 33.99181299912475], [-118.1281090000002, 33.99225999912481], [-118.12976300000022, 33.993215999124764], [-118.128398, 33.99884599912463], [-118.12881600000014, 33.999018999124665], [-118.12847800000021, 33.99972799912467], [-118.12886300000015, 33.999920999124704], [-118.12852700000012, 34.00047699912465], [-118.12952700000018, 34.00089099912472], [-118.12892700000013, 34.001979999124565], [-118.12961600000025, 34.00219699912453], [-118.12989500000019, 34.0025089991246], [-118.12732100000011, 34.00722499912457], [-118.12782800000015, 34.007257999124676], [-118.1277870000002, 34.00763999912465], [-118.127411, 34.00776399912449], [-118.12750624542694, 34.00811245701928], [-118.12664885164328, 34.01310946154102], [-118.13077402698093, 34.01407331237654], [-118.1306743440787, 34.014392337016794], [-118.13102724212825, 34.01446716338168], [-118.1307364479507, 34.01530176369498], [-118.13040821652449, 34.0152611398368], [-118.13019695188048, 34.015978665439405], [-118.14339217943895, 34.023892639369336], [-118.14309034102018, 34.0242460363255], [-118.14322287977136, 34.024325099924624], [-118.14282507654602, 34.02473140254947], [-118.14283411058761, 34.02584779227806], [-118.14355351347828, 34.02627947987464], [-118.14284252277338, 34.02723789722129], [-118.14285685234327, 34.03039946118088], [-118.14384209677844, 34.030396487075386], [-118.14384259071642, 34.03091128554579], [-118.14287221808094, 34.03091801553208], [-118.14286384580448, 34.03215940825745], [-118.14406066157895, 34.032281437059964], [-118.14408086728385, 34.03346348460095], [-118.11868600000014, 34.033693999124246], [-118.11489500000019, 34.03352299912406], [-118.11425500000033, 34.03319599912431], [-118.111649, 34.03047099912421], [-118.10762100000018, 34.02718099912434], [-118.107186, 34.02751299912433], [-118.10514000000013, 34.03020399912421], [-118.104546, 34.03197299912426], [-118.10161900000016, 34.03164299912422], [-118.10064400000017, 34.03490799912428], [-118.09869500000018, 34.03546499912423], [-118.09779200000014, 34.035210999124125], [-118.09534100000012, 34.03498199912422], [-118.09482600000014, 34.03530299912427], [-118.093635, 34.03510999912421], [-118.09366900000018, 34.035301999124215], [-118.09783900000012, 34.03578499912421], [-118.102759, 34.037214999124224], [-118.10375000000016, 34.037334999124084], [-118.10437500000012, 34.039274999124174], [-118.10530200000022, 34.03981099912421], [-118.10698200000017, 34.04017999912406], [-118.10194000000018, 34.042638999124115], [-118.10100900000015, 34.043510999124024], [-118.10027199071973, 34.04476199946907], [-118.09748198613251, 34.044853001729905], [-118.096874, 34.04473099912412], [-118.09464798231306, 34.043084007143825], [-118.09399197179303, 34.04394500575659], [-118.09554897179497, 34.04471300575788], [-118.09452198639042, 34.04617899725309], [-118.09237900000022, 34.045216999123944], [-118.09338000000015, 34.04345299912415]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Montebello", "metadata": {"sqmi": 8.4543000379, "type": "standalone-city", "name": "Montebello", "slug": "montebello"}, "cases": 139.0, "population": 0.6437569470174139, "external_id": "montebello", "slug": "montebello-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/montebello-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.176005, 34.112307999123104], [-118.1758233898305, 34.112433863529986], [-118.175535, 34.11222399912318], [-118.17699300000011, 34.11219799912326], [-118.176886, 34.112056999123254], [-118.177021, 34.11092799912333], [-118.177333, 34.11084699912331], [-118.177207, 34.110391999123365], [-118.177995, 34.110243999123234], [-118.17799437103525, 34.10275336728524], [-118.18410500000016, 34.08770899912359], [-118.184305, 34.086908999123416], [-118.184305, 34.08580999912346], [-118.18740500000015, 34.08620999912353], [-118.190805, 34.08320999912352], [-118.193205, 34.080709999123556], [-118.193805, 34.07920999912363], [-118.195105, 34.07960999912369], [-118.19620500000015, 34.08050999912348], [-118.196505, 34.08040999912359], [-118.196605, 34.078809999123706], [-118.197805, 34.079409999123584], [-118.197405, 34.08000999912364], [-118.198005, 34.08040999912359], [-118.197105, 34.08200999912356], [-118.198905, 34.08260999912364], [-118.199118, 34.08280899912359], [-118.20010800000013, 34.08283099912352], [-118.200892, 34.08107999912353], [-118.201005, 34.08050999912348], [-118.20180500000015, 34.08040999912359], [-118.20180500000015, 34.07870999912354], [-118.2029050000001, 34.07870999912364], [-118.2029050000001, 34.07720999912362], [-118.204105, 34.07720999912362], [-118.204105, 34.075509999123554], [-118.204605, 34.07490999912363], [-118.20540600000017, 34.07440999912369], [-118.20540600000011, 34.075509999123554], [-118.20580600000017, 34.07560999912364], [-118.206006, 34.078009999123545], [-118.20640600000013, 34.07830999912363], [-118.20680600000013, 34.079109999123595], [-118.20498, 34.08135799912342], [-118.20433200000012, 34.08134099912347], [-118.20435700000014, 34.082124999123586], [-118.20390600000016, 34.08260999912355], [-118.203506, 34.08410999912361], [-118.205006, 34.08510999912346], [-118.205306, 34.08370999912341], [-118.2057060000001, 34.08300999912352], [-118.206306, 34.083609999123475], [-118.208406, 34.08160999912358], [-118.211006, 34.07990999912359], [-118.210406, 34.07920999912363], [-118.21200600000013, 34.079209999123485], [-118.21200600000013, 34.08238899912361], [-118.211206, 34.08320999912352], [-118.21210600000015, 34.08310999912351], [-118.212306, 34.0842099991235], [-118.21150600000014, 34.085209999123435], [-118.213006, 34.08560999912344], [-118.212906, 34.0864099991235], [-118.210106, 34.0873099991235], [-118.20690600000015, 34.09070899912351], [-118.20620600000015, 34.0925089991234], [-118.20640600000013, 34.093208999123355], [-118.20620600000015, 34.09420899912352], [-118.20490600000012, 34.09610899912336], [-118.20060600000012, 34.10120899912325], [-118.199606, 34.1018089991233], [-118.19750500000015, 34.10260899912341], [-118.192505, 34.1031089991234], [-118.18610500000015, 34.10760899912323], [-118.184305, 34.1109079991232], [-118.183205, 34.11160799912319], [-118.180505, 34.1111079991232], [-118.177005, 34.11290799912313], [-118.176005, 34.112307999123104]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Montecito Heights", "metadata": {"sqmi": 2.40964422507, "type": "segment-of-a-city", "name": "Montecito Heights", "slug": "montecito-heights"}, "cases": null, "population": null, "external_id": "montecito-heights", "slug": "montecito-heights-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/montecito-heights-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.10676800000016, 34.07167499912378], [-118.10685100000016, 34.07110199912379], [-118.10815000000021, 34.07001699912377], [-118.10814600000019, 34.0698529991238], [-118.10710300000014, 34.06985899912378], [-118.10720500000014, 34.066221999123776], [-118.10713100000015, 34.06546199912378], [-118.10671200000023, 34.065455999123856], [-118.10671200000023, 34.064024999123816], [-118.10714300000019, 34.06404299912373], [-118.10697300000017, 34.06257299912391], [-118.10810800000017, 34.06256399912382], [-118.10803299114485, 34.05533799954464], [-118.10837300000016, 34.054666999124], [-118.10846500000014, 34.05350599912388], [-118.10810400000015, 34.05335799912395], [-118.10803000000021, 34.05197199912398], [-118.10819000000022, 34.049897999124006], [-118.10798400000022, 34.049424999124], [-118.10788100000016, 34.047410999124025], [-118.107577, 34.047308999124034], [-118.10704798582935, 34.0466610020001], [-118.10667899306603, 34.04672400144919], [-118.10661798586466, 34.04652500224906], [-118.10620198745197, 34.04661100481467], [-118.10552898432864, 34.047076999888894], [-118.10255900003504, 34.04762699928012], [-118.10268100000019, 34.04739799912404], [-118.10027199071973, 34.04476199946907], [-118.10100900000015, 34.043510999124024], [-118.10194000000018, 34.042638999124115], [-118.10698200000017, 34.04017999912406], [-118.10530200000022, 34.03981099912421], [-118.10437500000012, 34.039274999124174], [-118.10375000000016, 34.037334999124084], [-118.102759, 34.037214999124224], [-118.09783900000012, 34.03578499912421], [-118.09366900000018, 34.035301999124215], [-118.093635, 34.03510999912421], [-118.09482600000014, 34.03530299912427], [-118.09534100000012, 34.03498199912422], [-118.09779200000014, 34.035210999124125], [-118.09869500000018, 34.03546499912423], [-118.10064400000017, 34.03490799912428], [-118.10161900000016, 34.03164299912422], [-118.104546, 34.03197299912426], [-118.10514000000013, 34.03020399912421], [-118.107186, 34.02751299912433], [-118.10762100000018, 34.02718099912434], [-118.111649, 34.03047099912421], [-118.11425500000033, 34.03319599912431], [-118.11489500000019, 34.03352299912406], [-118.11868600000014, 34.033693999124246], [-118.14647385247164, 34.03344546109933], [-118.15019685254379, 34.03481246101301], [-118.15056385254407, 34.0347444610046], [-118.15159785252834, 34.0340784609791], [-118.15265685257563, 34.0352564609564], [-118.15373685260883, 34.036012460932746], [-118.15504630571934, 34.0362079341207], [-118.15728320237388, 34.036261014924854], [-118.15733778693871, 34.04062742123653], [-118.15714335412778, 34.04062957035078], [-118.15713373095451, 34.04431404000616], [-118.16960384823973, 34.04419761128103], [-118.16939851762851, 34.04479286901194], [-118.16911268982594, 34.044926457825476], [-118.16889149816181, 34.04591209627883], [-118.1682251386009, 34.04661241313537], [-118.16823286943286, 34.0478794147315], [-118.16806453897007, 34.048352968628755], [-118.16927536651984, 34.04835460219367], [-118.16925614744392, 34.06228774733531], [-118.16940208619565, 34.06229004009118], [-118.15282000000015, 34.06232899912383], [-118.151271, 34.06174299912383], [-118.148269, 34.06145899912391], [-118.147222, 34.0610039991238], [-118.14579100000032, 34.060075999123946], [-118.14436300000017, 34.05996899912392], [-118.14342300000014, 34.06031199912392], [-118.14336600000023, 34.06068299912383], [-118.14306700000013, 34.060940999123886], [-118.1416750000001, 34.06142599912384], [-118.140266, 34.06220299912387], [-118.1384700000002, 34.06242499912395], [-118.13550200000027, 34.0624569991239], [-118.13551200000019, 34.06327999912385], [-118.13498800000015, 34.06328399912382], [-118.13502900000016, 34.066022999123824], [-118.13515800000013, 34.06792999912375], [-118.13568800000014, 34.06792799912381], [-118.13570700000014, 34.06974099912372], [-118.109401, 34.069840999123805], [-118.10939900000017, 34.0711099991238], [-118.1108670000003, 34.07163599912371], [-118.10676800000016, 34.07167499912378]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Monterey Park", "metadata": {"sqmi": 7.66088538663, "type": "standalone-city", "name": "Monterey Park", "slug": "monterey-park"}, "cases": 77.0, "population": 0.6226247270963047, "external_id": "monterey-park", "slug": "monterey-park-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/monterey-park-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.21870600000011, 34.117807999123016], [-118.21710600000011, 34.117507999123085], [-118.215006, 34.11640799912308], [-118.211706, 34.1158079991232], [-118.2103060000001, 34.11480799912307], [-118.2081060000001, 34.11280799912305], [-118.20830600000014, 34.11250899912319], [-118.20770600000016, 34.1122089991231], [-118.204806, 34.1085089991233], [-118.203806, 34.107008999123195], [-118.20580600000017, 34.106008999123205], [-118.205206, 34.101108999123376], [-118.2061060000001, 34.09920899912333], [-118.209206, 34.09640899912336], [-118.209906, 34.09530899912338], [-118.21140600000015, 34.093708999123386], [-118.211606, 34.0931089991233], [-118.211606, 34.09080899912352], [-118.21210600000015, 34.09030999912343], [-118.213106, 34.08970999912355], [-118.215606, 34.08850999912352], [-118.21600600000012, 34.0892099991235], [-118.216806, 34.08880999912347], [-118.219006, 34.08900999912346], [-118.220606, 34.09060999912335], [-118.220906, 34.09140999912338], [-118.22100600000014, 34.093208999123355], [-118.221306, 34.09410899912343], [-118.22220600000013, 34.095408999123386], [-118.223706, 34.09640899912336], [-118.225406, 34.09670899912334], [-118.22740600000016, 34.09770899912326], [-118.230107, 34.099508999123266], [-118.232207, 34.1004089991234], [-118.232807, 34.10100899912329], [-118.233607, 34.10140899912327], [-118.233907, 34.10180899912332], [-118.234207, 34.10320899912329], [-118.232707, 34.10400899912322], [-118.232822, 34.104268999123356], [-118.231607, 34.10480899912335], [-118.229007, 34.10480899912335], [-118.22810700000011, 34.10500899912333], [-118.225406, 34.10610899912325], [-118.22460600000011, 34.106808999123274], [-118.22230600000017, 34.1081089991232], [-118.221006, 34.11030899912313], [-118.220906, 34.11110899912325], [-118.223906, 34.114807999123094], [-118.224106, 34.11530799912305], [-118.22290600000015, 34.116207999123134], [-118.22300600000014, 34.11650799912317], [-118.22260600000011, 34.11690799912317], [-118.219506, 34.11610799912322], [-118.21870600000011, 34.117807999123016]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Mount Washington", "metadata": {"sqmi": 1.85040389289, "type": "segment-of-a-city", "name": "Mount Washington", "slug": "mount-washington"}, "cases": 50.0, "population": 0.24145257871354064, "external_id": "mount-washington", "slug": "mount-washington-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/mount-washington-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.73644891989731, 34.82316790057429], [-117.73630200000048, 34.82285699911476], [-117.7310540000004, 34.82276599911482], [-117.72233300000036, 34.82282099911487], [-117.72089400000034, 34.822957999114855], [-117.6672920000003, 34.82252599911484], [-117.66733800000029, 34.82005999911498], [-117.66720400000041, 34.81919099911504], [-117.66817800000042, 34.81900999911493], [-117.66965000000036, 34.819104999114856], [-117.6674250000005, 34.81531899911488], [-117.66830400000036, 34.814751999114954], [-117.66884300000046, 34.8140209991151], [-117.66775700000031, 34.80815699911496], [-117.66843800000044, 34.80785699911503], [-117.66766000000044, 34.80260599911513], [-117.66784800000049, 34.79071999911521], [-117.66717800000043, 34.767517999115434], [-117.66728300000047, 34.731352999115906], [-117.6670990000004, 34.718066999116104], [-117.66732300000035, 34.7130279991162], [-117.66697100000043, 34.68793399911641], [-117.66711000000042, 34.68157599911651], [-117.66697600000037, 34.66665999911662], [-117.66715800000038, 34.66585499911661], [-117.66694900000034, 34.66508199911677], [-117.66687300000032, 34.64735399911682], [-117.6669460000004, 34.64396899911695], [-117.6671120000003, 34.64301199911687], [-117.66681800000045, 34.642607999116855], [-117.66676500000045, 34.63809499911698], [-117.6667720000004, 34.63474299911698], [-117.6669680000004, 34.63401299911697], [-117.6669540000005, 34.60336699911737], [-117.66722100000042, 34.600544999117396], [-117.6672320000004, 34.59862399911749], [-117.66696900000042, 34.59751799911742], [-117.66694300000037, 34.59560699911742], [-117.66708100000054, 34.57634199911775], [-117.6666800000004, 34.5750829991178], [-117.6666510000005, 34.573463999117685], [-117.66703400000043, 34.55800799911793], [-117.65999400000032, 34.558039999118], [-117.65999200000024, 34.55778199911809], [-117.66034600000032, 34.55784799911794], [-117.66015400000022, 34.52863299911839], [-117.66025800000033, 34.52796299911837], [-117.66007500000029, 34.52765399911839], [-117.66022600000035, 34.527652999118416], [-117.66014400000036, 34.519382999118505], [-117.66025500000026, 34.516507999118595], [-117.6601460000004, 34.514668999118435], [-117.65966900000026, 34.51451399911857], [-117.65965200000035, 34.51407299911848], [-117.66033700000048, 34.51323799911844], [-117.66003800000027, 34.49896599911875], [-117.66013800000042, 34.49819199911862], [-117.6599930000003, 34.49431599911874], [-117.65973600000032, 34.45590899911918], [-117.65975700000033, 34.45276899911911], [-117.66005387247745, 34.451960718322624], [-117.73721119030793, 34.49769571015598], [-117.7387593580305, 34.49840357447535], [-117.74104545454581, 34.49859580032175], [-117.75020906044566, 34.49855993464595], [-117.76520000000032, 34.49877761850334], [-117.80644656298851, 34.498777253313534], [-117.80733701924092, 34.498999632802104], [-117.80798827373847, 34.49934734588488], [-117.81605664485338, 34.5055320737923], [-117.81681276159348, 34.50584879176545], [-117.81812279075085, 34.50603201723331], [-117.83760000000036, 34.506213982139606], [-117.85384082799783, 34.50621212593462], [-117.85379765876804, 34.50607480320856], [-117.87500022345944, 34.5063587433702], [-117.90243031080759, 34.50638628321088], [-117.90250909090946, 34.506568527594276], [-117.92242784544091, 34.50658625661475], [-117.92405570236467, 34.50702732318508], [-117.92550593537369, 34.508066685356276], [-117.93500371264459, 34.51885504845853], [-117.93644353834657, 34.52025568291257], [-117.93752867125754, 34.52086489031915], [-117.94161685570921, 34.52121396930764], [-117.96247170481853, 34.52123696019092], [-117.96022567010709, 34.5213012043861], [-117.95905335693163, 34.522157615211576], [-117.95823205660378, 34.522451903647166], [-117.9536868376532, 34.523253089103974], [-117.95367939063702, 34.52828073487475], [-117.95827236826389, 34.52831400859094], [-117.95826656880179, 34.5428011203135], [-117.95800510239246, 34.543240819278786], [-117.95359464593317, 34.543873261574596], [-117.95150240968196, 34.54383907164991], [-117.94920893056201, 34.543577672646656], [-117.94887170545987, 34.54330062829034], [-117.94645392276608, 34.543027909446444], [-117.93826879832281, 34.543025509589704], [-117.93831208363703, 34.549406776913244], [-117.9384581481104, 34.549803224659016], [-117.93874341171623, 34.54994364376247], [-117.9383450506126, 34.55049759715506], [-117.93840276983565, 34.5537715471362], [-117.93875449509805, 34.553773262586525], [-117.93881211191355, 34.5569087228953], [-117.93545861809412, 34.556909680344894], [-117.93435933286653, 34.556775464431134], [-117.93380298204336, 34.55702309888124], [-117.93194160895118, 34.55702464658875], [-117.93193453338232, 34.55670293397731], [-117.92425265863356, 34.556712071583355], [-117.9242470903966, 34.55644415601838], [-117.9231494330535, 34.55644464854932], [-117.92317805176253, 34.55782264418524], [-117.92296413276286, 34.55809929620305], [-117.91817500650063, 34.55810952028969], [-117.91817574662934, 34.557965314537164], [-117.9162753534237, 34.558105258292585], [-117.91644371892811, 34.57611534831157], [-117.93395544857538, 34.57632157955379], [-117.94305867764295, 34.57621680773874], [-117.94299282239419, 34.57805398112628], [-117.94312679093368, 34.5780521824562], [-117.94295244222839, 34.58282221740767], [-117.94281954663191, 34.582824544862376], [-117.94280623803996, 34.5831899159376], [-117.94293913422159, 34.58318758759581], [-117.94288549712603, 34.587222455455056], [-117.93388494008865, 34.58732852817744], [-117.93249200000024, 34.58705899911761], [-117.91856500000026, 34.58694399911772], [-117.91679700000022, 34.586993999117624], [-117.91678425227944, 34.58718609408374], [-117.91627407918398, 34.58718184477848], [-117.91637003417418, 34.59333712522364], [-117.91574700000021, 34.6025819991175], [-117.9158670000003, 34.66100599911679], [-117.93840300000028, 34.66099299911686], [-117.93852794730651, 34.6753994015678], [-117.94721100000022, 34.67547299911658], [-117.9472340000003, 34.6808259991165], [-117.94744707155841, 34.68082884488884], [-117.94744338376687, 34.68102432888705], [-117.95195034245488, 34.68110511237873], [-117.95195500000025, 34.6827739991166], [-117.96091700000026, 34.68287499911653], [-117.96086200000018, 34.69017399911644], [-117.96304477568083, 34.69018444833454], [-117.96331300000013, 34.68651799911652], [-117.96509220220163, 34.68652570698397], [-117.96515546758592, 34.682933423309436], [-117.9696660000002, 34.68294099911652], [-117.96966600000026, 34.67924999911666], [-117.97853500000032, 34.67921699911658], [-117.97854300000024, 34.69019899911644], [-117.98656300000027, 34.69014999911645], [-117.98655700000027, 34.68649767747508], [-117.9874002524535, 34.68649777257453], [-117.98733433730148, 34.69011554330958], [-118.01898986566319, 34.68996312555802], [-118.0191168101914, 34.686541304918066], [-118.01919800000026, 34.68997499911652], [-118.03231100000015, 34.689951999116445], [-118.03236173657834, 34.69352867711258], [-118.03481722509018, 34.69351005324341], [-118.03477986058903, 34.68994961068309], [-118.04118452558453, 34.68995695553336], [-118.04122800000027, 34.69718999911632], [-118.05921956127025, 34.69726601197141], [-118.05915600000014, 34.71927999911614], [-118.09427249654252, 34.71877810232401], [-118.11257500000033, 34.71888599911614], [-118.13062000000025, 34.71851899911618], [-118.13079700000037, 34.733402999115974], [-118.17006913905439, 34.733224361347695], [-118.17040583181407, 34.77683222650375], [-118.1694456006937, 34.776841147819304], [-118.16913147152462, 34.77698181729715], [-118.17040960267903, 34.777070329691036], [-118.17064964690064, 34.806062817326435], [-118.17017875019157, 34.82047176058379], [-118.14849800000039, 34.82078799911502], [-118.13083000000047, 34.82073299911498], [-118.13086100000027, 34.82110199911494], [-118.12833300000027, 34.821288999114955], [-118.12764800000033, 34.82122099911493], [-118.12784700000036, 34.82093599911499], [-118.12808200000029, 34.82108099911499], [-118.12783900000045, 34.820614999114866], [-118.12751700000032, 34.82046499911483], [-118.12653400000046, 34.820664999114854], [-118.12641600000038, 34.82095899911496], [-118.12582400000028, 34.821013999114946], [-118.05164000000035, 34.82143599911487], [-117.96429300000037, 34.82239599911489], [-117.90467600000045, 34.82218899911472], [-117.89184300000035, 34.8223489991148], [-117.88118700000027, 34.82218899911484], [-117.87331500000026, 34.82252499911492], [-117.86998700000031, 34.8223489991148], [-117.84326600000033, 34.82263699911483], [-117.81339300000047, 34.82270199911495], [-117.78801600000031, 34.823085999114845], [-117.7748160000004, 34.8229739991149], [-117.75454300000037, 34.82314999911487], [-117.73828600000049, 34.822891999114894], [-117.73644891989731, 34.82316790057429]], [[-117.86279821858408, 34.631415628477306], [-117.86279621857769, 34.6311636284761], [-117.85380779649992, 34.63120521818633], [-117.85363472075343, 34.6238080039118], [-117.86263921837926, 34.623791628470435], [-117.86248221818414, 34.6165316284641], [-117.84459706090125, 34.616484709167516], [-117.84457902449492, 34.616327875896], [-117.84449899470457, 34.58720935278703], [-117.84987999945906, 34.58719839666711], [-117.85234886097109, 34.586664309814644], [-117.85344181841387, 34.58661006944215], [-117.85711789910289, 34.58726638844695], [-117.86245221740622, 34.58738562842977], [-117.86217821720511, 34.57993962842573], [-117.84443121704636, 34.57989662874884], [-117.84451552935025, 34.58717963885903], [-117.83562404290686, 34.587241700750376], [-117.83562430249059, 34.5918005233647], [-117.82675844708066, 34.59180585683946], [-117.82661527689818, 34.59821210328054], [-117.81803403605433, 34.59823962156431], [-117.81810121740334, 34.60205262925615], [-117.80921721732155, 34.60194262941813], [-117.809364218105, 34.63125062945128], [-117.8450500712808, 34.63120060779416], [-117.84526971056141, 34.64215254945017], [-117.85400785550287, 34.6421812680843], [-117.85395757117696, 34.63845249874371], [-117.86286121877176, 34.638422628484975], [-117.86279821858408, 34.631415628477306]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Northeast Antelope Valley", "metadata": {"sqmi": 441.975641734, "type": "unincorporated-area", "name": "Northeast Antelope Valley", "slug": "northeast-antelope-valley"}, "cases": 3.0, "population": 0.028329524229779537, "external_id": "northeast-antelope-valley", "slug": "northeast-antelope-valley-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/northeast-antelope-valley-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.01731998592427, 34.10864900310411], [-118.01658998437091, 34.105288000321345], [-118.0178932836078, 34.10251638404468], [-118.01922497166933, 34.10278800581599], [-118.0203170000002, 34.09919099912342], [-118.02187083146433, 34.09839533166659], [-118.02178051417611, 34.098228992445286], [-118.02560260888268, 34.09631745961811], [-118.02555394455378, 34.096714481623245], [-118.0258181304757, 34.096740585125154], [-118.02574609412294, 34.09782389210948], [-118.02737709992869, 34.09683954986524], [-118.02791970732942, 34.09719268206135], [-118.02853528680451, 34.097041643583346], [-118.02963451391147, 34.102857532292504], [-118.02842053188219, 34.10304215332906], [-118.02854970765783, 34.10352501459615], [-118.0297560000003, 34.10336899912336], [-118.03049599278788, 34.106384000249264], [-118.02917798593478, 34.10656900314091], [-118.02923598566298, 34.106851001510506], [-118.02619898587865, 34.10728600171911], [-118.02455998589076, 34.10734800387789], [-118.0245372701033, 34.107009530679974], [-118.01846998592521, 34.107904003104444], [-118.01858598565863, 34.10846400153744], [-118.01731998592427, 34.10864900310411]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "North El Monte", "metadata": {"sqmi": 0.426770340697, "type": "unincorporated-area", "name": "North El Monte", "slug": "north-el-monte"}, "cases": null, "population": null, "external_id": "north-el-monte", "slug": "north-el-monte-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/north-el-monte-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.4966170000001, 34.25733399912146], [-118.472017, 34.25720199912154], [-118.472025, 34.24999999912156], [-118.451816, 34.25000299912155], [-118.45311600000014, 34.24610299912159], [-118.455616, 34.24270299912168], [-118.456716, 34.23940299912167], [-118.45841600000011, 34.229702999121734], [-118.45971600000011, 34.224602999121814], [-118.459916, 34.22200299912176], [-118.459516, 34.221202999121815], [-118.49281600000016, 34.221088999121896], [-118.495317, 34.220002999121945], [-118.498718, 34.22070299912187], [-118.498418, 34.224302999121804], [-118.497622, 34.2268189991219], [-118.4969140000001, 34.22834699912176], [-118.49651800000015, 34.23190299912172], [-118.496418, 34.23560299912165], [-118.497518, 34.23720299912173], [-118.495118, 34.2412029991216], [-118.493118, 34.24360299912157], [-118.492218, 34.24640299912159], [-118.49141800000014, 34.25010299912153], [-118.50241800000013, 34.25010299912157], [-118.50241800000013, 34.25740199912151], [-118.4966170000001, 34.25733399912146]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "North Hills", "metadata": {"sqmi": 5.30811801222, "type": "segment-of-a-city", "name": "North Hills", "slug": "north-hills"}, "cases": 167.0, "population": 0.6157590059363593, "external_id": "north-hills", "slug": "north-hills-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/north-hills-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.396015, 34.20120399912209], [-118.39471200000015, 34.20093299912205], [-118.394278, 34.20110899912203], [-118.37031201670365, 34.2011165212272], [-118.370313, 34.19637899912225], [-118.361151, 34.194650999122295], [-118.36119, 34.19397099912228], [-118.36082400000011, 34.19248499912225], [-118.35775800000012, 34.17216199912258], [-118.354727, 34.164908999122524], [-118.361612, 34.16480599912259], [-118.361601, 34.15761299912263], [-118.370237, 34.15761299912263], [-118.36760900000012, 34.15302299912265], [-118.37612000000016, 34.15302499912271], [-118.37724, 34.15316099912279], [-118.377796, 34.153480999122635], [-118.378982, 34.15675099912264], [-118.38423100000014, 34.1686089991226], [-118.38497, 34.16944799912243], [-118.38687000000012, 34.17103999912247], [-118.39167300000013, 34.17358799912236], [-118.392281, 34.17404899912251], [-118.393567, 34.1757529991224], [-118.3951700000001, 34.17930299912229], [-118.396153, 34.18086699912234], [-118.39705100000012, 34.181929999122275], [-118.400999, 34.18571699912221], [-118.401504, 34.18641999912236], [-118.40182600000014, 34.18747899912215], [-118.403408, 34.199693999122104], [-118.4038050000001, 34.201091999122134], [-118.4046, 34.20285399912205], [-118.396015, 34.20120399912209]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "North Hollywood", "metadata": {"sqmi": 5.86911546946, "type": "segment-of-a-city", "name": "North Hollywood", "slug": "north-hollywood"}, "cases": 372.0, "population": 1.5272813488723964, "external_id": "north-hollywood", "slug": "north-hollywood-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/north-hollywood-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.51311600000015, 34.25750699912141], [-118.50241800000013, 34.25740199912151], [-118.50241800000013, 34.25010299912157], [-118.49141800000014, 34.25010299912153], [-118.492218, 34.24640299912159], [-118.493118, 34.24360299912157], [-118.495118, 34.2412029991216], [-118.497518, 34.23720299912173], [-118.496418, 34.23560299912165], [-118.49651800000015, 34.23190299912172], [-118.4969140000001, 34.22834699912176], [-118.497622, 34.2268189991219], [-118.498418, 34.224302999121804], [-118.498718, 34.22070299912187], [-118.502518, 34.221002999121836], [-118.523018, 34.22080299912185], [-118.56221900000014, 34.22010399912182], [-118.56222000000012, 34.23380299912176], [-118.56322, 34.234102999121674], [-118.56342000000015, 34.234802999121804], [-118.56432, 34.23530299912171], [-118.56452, 34.2425029991216], [-118.56342000000015, 34.24710299912152], [-118.56282, 34.248402999121524], [-118.56222, 34.24900299912151], [-118.55964700000014, 34.253408999121476], [-118.55982, 34.25550199912147], [-118.55842000000013, 34.25720199912154], [-118.5232330000001, 34.2570989991214], [-118.52323200000012, 34.257499999121386], [-118.51311600000015, 34.25750699912141]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Northridge", "metadata": {"sqmi": 9.46748743941, "type": "segment-of-a-city", "name": "Northridge", "slug": "northridge"}, "cases": 172.0, "population": 0.6979669683074301, "external_id": "northridge", "slug": "northridge-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/northridge-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.17017875019157, 34.82047176058379], [-118.17064964690064, 34.806062817326435], [-118.17040960267903, 34.777070329691036], [-118.16913147152462, 34.77698181729715], [-118.1694456006937, 34.776841147819304], [-118.17040583181407, 34.77683222650375], [-118.17006913905439, 34.733224361347695], [-118.1753450000003, 34.733220999115986], [-118.17558584290626, 34.76230897621303], [-118.25465600000038, 34.761991999115544], [-118.25462177446406, 34.74789329145458], [-118.25489074565128, 34.73304052226609], [-118.25475331173996, 34.72766602997549], [-118.25726400000018, 34.727683999116024], [-118.25698800000023, 34.72627699911609], [-118.25777600000022, 34.72627399911604], [-118.25775279767973, 34.72567853645996], [-118.2580375885069, 34.72567303745737], [-118.25799582781924, 34.724026387685406], [-118.25907304266417, 34.72399592920211], [-118.2590289504512, 34.72226869487758], [-118.25461556893005, 34.72219670104148], [-118.25453200000027, 34.71855399911611], [-118.26313500000026, 34.718493999116156], [-118.26330191044505, 34.71846287591837], [-118.26330919057592, 34.7175135673175], [-118.26391600000022, 34.717508999116184], [-118.26390900000027, 34.718489999116144], [-118.26640490466721, 34.71846080001646], [-118.26636947995453, 34.71496430130596], [-118.27204395737608, 34.71488699969683], [-118.27220233598345, 34.72402724817413], [-118.26775967191423, 34.72407740201299], [-118.26781971448828, 34.72763802639936], [-118.27150290671031, 34.72761723256454], [-118.27150500000039, 34.72786899911607], [-118.27228700000025, 34.72783699911599], [-118.27226986079913, 34.72578988531023], [-118.27655000000019, 34.725732999116026], [-118.27666859240585, 34.72930039627737], [-118.28121300000022, 34.729262999115996], [-118.28102500000024, 34.72585399911602], [-118.28712600000021, 34.725778999115974], [-118.2872290000003, 34.72908199911596], [-118.28518700000026, 34.729127999116045], [-118.28517100000028, 34.73287399911594], [-118.29008500000029, 34.73284899911592], [-118.28980721087261, 34.72573980843687], [-118.29394200000038, 34.725693999115954], [-118.29387100000022, 34.727084999116066], [-118.2942370000003, 34.73282799911596], [-118.29627500000026, 34.73282499911598], [-118.29629800000015, 34.73457399911595], [-118.29423600000034, 34.734587999115895], [-118.29410000000028, 34.73639599911592], [-118.29841942223013, 34.736493230499136], [-118.29845000000019, 34.73811199911586], [-118.29195000000021, 34.738139999115944], [-118.2921680000002, 34.74012399911585], [-118.2984890240944, 34.74012717992279], [-118.29856600000033, 34.74736499911576], [-118.30727900000021, 34.74736899911581], [-118.31572700000031, 34.74713399911577], [-118.3157687012127, 34.75186838880716], [-118.31166855818061, 34.75199077620541], [-118.3117370000002, 34.76079099911563], [-118.31073000000029, 34.76073799911572], [-118.31078189792126, 34.76180872787323], [-118.30744950773331, 34.76187620236696], [-118.3073840000003, 34.76879599911557], [-118.30763670902077, 34.768813208690375], [-118.30764647983851, 34.76918223569199], [-118.31154714475039, 34.76917322850599], [-118.3115338824084, 34.76885160320457], [-118.31189300000014, 34.768854999115575], [-118.31168500000022, 34.76182099911566], [-118.32116453841806, 34.76161126375465], [-118.32075746876782, 34.7520418888247], [-118.32517900000026, 34.752050999115696], [-118.32513078486022, 34.75047670822753], [-118.32077192629596, 34.75056476559105], [-118.32058400000028, 34.7470669991158], [-118.31932372304087, 34.747075912802636], [-118.31919044706702, 34.74243223828066], [-118.3244412702868, 34.742424159740516], [-118.32441164699837, 34.74265466389946], [-118.32487922623741, 34.74264267597924], [-118.32472200000025, 34.73913499911588], [-118.32164930102883, 34.73923046554248], [-118.32156705224449, 34.73707374588564], [-118.31905240050048, 34.73711825000694], [-118.3190910000002, 34.741437999115895], [-118.31471200000024, 34.74143899911587], [-118.3146440000003, 34.739234999115865], [-118.3114380000003, 34.73926799911586], [-118.31147246836468, 34.739941510956434], [-118.31104493287387, 34.73994702296669], [-118.31135095012966, 34.74325071325246], [-118.30719244242137, 34.743374794131135], [-118.30708839587165, 34.73986092352988], [-118.30727445636848, 34.73791692835136], [-118.30743542696293, 34.72930973783918], [-118.31134130208895, 34.72933446144051], [-118.31108200000031, 34.73271799911594], [-118.31509700000021, 34.7326769991159], [-118.31574929546986, 34.732643464627316], [-118.31578363392576, 34.72901090189932], [-118.32027508747085, 34.728971474617346], [-118.32021537722784, 34.72542485729056], [-118.31952400973414, 34.725435179412806], [-118.31951800000026, 34.72530099911605], [-118.31584855163378, 34.72533061984449], [-118.31587351948977, 34.72201340994303], [-118.32013718405726, 34.72194393737697], [-118.32008468272416, 34.71813340379273], [-118.3157670383888, 34.71821101050486], [-118.31567894710963, 34.71079910414729], [-118.30685300000023, 34.71088099911623], [-118.30705005788207, 34.70881186310491], [-118.30681245650733, 34.703744161901035], [-118.31247600000027, 34.70376999911623], [-118.31209700000025, 34.70061199911628], [-118.31555600000024, 34.701017999116225], [-118.31558196057317, 34.68922834025966], [-118.32422300000026, 34.689212999116464], [-118.32415800000021, 34.67860199911656], [-118.31917200000032, 34.678604999116644], [-118.31913500000027, 34.67465699911664], [-118.32415000000026, 34.6745819991166], [-118.3243140000002, 34.66464399911679], [-118.32208900000028, 34.66469199911669], [-118.32200100000028, 34.661657999116784], [-118.32297800000028, 34.66116399911677], [-118.32413700000028, 34.661588999116745], [-118.32409963044482, 34.660620625069456], [-118.32432599434844, 34.6606875223878], [-118.32432634114595, 34.65997501668295], [-118.32266417159731, 34.65993607504636], [-118.3223384240283, 34.65934415695964], [-118.32190129719214, 34.65958970849726], [-118.32080000000042, 34.65980999911676], [-118.32012500000032, 34.6594599991168], [-118.31968500000023, 34.65941699911681], [-118.31913800000018, 34.65742299911682], [-118.31822592745782, 34.658010238548854], [-118.31758269566683, 34.65782251326261], [-118.3171849221632, 34.6569815707396], [-118.31790811055176, 34.6565011561585], [-118.31678931908358, 34.655892264116225], [-118.3168120000003, 34.655554999116774], [-118.31597704308133, 34.65509708464962], [-118.31507700000023, 34.65507699911689], [-118.31475500000023, 34.6545959991169], [-118.31461200000022, 34.6546219991168], [-118.31471500000012, 34.654976999116855], [-118.31387732790958, 34.655220840304054], [-118.31359900000024, 34.655038999116854], [-118.31283958483748, 34.65544376403746], [-118.3128251253225, 34.65514892111705], [-118.31244993819394, 34.655169190668175], [-118.31236900000029, 34.65498699911682], [-118.31153100000033, 34.65481999911686], [-118.31115000000023, 34.65409999911687], [-118.30648023223984, 34.65272954021927], [-118.30663900000027, 34.64548999911699], [-118.28424466866673, 34.64537130416217], [-118.28033600000026, 34.645551999117025], [-118.27772800000021, 34.64543699911703], [-118.27711012415365, 34.64555846286644], [-118.27167700000022, 34.645330999116986], [-118.27123500000016, 34.645526999116974], [-118.27120287528822, 34.63111344301852], [-118.27989880784625, 34.630996393037165], [-118.28865740498169, 34.63110432268006], [-118.3235551241984, 34.630538963157065], [-118.32394035830188, 34.637807901751145], [-118.34182629970715, 34.63778471862662], [-118.34181416794863, 34.636904693643004], [-118.35071354178883, 34.63906074624547], [-118.35072036963466, 34.645038563735405], [-118.34193448117229, 34.6450462977256], [-118.34200057682048, 34.659752091816365], [-118.35589454354545, 34.65974971689978], [-118.355944951554, 34.65903361504448], [-118.35895046417315, 34.659725268134075], [-118.3596436208913, 34.65974836300545], [-118.35960564354032, 34.66342718023054], [-118.36409468142247, 34.66335154726451], [-118.36523450953436, 34.66355225260418], [-118.36531554382984, 34.66333050864169], [-118.36596307934037, 34.66352879466963], [-118.36626517990618, 34.66318245896136], [-118.36693286182201, 34.66355181255327], [-118.36741517171961, 34.662833894566475], [-118.36836945361495, 34.662831008680726], [-118.36834644544045, 34.66690373478488], [-118.38151838125953, 34.66670802800072], [-118.38152492940901, 34.673975697162916], [-118.41290760729963, 34.67397545893935], [-118.41304533655584, 34.687970809932764], [-118.43061123039065, 34.68795804844798], [-118.43061395544542, 34.688275668673654], [-118.44387569497232, 34.68830443388804], [-118.44393565093958, 34.69540508332281], [-118.4527735388628, 34.69550746758646], [-118.45280034272774, 34.6991897225409], [-118.46162517011187, 34.69923174955157], [-118.46165981439844, 34.702876849101784], [-118.48370880321868, 34.70271405981773], [-118.50139505560557, 34.702766932874916], [-118.50136015975532, 34.69915959391432], [-118.50576080856399, 34.699157707853985], [-118.50575108458867, 34.69799839703525], [-118.50770481275563, 34.6986308470868], [-118.51134973409897, 34.699076252171864], [-118.51588939094466, 34.700320194670354], [-118.51795935816446, 34.70112175648094], [-118.51991913366574, 34.70115039232916], [-118.52642190516389, 34.70253506595229], [-118.52795758209734, 34.7031658105217], [-118.53065641652428, 34.70470154684311], [-118.53586258834899, 34.70660032342384], [-118.53816479713207, 34.70781598961357], [-118.54870230595452, 34.71024149621466], [-118.55417228192935, 34.710788351146306], [-118.55872124474851, 34.7124711351981], [-118.56091773647499, 34.712851987509936], [-118.56655678388393, 34.71483437383825], [-118.56952202775693, 34.71539874380146], [-118.5699115247998, 34.715661926735], [-118.57049519246624, 34.7167886069356], [-118.57090651651612, 34.71702401141169], [-118.57464530839763, 34.71705932963864], [-118.57681713380346, 34.71763668706], [-118.57773810804191, 34.71830486146471], [-118.5812312120231, 34.72188087039616], [-118.58884519232694, 34.72604848401674], [-118.59173334061796, 34.72903663333434], [-118.59359042543029, 34.73150249550141], [-118.59689063850941, 34.73327574940736], [-118.59743618547715, 34.733840099805086], [-118.59874974843528, 34.735861315802836], [-118.604667548887, 34.7349237966746], [-118.60643208530327, 34.73439642375944], [-118.60765454545485, 34.73434965245851], [-118.60931268773514, 34.73460419791307], [-118.61056319102035, 34.734433805691516], [-118.61253355487143, 34.735254100232396], [-118.61333531562168, 34.73541850524179], [-118.615097383546, 34.73625833965379], [-118.61674940386335, 34.735675856056965], [-118.61852299439428, 34.73439642375939], [-118.62112841038, 34.73426806779661], [-118.62245006347818, 34.733858890092385], [-118.62498249977304, 34.73389546851594], [-118.62675935803064, 34.73342369648665], [-118.62747830851308, 34.733386106027226], [-118.62823155106078, 34.73341460557773], [-118.63155899161566, 34.73435993742725], [-118.63312479995851, 34.73460380954145], [-118.63406818644904, 34.73455931017863], [-118.63481818181857, 34.73432237973112], [-118.63589991498918, 34.73468523869639], [-118.63891803567036, 34.73455023872928], [-118.64038145194984, 34.73483382693996], [-118.64087245669131, 34.735103022134645], [-118.64090691586772, 34.735403035758374], [-118.64045451256213, 34.735971862855926], [-118.64138717203849, 34.73636381363903], [-118.64171429239647, 34.73687692518576], [-118.64186783516095, 34.73672393392315], [-118.64140478506788, 34.735991054355004], [-118.64156059972142, 34.735802174157726], [-118.64184084561342, 34.735786162819714], [-118.6432576167749, 34.736256060260544], [-118.64422682738407, 34.73603380569153], [-118.64585234822562, 34.73692412746184], [-118.64754936649359, 34.73732187636423], [-118.64817733620539, 34.73714979918323], [-118.64876791469696, 34.73723278739559], [-118.65113335631783, 34.73814206002154], [-118.65383987081974, 34.73849396013948], [-118.65456573576239, 34.73795883353337], [-118.65485410011131, 34.73792471478252], [-118.6551956544785, 34.73825006259377], [-118.65491603577689, 34.73901243436991], [-118.660721690654, 34.7416163531032], [-118.66205915438721, 34.74139525372864], [-118.66285410011129, 34.74148835114605], [-118.66550384593873, 34.74218056198296], [-118.66688473293097, 34.74279799990152], [-118.6676220277569, 34.74290783471032], [-118.66886273683848, 34.743509446989016], [-118.67294580392753, 34.74500663283228], [-118.67451773647487, 34.7452247147823], [-118.67613261154446, 34.74579653951029], [-118.67801307084945, 34.746046171429775], [-118.6781302270347, 34.782051952511], [-118.69115658409065, 34.78207662030422], [-118.69156102425801, 34.818008150724005], [-118.69144534122944, 34.81809381608004], [-118.64348100000036, 34.81845799911506], [-118.64341500000033, 34.81817899911506], [-118.64196000000013, 34.81815599911514], [-118.6226530000003, 34.81828799911497], [-118.57187900000032, 34.81802499911496], [-118.56971400000026, 34.818254999114956], [-118.56311800000039, 34.81802499911496], [-118.55904000000034, 34.81834099911494], [-118.54727000000031, 34.81843099911489], [-118.51952600000038, 34.81799399911496], [-118.48958900000032, 34.81784999911495], [-118.47217200000044, 34.81824199911487], [-118.44913100000032, 34.81834399911487], [-118.44000500000024, 34.81870299911494], [-118.41398100000029, 34.818856999114935], [-118.39133600000032, 34.81917899911497], [-118.34241200000035, 34.819429999114995], [-118.30865500000026, 34.820062999114974], [-118.20410700000035, 34.82015899911495], [-118.16389232563425, 34.8205996991847], [-118.17017875019157, 34.82047176058379]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Northwest Antelope Valley", "metadata": {"sqmi": 213.858460558, "type": "unincorporated-area", "name": "Northwest Antelope Valley", "slug": "northwest-antelope-valley"}, "cases": 2.0, "population": 0.015110305228165607, "external_id": "northwest-antelope-valley", "slug": "northwest-antelope-valley-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/northwest-antelope-valley-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.15325186465111, 34.645781280971384], [-118.15316057422685, 34.630255115683816], [-118.15206720448803, 34.630260379679385], [-118.15211361894767, 34.62385544115578], [-118.14881354577456, 34.623898320242894], [-118.14884383317164, 34.61844136609166], [-118.14773874182593, 34.618456192360235], [-118.14774771490158, 34.61663743218073], [-118.1488544839002, 34.61662118837451], [-118.14889184350199, 34.60914662095277], [-118.15657068775059, 34.60910155823524], [-118.15654850780983, 34.60544157879706], [-118.18324221711956, 34.60543662662357], [-118.18364847740264, 34.61658239508336], [-118.18351697317179, 34.62377041579368], [-118.20117112718746, 34.62365879434688], [-118.20117299090938, 34.6231065429864], [-118.2018377064439, 34.62310548739162], [-118.20184017974275, 34.62365812913613], [-118.2099536110527, 34.62364143360614], [-118.2100108254017, 34.63093737226003], [-118.18333045923862, 34.63113488650179], [-118.18303341160677, 34.64568656461452], [-118.15325186465111, 34.645781280971384]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Northwest Palmdale", "metadata": {"sqmi": 5.78532939766, "type": "unincorporated-area", "name": "Northwest Palmdale", "slug": "northwest-palmdale"}, "cases": null, "population": null, "external_id": "northwest-palmdale", "slug": "northwest-palmdale-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/northwest-palmdale-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.00653214992184, 34.02891766137121], [-118.00837181154893, 34.02577308195151], [-118.01916201529615, 34.01424998488637], [-118.00543457248756, 33.99882143171054], [-118.00579439370675, 33.99820936382009], [-118.00217540136033, 33.994044743517016], [-118.00226193583869, 33.98961348851785], [-117.99338931734836, 33.989647538172775], [-117.9935680393181, 33.982417488002], [-117.99849856516481, 33.982406177667116], [-118.00800300000024, 33.982749999124906], [-118.00802800000027, 33.98609099912482], [-118.01809900000026, 33.9861119991249], [-118.01807300000024, 33.990010999124934], [-118.02862668113079, 33.989946095966886], [-118.02860593670671, 34.003776358841826], [-118.029146310406, 34.00377997678449], [-118.02917500000028, 34.0040859991247], [-118.03650000000023, 34.004211999124614], [-118.03650000000017, 34.00382888615315], [-118.0373524755531, 34.00383455401015], [-118.03733337780452, 34.000786538807], [-118.04602345558885, 34.00089283320811], [-118.04652546875266, 34.00134123584485], [-118.04645976121311, 34.001709407822965], [-118.04930700000025, 34.00188399912467], [-118.04951700000031, 34.001735999124705], [-118.05030100000022, 34.002241999124685], [-118.05038800000025, 34.001646999124674], [-118.0547760000002, 34.003894999124675], [-118.05419200000016, 34.004430999124615], [-118.05450700000026, 34.004615999124574], [-118.05602500000018, 34.0046069991245], [-118.05629727763699, 34.00217122619532], [-118.0564976472851, 34.00195972177432], [-118.06135700000024, 34.005210999124635], [-118.06163600000028, 34.00483499912473], [-118.06198400000028, 34.00511099912466], [-118.06201500000027, 34.00529399912458], [-118.06096600000035, 34.00653499912455], [-118.05902528613947, 34.00812133421502], [-118.05982700000023, 34.0088359991246], [-118.06008200000029, 34.00879699912457], [-118.06192175728445, 34.007505528182506], [-118.06498896714515, 34.00957724309083], [-118.06214500000023, 34.012197999124666], [-118.05878930758688, 34.012596501309204], [-118.05810296229279, 34.01310056280933], [-118.05753678025181, 34.013172428382944], [-118.05686100000023, 34.01264799912456], [-118.05663200000029, 34.01217299912454], [-118.05647900000027, 34.012773999124526], [-118.05582310119458, 34.01176051607095], [-118.05570129232116, 34.01125000052244], [-118.03121541310257, 34.027932693573334], [-118.03056500000035, 34.02709699912442], [-118.02808704592908, 34.02822328189705], [-118.02774612841255, 34.02767664366975], [-118.02697386053633, 34.02798069157821], [-118.0269350000003, 34.02768099912427], [-118.02642200711665, 34.027870661986384], [-118.02608886868526, 34.02735029560403], [-118.02413251201355, 34.0271296375038], [-118.02170719370008, 34.02790386699979], [-118.02156295706129, 34.028087611253746], [-118.0204907147696, 34.02797837617184], [-118.01955858934495, 34.028359993538615], [-118.01682856441147, 34.02762818092423], [-118.01546778120643, 34.027463873192666], [-118.0139299696135, 34.02785830050022], [-118.01281300000015, 34.027876999124345], [-118.01238168734996, 34.02814625051266], [-118.01159948926359, 34.028180679322006], [-118.0107646413794, 34.02867617719228], [-118.00979900000024, 34.02860999912437], [-118.00815025208153, 34.02902260012305], [-118.00647062157866, 34.02902351039765], [-118.00653214992184, 34.02891766137121]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "North Whittier", "metadata": {"sqmi": 5.45993969843, "type": "unincorporated-area", "name": "North Whittier", "slug": "north-whittier"}, "cases": 6.0, "population": 0.08360039013515397, "external_id": "north-whittier", "slug": "north-whittier-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/north-whittier-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.08218100000019, 33.93345299912549], [-118.08225900000012, 33.9316829991254], [-118.0726800000002, 33.931700999125475], [-118.072587, 33.9278959991255], [-118.06868400000026, 33.92790099912559], [-118.06825100000017, 33.92759499912558], [-118.06847800000014, 33.9304139991255], [-118.06395800000023, 33.93041499912552], [-118.0638160000002, 33.91708799912567], [-118.06041600000019, 33.91709399912568], [-118.0594350000002, 33.9155359991257], [-118.0574640000002, 33.913641999125744], [-118.05539500000016, 33.91237799912574], [-118.05539800000014, 33.91251399912577], [-118.05520700000025, 33.91251799912573], [-118.055209, 33.91227399912574], [-118.04978800000015, 33.90923799912574], [-118.04979200000017, 33.90693899912574], [-118.05037500000013, 33.906071999125786], [-118.0530980000001, 33.90621399912582], [-118.05290700000025, 33.90320999912578], [-118.0537980000002, 33.90321399912587], [-118.0537970000002, 33.902311999125885], [-118.04431100000022, 33.902434999125866], [-118.044293, 33.89891799912606], [-118.04224800000023, 33.89886499912586], [-118.04207800000017, 33.89693099912586], [-118.04227000000014, 33.895203999125926], [-118.04652900000019, 33.895165999125915], [-118.04650500000028, 33.89378299912596], [-118.05827200000016, 33.90014599912597], [-118.05893500000013, 33.90034299912586], [-118.06175200000015, 33.90227299912586], [-118.0639550000001, 33.90227099912588], [-118.06396900000021, 33.89568499912587], [-118.06276100000015, 33.89576399912595], [-118.06274100000023, 33.89506199912593], [-118.055357, 33.89506099912602], [-118.05537600000018, 33.88721599912604], [-118.06408500000022, 33.887164999126064], [-118.06409400000015, 33.887723999126116], [-118.06846900000018, 33.88771099912609], [-118.06848300000031, 33.886022999126034], [-118.07283200000028, 33.88615099912607], [-118.07270800000029, 33.88039199912627], [-118.09571000000018, 33.88031199912615], [-118.09552900000013, 33.88756699912602], [-118.0998880000001, 33.887536999126056], [-118.09988400000015, 33.88706899912604], [-118.10050500000018, 33.887076999126016], [-118.10051700000024, 33.887533999126], [-118.10425300000014, 33.88760999912601], [-118.10440000000014, 33.887522999126055], [-118.10437200000013, 33.88700699912595], [-118.10827000000015, 33.88707399912596], [-118.1082520000003, 33.905828999125774], [-118.10836400000011, 33.90663699912581], [-118.10935900000018, 33.90970999912575], [-118.10980000000029, 33.90971399912575], [-118.11088000000014, 33.91378199912574], [-118.11128100000012, 33.91702399912566], [-118.11172800000018, 33.91908399912559], [-118.1117980000001, 33.920984999125544], [-118.11154100000016, 33.92190799912566], [-118.10550100000019, 33.93321399912548], [-118.10471800000015, 33.93201099912548], [-118.09026200000014, 33.93210199912551], [-118.08848400000011, 33.929551999125565], [-118.08380700000014, 33.934025999125495], [-118.08215900000023, 33.93394899912554], [-118.08218100000019, 33.93345299912549]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Norwalk", "metadata": {"sqmi": 9.76375938611, "type": "standalone-city", "name": "Norwalk", "slug": "norwalk"}, "cases": 193.0, "population": 1.0762281826799753, "external_id": "norwalk", "slug": "norwalk-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/norwalk-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.55731700000013, 34.126805999122936], [-118.55641700000012, 34.12660599912295], [-118.55551700000011, 34.128205999123004], [-118.55351700000011, 34.12860599912305], [-118.554717, 34.12700599912304], [-118.54931700000012, 34.1264059991231], [-118.54301700000013, 34.127105999123145], [-118.53987700000012, 34.128293999123], [-118.538469, 34.127973999123], [-118.53686900000012, 34.129189999122886], [-118.536277, 34.12912599912299], [-118.53482, 34.12834199912302], [-118.534196, 34.12824599912297], [-118.53243600000013, 34.12894999912295], [-118.531636, 34.12896599912297], [-118.52978000000012, 34.12947799912296], [-118.52711600000013, 34.12910599912314], [-118.528616, 34.12550599912302], [-118.529216, 34.122005999123026], [-118.5283160000001, 34.118905999123136], [-118.52751600000012, 34.11850599912308], [-118.5279160000001, 34.11820599912323], [-118.525616, 34.10730699912323], [-118.525516, 34.104406999123285], [-118.52071500000018, 34.08860699912339], [-118.5180150000001, 34.08310699912364], [-118.519515, 34.08280699912348], [-118.518415, 34.081806999123486], [-118.520515, 34.081806999123486], [-118.51751500000012, 34.07600799912372], [-118.51521500000011, 34.07500799912373], [-118.516515, 34.07220799912368], [-118.511514, 34.06690799912384], [-118.50711400000013, 34.06410799912384], [-118.506814, 34.06150799912376], [-118.506807, 34.05532399912385], [-118.50996100000012, 34.051087999123936], [-118.509541, 34.050902999123934], [-118.50927100000014, 34.050516999123886], [-118.509212, 34.04898999912393], [-118.509297, 34.048561999124054], [-118.510059, 34.047279999123994], [-118.51000600000015, 34.04668699912401], [-118.509166, 34.04618899912392], [-118.508427, 34.0462399991239], [-118.508014, 34.046607999124], [-118.503885, 34.05227999912387], [-118.50294, 34.05272199912398], [-118.500614, 34.05290799912391], [-118.4995440000001, 34.053288999123865], [-118.499256, 34.053689999123996], [-118.499054, 34.05440699912382], [-118.498628, 34.0549209991238], [-118.496359, 34.056018999123985], [-118.496172, 34.05633599912391], [-118.49558300000014, 34.059986999123865], [-118.495285, 34.06041999912394], [-118.494522, 34.060636999123986], [-118.493722, 34.060404999123854], [-118.49347800000011, 34.059944999123886], [-118.49345900000013, 34.05891999912381], [-118.49271400000013, 34.05840799912377], [-118.49311400000012, 34.056407999123955], [-118.49251400000011, 34.05350799912392], [-118.493014, 34.05180799912383], [-118.493814, 34.05010799912388], [-118.494468, 34.05055999912406], [-118.49464100000017, 34.05016199912407], [-118.495405, 34.04958999912397], [-118.504024, 34.04062899912412], [-118.505076, 34.04091099912412], [-118.505774, 34.040693999124095], [-118.506589, 34.04039799912408], [-118.508096, 34.03912999912413], [-118.508323, 34.0392049991241], [-118.508116, 34.039076999124106], [-118.508263, 34.03834999912413], [-118.508217, 34.03809099912416], [-118.508085, 34.03809899912426], [-118.507688, 34.03626899912416], [-118.508704, 34.03396199912421], [-118.508802, 34.03335799912426], [-118.5085930000001, 34.03306299912418], [-118.509473, 34.03270199912421], [-118.510697, 34.031413999124204], [-118.5126410000001, 34.029928999124216], [-118.514711, 34.02787299912423], [-118.515241, 34.0269399991243], [-118.51770742009592, 34.02482346826698], [-118.52643799494163, 34.030560014398056], [-118.52854900216622, 34.031451999655935], [-118.52980800931614, 34.03218998934628], [-118.53067400420473, 34.03235997898699], [-118.53607500282524, 34.0344879799142], [-118.54026597614528, 34.03647098194052], [-118.54530300437447, 34.03859298509039], [-118.54722697564338, 34.03893901476119], [-118.55009201924368, 34.03917398032471], [-118.55280601355322, 34.03856399583249], [-118.55425300367625, 34.03792502208253], [-118.55626299570116, 34.03792502208253], [-118.56422899121164, 34.040856988252735], [-118.56707066298694, 34.04132731565544], [-118.57010700000018, 34.047116999124036], [-118.570395, 34.06934599912369], [-118.59920399648759, 34.07433699810336], [-118.564752, 34.13016799912299], [-118.56586737033591, 34.13059338597857], [-118.56600500000015, 34.13078999912298], [-118.564869, 34.13128599912294], [-118.56405300000011, 34.13190999912294], [-118.563517, 34.13090599912291], [-118.561017, 34.130505999122995], [-118.559917, 34.12990599912287], [-118.55731700000013, 34.126805999122936]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Pacific Palisades", "metadata": {"sqmi": 22.8376013762, "type": "segment-of-a-city", "name": "Pacific Palisades", "slug": "pacific-palisades"}, "cases": 40.0, "population": 0.2513744168134777, "external_id": "pacific-palisades", "slug": "pacific-palisades-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/pacific-palisades-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.414822, 34.29291499912091], [-118.411615, 34.290000999120984], [-118.41042300000012, 34.29093699912096], [-118.41019269089901, 34.290837665060394], [-118.4094, 34.28901199912111], [-118.40767933041626, 34.28736472062902], [-118.408326, 34.28688999912116], [-118.39459700000012, 34.273864999121294], [-118.39391400000011, 34.27350199912125], [-118.397314, 34.27100199912122], [-118.400014, 34.26810199912133], [-118.4014140000001, 34.26640199912143], [-118.4018140000001, 34.2645019991213], [-118.39611400000013, 34.25920199912144], [-118.395914, 34.2588019991214], [-118.395414, 34.25920199912153], [-118.39497, 34.25914299912147], [-118.39361600000015, 34.25827199912145], [-118.390679, 34.25729999912136], [-118.390814, 34.25720199912151], [-118.387514, 34.25670199912138], [-118.39001400000011, 34.2523019991214], [-118.398714, 34.24410299912155], [-118.403914, 34.23770299912169], [-118.409699, 34.23339499912173], [-118.410514, 34.23380299912176], [-118.42235900000014, 34.244721999121644], [-118.440271, 34.261642999121456], [-118.44190200000014, 34.26379799912131], [-118.444053, 34.267475999121345], [-118.44766700000011, 34.27094499912125], [-118.45030300000013, 34.27411299912133], [-118.44706604532324, 34.27645903626253], [-118.443734, 34.27330999912135], [-118.435976, 34.27897299912118], [-118.43571200000012, 34.27930999912122], [-118.433776, 34.27745299912119], [-118.4321750000001, 34.27867299912124], [-118.43037, 34.2803499991212], [-118.4305690000001, 34.28054899912108], [-118.427921, 34.28227599912114], [-118.427291, 34.28293999912132], [-118.417123, 34.29035599912113], [-118.418632, 34.29176399912108], [-118.41582319720133, 34.29381818342135], [-118.414822, 34.29291499912091]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Pacoima", "metadata": {"sqmi": 7.1375539566, "type": "segment-of-a-city", "name": "Pacoima", "slug": "pacoima"}, "cases": 270.0, "population": 0.7697790449037776, "external_id": "pacoima", "slug": "pacoima-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/pacoima-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.29187247297372, 34.580158148031856], [-118.29988358251455, 34.58015685668385], [-118.30044003063601, 34.580156990568774], [-118.3004333467109, 34.58044746640223], [-118.29187247297372, 34.580158148031856]]], [[[-118.20119545371689, 34.63096851389076], [-118.20176950793864, 34.63096648595754], [-118.19156142906914, 34.631066254067406], [-118.19228540620583, 34.63104930087943], [-118.20119545371689, 34.63096851389076]]], [[[-118.2100108254016, 34.63093737225999], [-118.21001043505741, 34.63108058932556], [-118.2100090000002, 34.6309499991171], [-118.20645495553168, 34.63094993390676], [-118.2100108254016, 34.63093737225999]]], [[[-118.1833304592385, 34.63113488650176], [-118.18337280688687, 34.63113455148007], [-118.18326499572673, 34.63539394090064], [-118.1833304592385, 34.63113488650176]]], [[[-118.1831018405073, 34.64297486737569], [-118.18315615199168, 34.640822432930804], [-118.18310029300883, 34.64303619157618], [-118.1831018405073, 34.64297486737569]]], [[[-118.2100108254016, 34.63093737225999], [-118.2099536110526, 34.62364143360609], [-118.20184017974265, 34.62365812913608], [-118.20183770644378, 34.62310548739157], [-118.20117299090931, 34.62310654298637], [-118.20117112718737, 34.62365879434685], [-118.18351697317169, 34.62377041579363], [-118.18364847740254, 34.61658239508331], [-118.18324221711946, 34.60543662662351], [-118.15654850780973, 34.60544157879703], [-118.15657068775049, 34.60910155823522], [-118.14889184350189, 34.609146620952764], [-118.14885448390008, 34.61662118837448], [-118.14774771490151, 34.61663743218068], [-118.14773874182583, 34.61845619236012], [-118.14884383317151, 34.618441366091595], [-118.14881354577446, 34.62389832024284], [-118.15211361894757, 34.62385544115574], [-118.15206720448796, 34.630260379679335], [-118.15316057422672, 34.63025511568379], [-118.1532514414022, 34.64572012966785], [-118.1123270000002, 34.64593699911689], [-118.11225600000019, 34.660465999116724], [-118.07671800000014, 34.660656999116725], [-118.02307100000013, 34.66067299911671], [-118.0194860000001, 34.6609469991167], [-118.01791400000015, 34.66073399911685], [-118.01404700000018, 34.66068299911676], [-117.995362, 34.660777999116924], [-117.99342886617289, 34.66063478935531], [-117.99101300000021, 34.66078999911666], [-117.98610400000022, 34.66065799911663], [-117.95203600000016, 34.66075999911669], [-117.94734800000018, 34.6609469991168], [-117.93422400000014, 34.661030999116775], [-117.91586700000023, 34.66100599911675], [-117.91574700000011, 34.60258199911747], [-117.91637003417407, 34.5933371252236], [-117.91627407918388, 34.587181844778456], [-117.91678425227934, 34.587186094083734], [-117.91679700000014, 34.58699399911759], [-117.91856500000016, 34.58694399911769], [-117.93249200000014, 34.58705899911759], [-117.93390201305874, 34.58732867038053], [-117.95703200000013, 34.587091999117746], [-117.9735472202019, 34.58711414907374], [-117.97409586406692, 34.57220303335681], [-117.97393691911871, 34.565073374455466], [-117.97508119363475, 34.56507355951876], [-117.97505232420923, 34.561434479137844], [-117.97830985470016, 34.561428426812654], [-117.97827549978605, 34.5577832172362], [-117.97922368161868, 34.55777937133971], [-117.97924462834732, 34.553964382440356], [-117.98145150336605, 34.55395534202723], [-117.98148663213419, 34.548325773201285], [-117.98369910384747, 34.54831548389701], [-117.9837108168265, 34.546500739959704], [-117.9859207479446, 34.5464904918933], [-117.98593427197562, 34.5446757755649], [-117.98814906910484, 34.544665487530615], [-117.98806712696506, 34.54103604723697], [-117.9885663995649, 34.54103298502215], [-117.98951010909076, 34.540479246514025], [-117.99049706097915, 34.539453015067615], [-117.99125710759807, 34.538291510342816], [-117.99256697947766, 34.53788437015699], [-117.99256403614946, 34.5373815448976], [-117.99474719230184, 34.537371079636046], [-117.99473901109035, 34.53547183919107], [-117.99692128784545, 34.53546059085959], [-117.9968980751919, 34.52838963179581], [-117.99678768213994, 34.5282612321869], [-118.00127925279551, 34.52826134095408], [-118.001278581853, 34.52464553658171], [-118.00193918639168, 34.52464733257224], [-118.00207548550611, 34.52375060286615], [-118.00244292551488, 34.52317459590502], [-118.002872719503, 34.52193932741441], [-118.00249782000284, 34.52101328191474], [-118.00417367912004, 34.52110493778565], [-118.00602682454122, 34.521606532205034], [-118.00834171749287, 34.52271835909606], [-118.0097779931878, 34.52458435652425], [-118.01004026052068, 34.52458574525859], [-118.0100317602977, 34.52503828152657], [-118.01385216857152, 34.53065545924757], [-118.01492300437191, 34.53163612329386], [-118.02020661317988, 34.53546062229385], [-118.02770154105536, 34.53550652252169], [-118.02771608208437, 34.540781348234034], [-118.03428812399387, 34.54082952638254], [-118.03429266826393, 34.542708652575115], [-118.04962498401953, 34.542708640276935], [-118.04958952753908, 34.53896733427517], [-118.048688, 34.53777099911817], [-118.04988013968091, 34.53663391547173], [-118.04950928511379, 34.53545751751956], [-118.04963536360995, 34.53545789879189], [-118.04977600000018, 34.53400399911826], [-118.05014387623943, 34.533971967677886], [-118.0501431833918, 34.53384583295241], [-118.04962687590839, 34.533848758567416], [-118.04961556884767, 34.53183339133171], [-118.04979535170844, 34.53183395220223], [-118.04982400000024, 34.53127499911821], [-118.05085300000013, 34.531038999118266], [-118.05170400000021, 34.53105799911819], [-118.05372800000018, 34.5315279991183], [-118.05397600000019, 34.53191299911831], [-118.05487800000017, 34.53219099911827], [-118.05492600000014, 34.53293099911819], [-118.05515135018554, 34.5329339192859], [-118.055150000647, 34.53238866822513], [-118.05539500000016, 34.5323269991181], [-118.05616800000016, 34.53233599911825], [-118.05866300000015, 34.53290499911826], [-118.05993300000021, 34.53291799911826], [-118.062736, 34.53261399911824], [-118.06284925072634, 34.53546784079708], [-118.07186384586858, 34.53542845157009], [-118.07416546425915, 34.53511311055916], [-118.0731001403281, 34.534544911133835], [-118.07164420623825, 34.53425037870527], [-118.07150273880838, 34.52812121316137], [-118.05910963726392, 34.52822218830862], [-118.05701400000018, 34.527993999118294], [-118.05513800000014, 34.52733999911824], [-118.052518, 34.5258169991183], [-118.0488110000002, 34.52415699911831], [-118.04629600000014, 34.52237199911838], [-118.045197, 34.52182999911834], [-118.04513380462846, 34.51374889864877], [-118.05390502297355, 34.51372217891748], [-118.05391607564431, 34.51006393050786], [-118.05411200000025, 34.509989999118396], [-118.059867, 34.50981299911848], [-118.05993969090167, 34.51186643242555], [-118.05939194447679, 34.511867917715676], [-118.05938636298913, 34.51370517154487], [-118.07962138342744, 34.51357358584661], [-118.07966900000018, 34.527639999118314], [-118.07982200000018, 34.529862999118215], [-118.080829, 34.534239999118256], [-118.08247600000011, 34.53435499911823], [-118.08446400000014, 34.53365599911823], [-118.08467500000022, 34.53444299911825], [-118.08539700000017, 34.53501699911809], [-118.08623400000016, 34.53442599911823], [-118.08815800000016, 34.53367599911829], [-118.08919800000018, 34.534303999118244], [-118.09316500000021, 34.534798999118216], [-118.0938680000002, 34.53469199911821], [-118.09602700000013, 34.533836999118265], [-118.0974020000001, 34.53363899911824], [-118.09783500000016, 34.5337259991182], [-118.09808700000013, 34.53410199911828], [-118.09793200000018, 34.53507699911811], [-118.09901300000018, 34.53604299911823], [-118.1006, 34.53645899911814], [-118.10184200000026, 34.536382999118196], [-118.10207200000019, 34.536685999118234], [-118.10241700000013, 34.53661099911816], [-118.10221800000016, 34.535943999118246], [-118.10264000000015, 34.53582599911821], [-118.10632500000017, 34.540490999118205], [-118.10641371441307, 34.541088945774966], [-118.10681652355278, 34.54187172222787], [-118.1134207525761, 34.55111079526167], [-118.113958, 34.552581999118004], [-118.11412300000016, 34.55529399911803], [-118.11474100000011, 34.55714699911796], [-118.11482545884675, 34.55794793469711], [-118.12378996331493, 34.557909396892875], [-118.12379956940038, 34.556603915984965], [-118.12669300000012, 34.55713899911798], [-118.12932500000022, 34.55460499911803], [-118.12969092474145, 34.55402499069194], [-118.1292014222581, 34.553098852997095], [-118.12994915463123, 34.55309833830823], [-118.12965100000014, 34.55224299911805], [-118.13149700000017, 34.55211099911799], [-118.13176900000028, 34.55533199911793], [-118.13035987682741, 34.55740107300051], [-118.13028800000016, 34.55791999911792], [-118.12936082110676, 34.557923548127974], [-118.1293532142885, 34.55887713292797], [-118.13189819970898, 34.55888099335341], [-118.13147969897166, 34.55815642397879], [-118.13055660866328, 34.55789135079905], [-118.13785461721974, 34.557953126511926], [-118.13783478388068, 34.55539205328969], [-118.13889005496871, 34.555393733641964], [-118.13889200000011, 34.557960999117924], [-118.14271634722702, 34.55802468233111], [-118.14276458163239, 34.56486660666092], [-118.14666100000012, 34.56473599911787], [-118.151674, 34.56482399911789], [-118.15168600000017, 34.56085899911796], [-118.15258800000022, 34.56092599911774], [-118.15402500000016, 34.561300999117904], [-118.1567030000001, 34.5627309991179], [-118.16123300000027, 34.56257899911786], [-118.16305800000015, 34.56296399911796], [-118.165539, 34.56434099911781], [-118.16671900000014, 34.56542899911784], [-118.168116, 34.56596599911785], [-118.16819500000022, 34.558077999117934], [-118.17715800000018, 34.55813499911791], [-118.17858500000011, 34.55787399911791], [-118.1805880000002, 34.55801099911802], [-118.1852740000001, 34.55767199911798], [-118.18527600000016, 34.55777399911783], [-118.1958398055083, 34.55829188806022], [-118.20006170835192, 34.55830488627748], [-118.20002003023109, 34.55709541436237], [-118.19413274516108, 34.556928637427426], [-118.19415428833025, 34.55622642500449], [-118.19376700000012, 34.556235999117945], [-118.19449390410192, 34.54515644683797], [-118.19837467183655, 34.54521774112045], [-118.19842447138694, 34.54112028532187], [-118.19868514772689, 34.54112488629627], [-118.19869300000023, 34.54099799911823], [-118.20700462090119, 34.540982193511795], [-118.20698646804898, 34.5426966261733], [-118.22018208969553, 34.54275203985883], [-118.22024775908247, 34.53908897824578], [-118.23788296951264, 34.53894795222949], [-118.25550542881388, 34.53929287467369], [-118.25467739592202, 34.55830403375051], [-118.2872979936549, 34.55815273972216], [-118.2879236038457, 34.5800244964525], [-118.28773856816031, 34.580018233912014], [-118.28770325132314, 34.583752115012324], [-118.28335460120135, 34.58375450748239], [-118.28331745776077, 34.58747052355049], [-118.27458994756854, 34.58739517740326], [-118.27465731369755, 34.583757497626685], [-118.26146388698443, 34.58374354880068], [-118.26143022191222, 34.587698588559824], [-118.26647844117237, 34.58766299223127], [-118.26652863640926, 34.59131859616101], [-118.27091756447199, 34.591300322981695], [-118.27116418127054, 34.60406462727873], [-118.26231985822527, 34.60403995705297], [-118.26233746382294, 34.606753121603376], [-118.2652550683681, 34.606761654683396], [-118.265282739086, 34.60947483722961], [-118.26496429416262, 34.60947328241407], [-118.26491284344658, 34.609693985227764], [-118.26252782832937, 34.60951997328529], [-118.26235352279367, 34.60931997860844], [-118.26141523138892, 34.6091359457761], [-118.25821941081875, 34.607991466836445], [-118.25536368547868, 34.60662807834248], [-118.25357936379582, 34.60531699033533], [-118.25084544030894, 34.60444074211685], [-118.24827646224188, 34.60316552258643], [-118.24477645489605, 34.600999385552576], [-118.2436169901627, 34.60082270411546], [-118.24196854779979, 34.60113195905224], [-118.24106525635192, 34.601120486294825], [-118.24005185614554, 34.600618256775576], [-118.23584847609952, 34.599195875866414], [-118.23503848719737, 34.5986250056905], [-118.23457609739839, 34.59767536836296], [-118.23575237907421, 34.59762547931239], [-118.23557145369905, 34.594662141906646], [-118.22683486147187, 34.59463290391921], [-118.22725421857842, 34.60189220388955], [-118.21849363645289, 34.60185822847837], [-118.2185721997492, 34.60911310885985], [-118.22737954354021, 34.609171833059364], [-118.2274862800374, 34.61539638667728], [-118.22575397362418, 34.61604056969027], [-118.22529719749369, 34.61589317259373], [-118.22533184581086, 34.61608276183929], [-118.22386311284846, 34.615924865510394], [-118.22310509964751, 34.61488014068945], [-118.2191847033862, 34.61405229432346], [-118.21862103701461, 34.61360461928553], [-118.21863516038212, 34.61490491279582], [-118.22201500068208, 34.616158135823575], [-118.22261172137495, 34.617281009004365], [-118.2239340395094, 34.617589907403385], [-118.22750665838988, 34.61703668107787], [-118.2283240781995, 34.61644939780434], [-118.27119907234224, 34.616731398467884], [-118.27103055191192, 34.63085342663369], [-118.27103380034269, 34.631115698330255], [-118.27120287528811, 34.6311134430185], [-118.271235, 34.64552699911695], [-118.23606000000018, 34.645604999116905], [-118.23619014947559, 34.63819259062941], [-118.22300586486125, 34.638224110019756], [-118.2231899594062, 34.63085655916249], [-118.2100108254016, 34.63093737225999]], [[-118.15676163450048, 34.59561573808391], [-118.16086984597614, 34.59261019364419], [-118.16086256574039, 34.59211150854596], [-118.15920546000159, 34.59332770312413], [-118.15854059852568, 34.59270444832841], [-118.15597167876311, 34.59458145575731], [-118.15532838611034, 34.59397744636784], [-118.15626513392769, 34.59328779458187], [-118.15594263632332, 34.59298321832868], [-118.15753357586146, 34.591812921967815], [-118.15720972155938, 34.59151323697876], [-118.1613600582445, 34.58848959311948], [-118.16160517606376, 34.58803659287762], [-118.16159960219225, 34.58700690275352], [-118.15633440880376, 34.58704238708224], [-118.15630837014888, 34.585036383142786], [-118.15597129022326, 34.58455573571802], [-118.15539597382933, 34.58483103284462], [-118.15406624982457, 34.58445544092656], [-118.15405898969351, 34.58396637051578], [-118.15284698932685, 34.58369808979388], [-118.15284413443386, 34.58348103076938], [-118.15184584282649, 34.583479564075716], [-118.15185150624337, 34.58393291508831], [-118.15088905993203, 34.5842502075523], [-118.1509117257442, 34.584520872080034], [-118.14992496289257, 34.58455924647237], [-118.15011595982806, 34.587072315512756], [-118.14750749131117, 34.58708197672676], [-118.14755760159416, 34.59145748650218], [-118.1488201310414, 34.591453889082985], [-118.14882529251462, 34.591738698284345], [-118.14828458256703, 34.59174294986227], [-118.14833376513369, 34.595384723463674], [-118.14886797788799, 34.595380169535666], [-118.14886511993302, 34.5951686063395], [-118.15130579005684, 34.59344741993041], [-118.15356596540657, 34.59556738729844], [-118.14941251047965, 34.597024819962826], [-118.14941551148412, 34.59721083680312], [-118.1498142339077, 34.59720868365278], [-118.14982851513876, 34.59827474175783], [-118.15064194677782, 34.59785030835605], [-118.15586573404431, 34.59609811789557], [-118.15676163450048, 34.59561573808391]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Palmdale", "metadata": {"sqmi": 134.417681526, "type": "standalone-city", "name": "Palmdale", "slug": "palmdale"}, "cases": 421.0, "population": 1.6131622710220375, "external_id": "palmdale", "slug": "palmdale-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/palmdale-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.38831000000013, 34.02951099912418], [-118.38776190953162, 34.02906290865564], [-118.392622, 34.02627799912433], [-118.392931, 34.02552099912424], [-118.39334200000013, 34.02551199912431], [-118.393446, 34.025370999124306], [-118.393937, 34.02570599912427], [-118.394197, 34.02555899912429], [-118.394084, 34.02530999912424], [-118.39835, 34.02291699912433], [-118.397455, 34.021661999124326], [-118.398931, 34.02078399912436], [-118.39910100000013, 34.02078699912441], [-118.399492, 34.021293999124296], [-118.400249, 34.02085999912442], [-118.400608, 34.02147199912433], [-118.401285, 34.021086999124364], [-118.400476, 34.01989699912444], [-118.40546, 34.01685399912427], [-118.40686400000011, 34.01857399912437], [-118.41845506919958, 34.01198505432663], [-118.43029800000014, 34.026819999124214], [-118.423911, 34.02930999912424], [-118.418411, 34.03200999912423], [-118.415111, 34.03200999912428], [-118.41121100000011, 34.03080999912419], [-118.408371, 34.03026399912414], [-118.40591100000012, 34.02980999912429], [-118.401211, 34.029409999124226], [-118.399911, 34.03130999912419], [-118.398211, 34.03540999912409], [-118.398211, 34.03630999912408], [-118.39851100000017, 34.037209999124116], [-118.394111, 34.0361099991241], [-118.38941, 34.03470999912416], [-118.39001, 34.032809999124076], [-118.39091, 34.03120999912416], [-118.38831000000013, 34.02951099912418]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Palms", "metadata": {"sqmi": 1.94535901621, "type": "segment-of-a-city", "name": "Palms", "slug": "palms"}, "cases": 130.0, "population": 0.4387741325772918, "external_id": "palms", "slug": "palms-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/palms-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.39190700000013, 33.804214999127026], [-118.37441700000014, 33.80421299912709], [-118.3675650000002, 33.80399799912696], [-118.3664750000002, 33.80412599912705], [-118.36228900000015, 33.8040769991272], [-118.36104900000018, 33.80339899912706], [-118.3519740000002, 33.795781999127186], [-118.36720300000019, 33.79511599912726], [-118.36750600000016, 33.79441599912723], [-118.36845300000012, 33.79442199912717], [-118.36881500000018, 33.795469999127135], [-118.36971700000028, 33.79489099912716], [-118.37169700000015, 33.79470699912734], [-118.37500500000013, 33.794932999127106], [-118.37768200000022, 33.79490699912715], [-118.37853800000018, 33.79546599912712], [-118.37862200000022, 33.79490999912719], [-118.379225, 33.79440199912726], [-118.38142300000015, 33.7938349991272], [-118.381439, 33.79358299912725], [-118.38283700000015, 33.79303599912715], [-118.38420600000012, 33.79361499912725], [-118.38495300000015, 33.791113999127255], [-118.38629600000012, 33.78525099912736], [-118.387306, 33.78201599912737], [-118.39386400000014, 33.78178099912727], [-118.39995600000016, 33.78181399912731], [-118.39997900000023, 33.781667999127315], [-118.40380900000021, 33.78135099912737], [-118.40365400000015, 33.76471999912762], [-118.405264, 33.76414899912759], [-118.40765100000033, 33.764218999127635], [-118.41050400000019, 33.763472999127536], [-118.41182500000016, 33.76338599912765], [-118.41778172359771, 33.7623476303598], [-118.41879498810833, 33.76271100465284], [-118.41988700450626, 33.76261298834187], [-118.42242401176804, 33.76343200064034], [-118.42248099065397, 33.763691009925765], [-118.42211702026268, 33.764420002949926], [-118.42192998430711, 33.76556599934519], [-118.42291598735747, 33.76628299681436], [-118.42424702044922, 33.76620497309506], [-118.42467501974573, 33.76725500505071], [-118.42301300403885, 33.76776097545447], [-118.42248998732019, 33.76828699106183], [-118.42216700174171, 33.76837301181775], [-118.42187900319857, 33.769340021906146], [-118.42195297578739, 33.76987198267881], [-118.42262798881433, 33.77141598948324], [-118.42319099071621, 33.77209999917625], [-118.42443700268167, 33.77266699959647], [-118.4267130013989, 33.77239499512661], [-118.4274309984976, 33.773147979260656], [-118.42803398558266, 33.77347101745131], [-118.42827000338782, 33.77411698860821], [-118.42754101036351, 33.77517201871165], [-118.42504898643298, 33.77719100740274], [-118.42461498935886, 33.77770597447271], [-118.42424802007882, 33.77861800493419], [-118.42397401634979, 33.780713018085315], [-118.42271500919999, 33.78268202529747], [-118.42192998430711, 33.783651981662516], [-118.41958001300098, 33.78537097625541], [-118.41861200328287, 33.78651297413243], [-118.41745800985106, 33.78698900826075], [-118.41587101897468, 33.78808202428837], [-118.41286097647317, 33.788996001396825], [-118.4107319759163, 33.789951015930264], [-118.40908300800608, 33.79090897674033], [-118.4073760089681, 33.79131798307476], [-118.40706701820369, 33.79212799870709], [-118.40692002004346, 33.79344298511343], [-118.40725500117686, 33.79410200406689], [-118.40776402308137, 33.794496015957726], [-118.4075350026835, 33.796182022774396], [-118.40782699974487, 33.79674802356505], [-118.40861702278562, 33.796433982040746], [-118.40876801946425, 33.79667999614158], [-118.40843498497787, 33.79711399321546], [-118.40724100636285, 33.79773297437378], [-118.40599299513816, 33.79921300488505], [-118.40512000284244, 33.79992100568808], [-118.40156900290191, 33.80163700139223], [-118.3999580209158, 33.802096988835174], [-118.39856601041953, 33.80215801885169], [-118.39618799687307, 33.803360994133065], [-118.39471900000021, 33.80348299912719], [-118.3940910000001, 33.80428599912713], [-118.39190700000013, 33.804214999127026]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Palos Verdes Estates", "metadata": {"sqmi": 4.72720407914, "type": "standalone-city", "name": "Palos Verdes Estates", "slug": "palos-verdes-estates"}, "cases": 37.0, "population": 0.1352190914738881, "external_id": "palos-verdes-estates", "slug": "palos-verdes-estates-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/palos-verdes-estates-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.42831500000011, 34.222202999121826], [-118.42781500000011, 34.221702999121845], [-118.42281500000016, 34.221702999121845], [-118.427215, 34.20730399912194], [-118.448916, 34.21170399912189], [-118.466216, 34.214903999121866], [-118.46611600000016, 34.21540399912202], [-118.4663160000001, 34.217403999121956], [-118.467616, 34.22110299912187], [-118.459516, 34.221202999121815], [-118.459916, 34.22200299912176], [-118.45971600000011, 34.224602999121814], [-118.45841600000011, 34.229702999121734], [-118.456716, 34.23940299912167], [-118.455616, 34.24270299912168], [-118.45311600000014, 34.24610299912159], [-118.451816, 34.25000299912155], [-118.451816, 34.25170199912146], [-118.45011600000012, 34.25000299912159], [-118.440816, 34.23660299912161], [-118.435815, 34.22990299912176], [-118.42831500000011, 34.222202999121826]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Panorama City", "metadata": {"sqmi": 3.64799571506, "type": "segment-of-a-city", "name": "Panorama City", "slug": "panorama-city"}, "cases": 311.0, "population": 0.7524982457838322, "external_id": "panorama-city", "slug": "panorama-city-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/panorama-city-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.16965700000024, 33.91442399912568], [-118.16960800000014, 33.913954999125664], [-118.17035400000017, 33.914286999125714], [-118.17067000000014, 33.91381599912577], [-118.17047000000017, 33.913674999125654], [-118.17047000000017, 33.91311499912572], [-118.1728030000002, 33.91311499912572], [-118.17276400000016, 33.91282999912564], [-118.17330200000019, 33.912815999125684], [-118.17330600000011, 33.91182199912567], [-118.17051400000011, 33.91183999912574], [-118.1705510000002, 33.91226199912569], [-118.16819800000027, 33.91228299912573], [-118.168386, 33.91404699912572], [-118.16815200000022, 33.9140659991257], [-118.16814700000018, 33.91423199912569], [-118.1641080000002, 33.91234799912572], [-118.16386400000017, 33.91232399912575], [-118.16386300000012, 33.912601999125755], [-118.163402, 33.9123439991257], [-118.16238900000025, 33.91235099912571], [-118.16095800000022, 33.91169699912576], [-118.16020600000014, 33.91123799912566], [-118.16015000000017, 33.910469999125716], [-118.15900700000016, 33.9099639991257], [-118.15858800000011, 33.91122999912566], [-118.15837900000017, 33.9126139991257], [-118.158072, 33.91279699912572], [-118.15784900000021, 33.91361699912568], [-118.15841100000017, 33.913897999125645], [-118.156126, 33.91699099912562], [-118.14928800000018, 33.91373499912564], [-118.15329200000018, 33.907272999125766], [-118.15145700000025, 33.90638999912581], [-118.15147100000023, 33.90621199912583], [-118.15103800000023, 33.9061899991258], [-118.1475210000003, 33.9044849991258], [-118.145316, 33.90378499912583], [-118.145286, 33.90352299912586], [-118.14273400000016, 33.902454999125865], [-118.14257400000025, 33.889196999125964], [-118.14697100000015, 33.889179999125965], [-118.146901, 33.88641499912616], [-118.14710400000024, 33.88200999912611], [-118.146878, 33.879871999126095], [-118.14996200000017, 33.87987799912619], [-118.15129400000018, 33.87971699912616], [-118.15131500000021, 33.881986999126106], [-118.17742700000022, 33.88185699912621], [-118.17743500000017, 33.88535899912612], [-118.18577800000021, 33.885441999126], [-118.18760100000014, 33.8854029991261], [-118.18762900000013, 33.88522999912612], [-118.1882070000001, 33.885223999126005], [-118.18689700000013, 33.892419999126], [-118.18429900000012, 33.89251899912604], [-118.18416900000031, 33.88913699912604], [-118.1824020000003, 33.88910599912613], [-118.17996200000019, 33.89253699912598], [-118.18159000000014, 33.892544999125946], [-118.1816870000002, 33.894264999126], [-118.18235600000023, 33.89425199912585], [-118.182306, 33.89621199912588], [-118.18589600000017, 33.89623399912592], [-118.18610000000017, 33.89485799912598], [-118.18765000000022, 33.89486599912591], [-118.186885, 33.89947199912589], [-118.18666200000015, 33.902577999125846], [-118.18692700000013, 33.903108999125834], [-118.18778349211664, 33.9034452914025], [-118.18778742131504, 33.903614337266845], [-118.18677100000019, 33.9036719991259], [-118.186674107871, 33.90445111907156], [-118.18497700000017, 33.90540499912577], [-118.18389300000017, 33.90638399912574], [-118.183158, 33.90598499912583], [-118.18141600000014, 33.90809999912576], [-118.180507, 33.91006799912571], [-118.178709, 33.918591999125674], [-118.17665300000014, 33.918312999125654], [-118.17518800000015, 33.91749599912567], [-118.169459, 33.91485499912573], [-118.16965700000024, 33.91442399912568]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Paramount", "metadata": {"sqmi": 4.85462717726, "type": "standalone-city", "name": "Paramount", "slug": "paramount"}, "cases": 136.0, "population": 0.5602240896358543, "external_id": "paramount", "slug": "paramount-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/paramount-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.195574, 34.251904999121585], [-118.18684200000014, 34.25158599912156], [-118.186915, 34.23750799912175], [-118.186717, 34.23430499912185], [-118.186403, 34.233565999121765], [-118.18684100000011, 34.232151999121875], [-118.18666400000015, 34.223020999122056], [-118.18348200000011, 34.22310799912194], [-118.183434, 34.22240399912196], [-118.17767400000012, 34.222451999122036], [-118.17730497928919, 34.21540400059519], [-118.17440198557983, 34.21508800371352], [-118.17059298600074, 34.21530400213581], [-118.16791798591431, 34.21529600429636], [-118.16780198550059, 34.21514100444365], [-118.166979986333, 34.21546200048891], [-118.16685897894678, 34.21531700144242], [-118.16286298586908, 34.215219004448144], [-118.16425397183312, 34.21396000599335], [-118.16477697183436, 34.212673005991704], [-118.1646299718341, 34.21256000599155], [-118.16482399078522, 34.212348005207154], [-118.1650039812646, 34.21244599891342], [-118.16564698582394, 34.21156900459422], [-118.1667449798812, 34.211611000104504], [-118.16699197183794, 34.21090800598991], [-118.16590497183675, 34.210304005988945], [-118.16580497183735, 34.2081040059861], [-118.16550797183692, 34.2079970059859], [-118.16551697183715, 34.207177005984846], [-118.16364997909149, 34.20470200494947], [-118.16335298562791, 34.20479600186442], [-118.16315697893245, 34.20438400148185], [-118.16276098587979, 34.20437600440743], [-118.16290097183465, 34.20394800597992], [-118.16160197883006, 34.20184400189516], [-118.16076298594635, 34.20186000412834], [-118.1611169718331, 34.20127600597615], [-118.16000197183196, 34.20012600597445], [-118.16052498409618, 34.1987750072498], [-118.1634449718369, 34.19971300597462], [-118.16257798601009, 34.20164300367801], [-118.16425097943664, 34.20145500241648], [-118.16579897184069, 34.19804200597302], [-118.1667979718428, 34.196220005970915], [-118.16748597184404, 34.195297005969806], [-118.16845497184602, 34.19325000596751], [-118.16849097184637, 34.19244500596642], [-118.167480971845, 34.19212000596568], [-118.1676269718455, 34.191590005965125], [-118.16650297184388, 34.19123300596434], [-118.16687199057262, 34.19025600484962], [-118.16750697268225, 34.19057099493437], [-118.16767098556689, 34.18840900724118], [-118.16829598594309, 34.18849700075579], [-118.16833997184679, 34.19047000596368], [-118.16859197184696, 34.19067400596409], [-118.16921797184736, 34.192461005966685], [-118.1704109753016, 34.19120900875418], [-118.17060098520584, 34.19056100665164], [-118.17088797934692, 34.190605997994524], [-118.17090097796073, 34.19020500354393], [-118.171799978981, 34.18939400135572], [-118.16872198587582, 34.1893110044306], [-118.16873398593377, 34.18544500420959], [-118.16971397185041, 34.18548000595771], [-118.17034697185096, 34.18603700595854], [-118.17082597185214, 34.18475300595689], [-118.17026197185156, 34.18410100595589], [-118.170460971852, 34.183745005955615], [-118.16958397185148, 34.1814050059524], [-118.1690429788288, 34.18107800396836], [-118.16747498591961, 34.181430002517814], [-118.16745797184798, 34.183075005954024], [-118.16412898592905, 34.183086004214644], [-118.16411697886731, 34.18160400174925], [-118.16299398593166, 34.18161100419992], [-118.16299297888581, 34.18144900166734], [-118.1501039859879, 34.181805001592814], [-118.14266698589729, 34.18179300427988], [-118.13210898496514, 34.177036003023474], [-118.13188397180068, 34.177066005937874], [-118.13190797875751, 34.17650700215652], [-118.12870898580893, 34.1765660045418], [-118.12863097873127, 34.17522900233142], [-118.12253798589958, 34.175209004208114], [-118.1225229859752, 34.175510000007584], [-118.1212529859925, 34.17554700350271], [-118.12124997876478, 34.1753340020422], [-118.11885998594165, 34.175416003986456], [-118.11877498615786, 34.17593700003496], [-118.11735798563585, 34.17586300494619], [-118.11735398047955, 34.174983006992804], [-118.11662098479427, 34.175419000685245], [-118.11660399954869, 34.17364203097555], [-118.11720497859258, 34.17375400048918], [-118.11698097178183, 34.171393005927115], [-118.11710297880164, 34.16960600183013], [-118.11302298591059, 34.16963600412631], [-118.11301398588526, 34.17033900029009], [-118.1111989717741, 34.170368005924445], [-118.11087997177378, 34.17011700592395], [-118.11100697177426, 34.16914400592278], [-118.11178997871633, 34.169143000426146], [-118.11178597877692, 34.16859600192676], [-118.10923398587192, 34.16864500427829], [-118.10920497880858, 34.16765000176109], [-118.09833998588695, 34.16770900418358], [-118.09831898591035, 34.16883899997218], [-118.09780198588373, 34.16883900506983], [-118.0978029858629, 34.16913800010005], [-118.09590098590475, 34.16916800409419], [-118.09600198515562, 34.169405999972106], [-118.09520198587617, 34.16940600422026], [-118.09551698608256, 34.17008400313336], [-118.09490298566956, 34.17029100190975], [-118.09504298556314, 34.17084700142609], [-118.0954349861295, 34.17070800323654], [-118.09565998549617, 34.171172001645935], [-118.09597298607822, 34.17106700312373], [-118.09650197175299, 34.17220500592326], [-118.0961079717523, 34.173051005924364], [-118.09611497175199, 34.17414200592578], [-118.09597698711109, 34.174515998922224], [-118.09578998596234, 34.17449500627511], [-118.09578597175123, 34.17486800592672], [-118.0954069858874, 34.175706004174174], [-118.0982559858651, 34.175685000876065], [-118.10028797175566, 34.18037100593489], [-118.10039497175477, 34.18332800593869], [-118.10066597175505, 34.18367100593915], [-118.10157097175613, 34.18416100594003], [-118.10224297175684, 34.18476900594101], [-118.10194697175622, 34.185270005941604], [-118.10226098583992, 34.18560400438294], [-118.10303198591734, 34.185620000681645], [-118.10306097175712, 34.18737600594459], [-118.10456997175883, 34.18848000594647], [-118.10457898783716, 34.18998300495603], [-118.10408198392082, 34.190385000114865], [-118.1048859717585, 34.19078600594938], [-118.10478797175824, 34.19118600594999], [-118.10691897176046, 34.193296005953115], [-118.10486299337596, 34.19337300137353], [-118.10470299382779, 34.19480500893736], [-118.104926, 34.19683999912225], [-118.101654, 34.196929999122226], [-118.10114600000017, 34.19724699912224], [-118.1012240000002, 34.19682999912225], [-118.10110379547909, 34.1967810076846], [-118.08227272692302, 34.1969349889967], [-118.0827727760264, 34.17908114152165], [-118.06597810318604, 34.179160912968285], [-118.06567700000018, 34.17595099912251], [-118.06587700000013, 34.17530599912254], [-118.06547900000018, 34.17260999912255], [-118.0682000000001, 34.17300899912259], [-118.06782399323531, 34.15028700491917], [-118.07342397872847, 34.150214001077536], [-118.07339199920153, 34.1477650246984], [-118.07371898602842, 34.14786200133109], [-118.07775597869296, 34.14739700171513], [-118.07773698567608, 34.14661900477555], [-118.07796198019723, 34.14663799916627], [-118.07810498588088, 34.14625800413966], [-118.07957897821855, 34.14624800049933], [-118.07923098587428, 34.144763004171935], [-118.07988298586466, 34.14476100083491], [-118.07986098587239, 34.14524100418191], [-118.08043798586704, 34.14524000082553], [-118.08049798571051, 34.14572700469695], [-118.08250198577494, 34.145720001502674], [-118.08250498588383, 34.146230004141394], [-118.08459697878388, 34.14621400051289], [-118.08459398589171, 34.14574700411201], [-118.08639197907159, 34.14554600053652], [-118.08643098588944, 34.14519600412914], [-118.08696597751259, 34.145191000551684], [-118.08670897881159, 34.144707001658894], [-118.0832699858707, 34.14470600419959], [-118.08350097879129, 34.142220001733705], [-118.07895998587962, 34.142250004147286], [-118.07892198588114, 34.139609004139544], [-118.08152198586025, 34.139591000860676], [-118.08152898587794, 34.140472004162525], [-118.08307998586619, 34.140466000839325], [-118.08368697174588, 34.14084100587969], [-118.08321797174537, 34.14032400587896], [-118.08381897174846, 34.13371800587049], [-118.08399398587281, 34.133008004190025], [-118.08600697878207, 34.13301000037235], [-118.08598598583363, 34.1314320056985], [-118.08749598577815, 34.13127500168262], [-118.08750698588814, 34.13369100413545], [-118.08969898586857, 34.133676000852354], [-118.08976798585576, 34.135159004274925], [-118.09428798081042, 34.135215999670805], [-118.09451800000012, 34.136854999122995], [-118.09520200000016, 34.13680699912296], [-118.09526209549469, 34.14020723805522], [-118.09568600000019, 34.14020499912291], [-118.09578000000015, 34.14176899912294], [-118.097414, 34.14190899912299], [-118.09870700000012, 34.14180599912285], [-118.098709, 34.1415089991229], [-118.09968200000019, 34.14145599912283], [-118.09967000000019, 34.140671999122894], [-118.10051100000018, 34.14066699912291], [-118.10051679146703, 34.141395758698316], [-118.10294900000012, 34.14127199912292], [-118.10283400000016, 34.141802999122945], [-118.1032660000002, 34.141913999122856], [-118.10616200000028, 34.14190799912285], [-118.10615100000017, 34.14081799912294], [-118.1082960000002, 34.14080599912291], [-118.10830525924145, 34.14154859026965], [-118.11003064903649, 34.14153616752377], [-118.11002810873477, 34.14118292581985], [-118.11048300000017, 34.14117099912305], [-118.1105110000001, 34.14020699912291], [-118.11017300000017, 34.14018099912292], [-118.11034500000018, 34.13840499912297], [-118.11073200000031, 34.13841099912297], [-118.110742, 34.13804199912288], [-118.11028700000027, 34.137751999122955], [-118.11016100000032, 34.13680799912303], [-118.11429200000018, 34.136857999122974], [-118.11429000000018, 34.13616699912302], [-118.114003, 34.136169999122956], [-118.11411100000016, 34.13292299912301], [-118.11912200000016, 34.13260699912299], [-118.11959700000016, 34.13240599912304], [-118.1217070000001, 34.132113999123035], [-118.12610100000015, 34.1309349991231], [-118.13124900000015, 34.12978999912297], [-118.13099800000012, 34.129393999122975], [-118.13113000000016, 34.12859399912303], [-118.13082500000014, 34.128145999123085], [-118.13077000000018, 34.127452999123015], [-118.131159, 34.12646299912308], [-118.13077900000015, 34.126152999123114], [-118.13006500000012, 34.1240499991232], [-118.12906100000025, 34.1230259991231], [-118.12921000000023, 34.12213299912315], [-118.12944100000013, 34.12205599912318], [-118.12958400000018, 34.121685999123166], [-118.129351, 34.12134999912322], [-118.129016, 34.12127399912312], [-118.128931, 34.1209679991232], [-118.12873400000012, 34.12097199912322], [-118.12856300000018, 34.12023299912312], [-118.1282970000002, 34.12021899912317], [-118.12807300000023, 34.119415999123156], [-118.12832500000016, 34.119335999123166], [-118.12797000000019, 34.1179479991232], [-118.13076000000012, 34.1173309991232], [-118.133192, 34.11727699912326], [-118.136203, 34.11791699912325], [-118.140158, 34.119505999123284], [-118.14216300000017, 34.11948399912316], [-118.14331200000014, 34.1202259991232], [-118.14370700000018, 34.120998999123195], [-118.14345400000013, 34.12149799912305], [-118.14384100000017, 34.1213089991232], [-118.143702, 34.12158299912317], [-118.1443480000002, 34.1218109991231], [-118.14434300000013, 34.12261699912307], [-118.14597300000023, 34.124487999123154], [-118.14575700000016, 34.12360499912312], [-118.146058, 34.12363399912309], [-118.14782200000013, 34.12505599912308], [-118.14913800000015, 34.12574299912308], [-118.15027100000015, 34.1240369991231], [-118.15100600000012, 34.124031999123105], [-118.15100300000027, 34.123914999123066], [-118.15993600000014, 34.1237529991231], [-118.15962600000015, 34.1240039991231], [-118.163195, 34.124023999123125], [-118.16321100000029, 34.123594999123135], [-118.16554000000016, 34.123694999123174], [-118.16546600000018, 34.12401099912314], [-118.16580200000016, 34.12404399912313], [-118.16845400000011, 34.123913999123175], [-118.16779200000016, 34.124766999123025], [-118.167213, 34.1246559991232], [-118.16558700000014, 34.12546699912314], [-118.16586700000013, 34.12623799912312], [-118.16722100000017, 34.12588499912307], [-118.170328, 34.12694499912313], [-118.1714170000002, 34.12630799912309], [-118.17229900000012, 34.126081999123116], [-118.17253900000016, 34.1257869991231], [-118.1729360000002, 34.1258129991231], [-118.172804, 34.12477099912308], [-118.17695500000013, 34.123140999123116], [-118.1765410000002, 34.12662399912322], [-118.1777960000002, 34.126876999123084], [-118.17783300000015, 34.12665799912311], [-118.17858300000013, 34.12671999912304], [-118.18019300000019, 34.126424999123074], [-118.18089600000022, 34.12833099912316], [-118.18149500000023, 34.128029999123115], [-118.18134000000015, 34.12949799912307], [-118.18258000000019, 34.12918599912314], [-118.18284000000017, 34.12974999912312], [-118.182817, 34.13121099912297], [-118.1860970000002, 34.133731999122986], [-118.185531, 34.134725999123], [-118.18520600000012, 34.136067999122965], [-118.18588700000014, 34.13618299912301], [-118.185686, 34.136661999123014], [-118.185796, 34.13736799912296], [-118.185524, 34.13733499912301], [-118.18552600000017, 34.13856599912292], [-118.18539500000013, 34.13884099912296], [-118.18567200000012, 34.13885399912288], [-118.18568300000017, 34.139032999122946], [-118.18489300000017, 34.13955299912297], [-118.18434200000011, 34.13940699912294], [-118.18312800000025, 34.14025999912299], [-118.18195600000014, 34.140635999122914], [-118.18019800000016, 34.140817999123016], [-118.180082, 34.141090999123], [-118.18075700000028, 34.14129999912293], [-118.181164, 34.14219899912285], [-118.18220600000014, 34.14306099912286], [-118.18218000000016, 34.143396999122906], [-118.1824350000002, 34.143954999122975], [-118.18456100000024, 34.14540099912283], [-118.18421300000024, 34.14627999912283], [-118.18386900000017, 34.148556999122796], [-118.1824470000003, 34.14856199912283], [-118.1820050000002, 34.1502029991228], [-118.18436000000015, 34.16010699912274], [-118.184956, 34.160059999122666], [-118.18736200000026, 34.16488499912268], [-118.1886560000002, 34.165248999122596], [-118.18812600000011, 34.16638699912255], [-118.189083, 34.168847999122605], [-118.18958600000013, 34.168770999122636], [-118.190811, 34.17205099912252], [-118.19109800000018, 34.17413499912259], [-118.190447, 34.1747019991225], [-118.1888140000002, 34.177915999122405], [-118.18731700000016, 34.17947599912243], [-118.18442500000019, 34.17969299912246], [-118.18400700000011, 34.179773999122396], [-118.18336700000022, 34.180235999122445], [-118.18221500000017, 34.17988499912248], [-118.18155000000016, 34.179505999122405], [-118.18117200000027, 34.18001599912244], [-118.18013500000016, 34.18075499912252], [-118.17618500000012, 34.18184799912239], [-118.176282, 34.18215299912241], [-118.17417, 34.18288699912232], [-118.17462600000019, 34.183662999122326], [-118.1754460000002, 34.18404099912229], [-118.17572800000019, 34.18530499912236], [-118.1759880000002, 34.18550499912242], [-118.17660500000015, 34.185804999122304], [-118.17743700000018, 34.18561699912237], [-118.17892500000019, 34.18567099912231], [-118.18071500000016, 34.186428999122434], [-118.18030500000017, 34.18740499912237], [-118.17975500000031, 34.1873609991224], [-118.17875700000013, 34.1869519991224], [-118.17831400000014, 34.18652199912237], [-118.17874000000012, 34.18712899912245], [-118.17889900000016, 34.18794799912235], [-118.17833700000021, 34.189454999122326], [-118.178293, 34.19276099912227], [-118.17791400000021, 34.19391199912222], [-118.17797200000031, 34.19421599912235], [-118.17781000000011, 34.194149999122246], [-118.1774020000002, 34.194923999122196], [-118.176021, 34.19661099912222], [-118.17545700000016, 34.1976789991223], [-118.17316000000017, 34.19768699912226], [-118.17407900000016, 34.19663899912224], [-118.172205, 34.19690499912237], [-118.17172900000016, 34.19855099912214], [-118.17131200000024, 34.19832099912237], [-118.16930500000012, 34.20150399912216], [-118.1689050000002, 34.2038039991222], [-118.17100500000022, 34.20390399912218], [-118.17100500000022, 34.2046019991221], [-118.1727060000001, 34.2046019991221], [-118.17265400000024, 34.20545999912215], [-118.17225800000031, 34.205768999122135], [-118.17243800000024, 34.20593499912215], [-118.17263200000019, 34.20574299912205], [-118.17302500000027, 34.20596399912214], [-118.17361200000015, 34.205574999122156], [-118.17357500000021, 34.206211999122054], [-118.17391700000016, 34.20641299912214], [-118.17386400000012, 34.20683299912209], [-118.17399100000017, 34.206818999122085], [-118.1742790000002, 34.20603899912215], [-118.17504300000013, 34.20564499912213], [-118.17564400000012, 34.20578099912218], [-118.175762, 34.20608599912214], [-118.17554400000013, 34.20683399912206], [-118.17593000000015, 34.20771099912203], [-118.17595900000029, 34.208203999122084], [-118.17654600000017, 34.20922399912215], [-118.17662800000019, 34.2108309991221], [-118.17639400000022, 34.21104599912203], [-118.1759310000001, 34.21112699912216], [-118.17550500000023, 34.21100399912204], [-118.17560600000023, 34.21080199912208], [-118.1754210000001, 34.21068399912205], [-118.17451000000018, 34.211431999122105], [-118.175578, 34.21240899912215], [-118.17596200000013, 34.21240899912212], [-118.17607800000029, 34.21183999912206], [-118.17653200000026, 34.21183799912203], [-118.17639900000027, 34.21248999912207], [-118.1773190000002, 34.21230599912197], [-118.17794700000029, 34.213053999122025], [-118.177699, 34.21321199912213], [-118.17834000000032, 34.21380299912201], [-118.17812700000027, 34.21381399912208], [-118.17848700000019, 34.214345999121996], [-118.17980900000025, 34.2147809991221], [-118.17985100000017, 34.21562799912208], [-118.18033700000015, 34.215896999122], [-118.1812050000002, 34.21521999912205], [-118.18248300000013, 34.215696999121974], [-118.18410400000016, 34.21604399912199], [-118.18358500000019, 34.216401999121985], [-118.18347800000015, 34.21807799912189], [-118.18290200000014, 34.21844799912198], [-118.18151500000027, 34.218496999121946], [-118.180406, 34.21800399912196], [-118.18116400000017, 34.219822999121945], [-118.18219100000016, 34.220580999122], [-118.18450600000017, 34.221103999121894], [-118.18450600000017, 34.22260399912192], [-118.18813400000019, 34.22260099912199], [-118.18804800000015, 34.22288699912193], [-118.18817900000016, 34.223227999121896], [-118.18999100000023, 34.22391199912191], [-118.18996600000018, 34.22456599912184], [-118.19048800000019, 34.22462199912187], [-118.19103500000016, 34.22550499912196], [-118.19083200000017, 34.22604399912197], [-118.191206, 34.226702999121926], [-118.19020600000022, 34.228102999121845], [-118.19050600000025, 34.228602999121904], [-118.189906, 34.231102999121866], [-118.1946060000002, 34.23350299912184], [-118.19571100000016, 34.23359499912183], [-118.19630600000026, 34.23456499912185], [-118.19764100000013, 34.23484999912176], [-118.198139, 34.23630199912173], [-118.19777000000015, 34.23750499912179], [-118.19550100000014, 34.23739099912178], [-118.19578000000014, 34.25185499912159], [-118.195574, 34.251904999121585]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Pasadena", "metadata": {"sqmi": 25.1460636976, "type": "standalone-city", "name": "Pasadena", "slug": "pasadena"}, "cases": 406.0, "population": 1.0, "external_id": "pasadena", "slug": "pasadena-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/pasadena-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.04687300000028, 34.02077199912442], [-118.04731900000023, 34.02052699912444], [-118.04710000000023, 34.02011099912433], [-118.04876500000015, 34.018556999124435], [-118.04893900000026, 34.01867199912441], [-118.05093100000019, 34.01670799912437], [-118.05268800000029, 34.01788699912442], [-118.05412500000017, 34.016723999124395], [-118.05415300000018, 34.01789199912438], [-118.05461400000017, 34.017430999124464], [-118.0557840000002, 34.01814699912439], [-118.05568100000019, 34.018258999124434], [-118.05675900000016, 34.01849299912448], [-118.0591030000001, 34.01793299912452], [-118.05944700000015, 34.017298999124456], [-118.05626200000015, 34.015137999124434], [-118.05743200000032, 34.01428399912446], [-118.05647900000017, 34.012773999124505], [-118.05663200000019, 34.01217299912452], [-118.05686100000013, 34.01264799912454], [-118.05764238179341, 34.01317948500949], [-118.0581029622927, 34.01310056280931], [-118.05878930758678, 34.01259650130915], [-118.06214500000013, 34.012197999124616], [-118.06498896714508, 34.0095772430908], [-118.06192175728435, 34.00750552818248], [-118.0600820000002, 34.008796999124534], [-118.05982700000013, 34.00883599912455], [-118.05902528613937, 34.00812133421496], [-118.06096600000025, 34.00653499912454], [-118.06201500000017, 34.005293999124575], [-118.06218400000016, 34.00541999912468], [-118.06531500000017, 34.00281899912465], [-118.06660000000022, 34.00109799912462], [-118.06846700000014, 34.000919999124605], [-118.06888500000017, 33.99986999912462], [-118.06839100000012, 33.999135999124654], [-118.06852000000015, 33.99837099912467], [-118.06819952116513, 33.998094956061315], [-118.0687820000002, 33.998462999124705], [-118.07008900000014, 33.99885699912471], [-118.071371, 33.99559699912469], [-118.07029800000018, 33.9948579991247], [-118.07071900000017, 33.994428999124736], [-118.07136200000019, 33.9948579991247], [-118.07219900000017, 33.99367799912475], [-118.07242099275217, 33.99233100387046], [-118.07309398603046, 33.99231000146116], [-118.07327000000028, 33.991760999124686], [-118.07300800000016, 33.99151799912477], [-118.0754239912279, 33.98531600846909], [-118.07586698811905, 33.98548499744313], [-118.07689, 33.983299999124846], [-118.07999800000015, 33.97906699912502], [-118.08278800000015, 33.97549899912502], [-118.08868400000011, 33.96857599912508], [-118.08909500000013, 33.967129999125135], [-118.08771500000012, 33.96669799912506], [-118.08847000000013, 33.966650999125], [-118.08903200000012, 33.96681999912507], [-118.08686100000013, 33.96177599912516], [-118.08673600000022, 33.96092999912525], [-118.08690700000015, 33.9600279991252], [-118.08748700000015, 33.958752999125196], [-118.08951100000023, 33.95537099912513], [-118.09189100000017, 33.95229799912524], [-118.09314200000019, 33.95096099912527], [-118.09336900000011, 33.950361999125356], [-118.09663900000014, 33.95177299912521], [-118.11050700000014, 33.96132899912513], [-118.1189190000003, 33.970547999124946], [-118.1232380000001, 33.97491199912494], [-118.12056600000012, 33.975244999124925], [-118.11883700000018, 33.97525099912496], [-118.11596800000031, 33.97975699912489], [-118.11544600000018, 33.98103299912484], [-118.115212, 33.98120599912489], [-118.11484200000015, 33.983216999124856], [-118.11453900000018, 33.98397299912483], [-118.11419500000014, 33.98617799912478], [-118.11432800000019, 33.98659799912476], [-118.11398100000014, 33.987286999124706], [-118.11379700000015, 33.987234999124816], [-118.11057800000016, 33.99123999912477], [-118.11165400000023, 33.99184099912481], [-118.11039100000016, 33.99350699912471], [-118.11003900000014, 33.99394799912476], [-118.10883500000023, 33.993294999124764], [-118.10765100000015, 33.994688999124726], [-118.10737600000023, 33.994621999124675], [-118.10672100000016, 33.99492599912472], [-118.10509000000032, 33.99719799912464], [-118.10478600000019, 33.997201999124705], [-118.10434500000022, 33.99767399912458], [-118.10428300000014, 33.998531999124666], [-118.10366600000026, 33.9997899991246], [-118.097289, 34.00149199912457], [-118.09655500000014, 34.00412899912449], [-118.096201, 34.007661999124515], [-118.09586100000014, 34.00839299912445], [-118.09534400000021, 34.0104569991246], [-118.09444000000025, 34.011667999124555], [-118.09273200000028, 34.013394999124515], [-118.0929350000002, 34.0135719991245], [-118.092288, 34.0141639991244], [-118.085124, 34.019102999124414], [-118.08483800000029, 34.01883499912442], [-118.08385700000021, 34.01954499912442], [-118.08001800000017, 34.01803099912445], [-118.07952400000012, 34.01820499912443], [-118.07932800000012, 34.01776499912453], [-118.07928700000018, 34.01691099912439], [-118.07866200000015, 34.01694299912437], [-118.07837700000019, 34.01748499912447], [-118.075008, 34.01936599912435], [-118.0743590000001, 34.02037599912433], [-118.06988800000019, 34.020825999124504], [-118.06979000000015, 34.02044699912443], [-118.06148600000017, 34.021023999124395], [-118.06090500000019, 34.02121399912446], [-118.06116200000021, 34.021718999124396], [-118.05932200000017, 34.02191699912439], [-118.0565310000003, 34.02055899912442], [-118.05598000000018, 34.02051099912443], [-118.05543300000011, 34.02114699912435], [-118.05464800000013, 34.0206299991244], [-118.05425000000018, 34.02065599912442], [-118.05379400000011, 34.02166499912444], [-118.05307400000014, 34.02418299912438], [-118.05202400000013, 34.02634299912434], [-118.05012900000025, 34.02822899912436], [-118.049026, 34.0288469991243], [-118.04712100000019, 34.02876399912426], [-118.044279, 34.0269599991243], [-118.04068600000014, 34.02639999912433], [-118.040001, 34.0257709991245], [-118.04421700000016, 34.023130999124355], [-118.04468200000017, 34.02187999912435], [-118.04426100000026, 34.02159299912439], [-118.04472000000018, 34.02114699912435], [-118.04687300000028, 34.02077199912442]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Pico Rivera", "metadata": {"sqmi": 8.7868828889, "type": "standalone-city", "name": "Pico Rivera", "slug": "pico-rivera"}, "cases": 183.0, "population": 0.6428496153440826, "external_id": "pico-rivera", "slug": "pico-rivera-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/pico-rivera-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.37733, 34.062953999123835], [-118.377266, 34.059383999123924], [-118.37631, 34.059452684055366], [-118.37611000000011, 34.04690999912396], [-118.37681000000013, 34.04450999912405], [-118.38311000000013, 34.04560999912394], [-118.38511100000014, 34.04640999912406], [-118.38611100000011, 34.04660999912396], [-118.385411, 34.04880999912388], [-118.38951100000013, 34.04950999912385], [-118.38961100000014, 34.052309999123885], [-118.397711, 34.052309999123935], [-118.401531, 34.0519669991239], [-118.406541, 34.05229699912386], [-118.405484, 34.05284699912398], [-118.406122, 34.05414499912391], [-118.405562, 34.054140999123824], [-118.40556200000012, 34.05431199912391], [-118.405285, 34.054401999124046], [-118.405452, 34.054860999123946], [-118.405929, 34.05482999912397], [-118.405922, 34.0571039991239], [-118.403993, 34.0571009991239], [-118.40345500000012, 34.057022999123866], [-118.403261, 34.056830999123875], [-118.402927, 34.05705499912389], [-118.40277100000012, 34.056886999124046], [-118.402463, 34.05709899912391], [-118.40218300000011, 34.05709899912396], [-118.402371, 34.056995999123835], [-118.40227, 34.05688599912402], [-118.40188200000011, 34.05709799912388], [-118.401556, 34.05709899912396], [-118.40167900000016, 34.057028999123894], [-118.401584, 34.05691499912384], [-118.401271, 34.05709799912388], [-118.400751, 34.05709799912388], [-118.400907, 34.05699699912397], [-118.400785, 34.056866999123905], [-118.400428, 34.057096999123914], [-118.400002, 34.05687699912388], [-118.39971300000013, 34.05709599912394], [-118.383666, 34.05709899912391], [-118.383534, 34.062936999123885], [-118.37733, 34.062953999123835]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Pico-Robertson", "metadata": {"sqmi": 1.03155644743, "type": "segment-of-a-city", "name": "Pico-Robertson", "slug": "pico-robertson"}, "cases": 64.0, "population": 0.11368077018721802, "external_id": "pico-robertson", "slug": "pico-robertson-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/pico-robertson-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.2969080000001, 34.05291099912399], [-118.292708, 34.05291099912394], [-118.29160800000012, 34.05251099912384], [-118.28650800000014, 34.05251099912384], [-118.2823740000001, 34.05279599912393], [-118.281008, 34.052410999123985], [-118.27860800000013, 34.05141099912389], [-118.268507, 34.04681199912396], [-118.27120700000015, 34.04511199912397], [-118.272807, 34.04291199912408], [-118.27360100000013, 34.04113399912407], [-118.274007, 34.038411999124044], [-118.27410700000011, 34.03541199912403], [-118.27930700000012, 34.03781199912416], [-118.28400800000016, 34.03691199912411], [-118.291508, 34.03681199912407], [-118.30040800000012, 34.03731199912409], [-118.300408, 34.04001099912401], [-118.3009080000001, 34.040110999124195], [-118.300808, 34.043810999124034], [-118.30030800000013, 34.04391099912411], [-118.30040800000012, 34.04561099912404], [-118.300008, 34.047410999123926], [-118.30001200000015, 34.052907999124], [-118.2969080000001, 34.05291099912399]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Pico-Union", "metadata": {"sqmi": 1.66946888734, "type": "segment-of-a-city", "name": "Pico-Union", "slug": "pico-union"}, "cases": 238.0, "population": 0.4184173977250752, "external_id": "pico-union", "slug": "pico-union-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/pico-union-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.42811, 33.968611999125066], [-118.42561, 33.96551199912489], [-118.42531, 33.9654119991251], [-118.426958, 33.96490799912495], [-118.43011, 33.96681199912494], [-118.43261, 33.965911999124884], [-118.43830500000011, 33.96345099912506], [-118.438062, 33.9630729991252], [-118.43758, 33.96304899912506], [-118.43571, 33.963611999125064], [-118.43441, 33.96421199912499], [-118.43271000000016, 33.964611999125054], [-118.43121, 33.96371199912508], [-118.42901, 33.96371199912508], [-118.42821, 33.962011999124975], [-118.42851, 33.96051199912507], [-118.431071, 33.96051199912497], [-118.431026, 33.9596959991252], [-118.432713, 33.9596959991252], [-118.43281, 33.958611999125125], [-118.43401, 33.958011999125006], [-118.432971, 33.956854999125134], [-118.431404, 33.956194999125174], [-118.431882, 33.95552199912518], [-118.431453, 33.95515499912515], [-118.43111900000012, 33.95440899912509], [-118.43105900000015, 33.952192999125046], [-118.4312, 33.951604999125095], [-118.431797, 33.95085699912514], [-118.431347, 33.95024199912523], [-118.433894, 33.94985999912522], [-118.4360499999999, 33.949722999125264], [-118.437731, 33.949156999125165], [-118.436341, 33.94686699912526], [-118.4360570000001, 33.9457869991252], [-118.43601400000014, 33.94411699912526], [-118.43546500000011, 33.9423189991252], [-118.430182, 33.93328199912547], [-118.429736, 33.932099999125334], [-118.42971000000016, 33.930711999125464], [-118.42876375034297, 33.93072699909022], [-118.42875400000011, 33.927200999125674], [-118.427667, 33.92720299912558], [-118.42766, 33.92358199912556], [-118.426574, 33.9235829991256], [-118.42657100000012, 33.92176899912557], [-118.424396, 33.9217699991257], [-118.424391, 33.91995799912558], [-118.422222, 33.91995699912571], [-118.422221, 33.916328999125646], [-118.429447, 33.916317999125695], [-118.429815, 33.91672699912561], [-118.43013647438032, 33.91676320708827], [-118.43203497667035, 33.92083199071059], [-118.4343310205914, 33.924707975488666], [-118.43665400189889, 33.930073987073726], [-118.4369609934041, 33.93040202341212], [-118.43771897568607, 33.93216000355869], [-118.43831801686494, 33.933087975481385], [-118.44057202373146, 33.93810201223033], [-118.44192499606189, 33.9403670150222], [-118.44258801353382, 33.94068900097098], [-118.4452319811606, 33.94595899550434], [-118.44802000067118, 33.95030501663329], [-118.4488220192668, 33.952145019017394], [-118.45073399498091, 33.95524897408726], [-118.4519410213925, 33.956610995695996], [-118.45344698966076, 33.959009001834076], [-118.45421901936898, 33.959767983745586], [-118.45613299434207, 33.961192982017934], [-118.4575629907623, 33.96062498196844], [-118.4576600074436, 33.96073899235248], [-118.4573950003807, 33.96087399495768], [-118.45747602298891, 33.960954017936416], [-118.45848901603792, 33.9612550116641], [-118.46037100286445, 33.96036702492462], [-118.46045802324993, 33.960484981214854], [-118.451811, 33.96451099912501], [-118.45351267244601, 33.96382303213128], [-118.4516622658042, 33.96476860905835], [-118.4513009793635, 33.96423100779179], [-118.43227829833681, 33.975005062440815], [-118.42811, 33.968611999125066]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Playa del Rey", "metadata": {"sqmi": 2.75429310607, "type": "segment-of-a-city", "name": "Playa del Rey", "slug": "playa-del-rey"}, "cases": 1.0, "population": 0.03195909236177693, "external_id": "playa-del-rey", "slug": "playa-del-rey-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/playa-del-rey-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.40513300000012, 33.988338999124664], [-118.40444538235128, 33.9883355873588], [-118.401239, 33.98638599912481], [-118.398761, 33.98795699912479], [-118.395851, 33.98491299912476], [-118.395678, 33.98436599912475], [-118.395085, 33.98381799912489], [-118.3984630000001, 33.98317799912483], [-118.3978175863537, 33.98246472319365], [-118.39814, 33.98231299912479], [-118.39923000000013, 33.98279599912475], [-118.401614, 33.98228399912475], [-118.40448800000011, 33.97721599912495], [-118.404769, 33.97695499912483], [-118.41161000000014, 33.97529599912488], [-118.41891, 33.97231199912489], [-118.42281, 33.96991199912499], [-118.42361, 33.96691199912488], [-118.42561000000015, 33.96551199912494], [-118.42811000000013, 33.96861199912502], [-118.43221100000014, 33.97491099912486], [-118.42831000000011, 33.9773109991247], [-118.42311000000011, 33.980810999124834], [-118.42061500000011, 33.98133399912471], [-118.41801, 33.98249099912468], [-118.413808, 33.98546199912475], [-118.411045, 33.987191999124846], [-118.408618, 33.98802299912468], [-118.40513300000012, 33.988338999124664]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Playa Vista", "metadata": {"sqmi": 1.29929176452, "type": "segment-of-a-city", "name": "Playa Vista", "slug": "playa-vista"}, "cases": 52.0, "population": 0.2339197419641097, "external_id": "playa-vista", "slug": "playa-vista-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/playa-vista-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.748528, 34.11113699912332], [-117.74656800000015, 34.11118799912331], [-117.74208100000018, 34.110891999123254], [-117.74210400000023, 34.108603999123325], [-117.74132100000016, 34.108574999123334], [-117.741192, 34.10819399912328], [-117.73888700000019, 34.10834999912323], [-117.73906600000016, 34.110824999123224], [-117.73804800000013, 34.11088799912335], [-117.73751800000021, 34.111223999123304], [-117.736809, 34.111114999123274], [-117.736794, 34.09885799912345], [-117.73252300000017, 34.098728999123445], [-117.73197600000022, 34.09398599912348], [-117.7319900000002, 34.09027899912359], [-117.72798200000015, 34.09035899912352], [-117.72799700000013, 34.079409999123584], [-117.71106700000018, 34.079535999123756], [-117.71630900000015, 34.067660999123824], [-117.71756400000024, 34.064222999123885], [-117.71948100000017, 34.059730999123886], [-117.72356300000015, 34.04848499912404], [-117.72358700000018, 34.04796199912404], [-117.72441100000019, 34.04544799912408], [-117.72443400000022, 34.04486499912403], [-117.72601000000031, 34.04112799912409], [-117.72718900000012, 34.03741099912413], [-117.728731, 34.03014599912433], [-117.7286570000002, 34.0298859991243], [-117.72928600000022, 34.0262909991243], [-117.73048900000016, 34.02151099912437], [-117.73188900000021, 34.02051199912441], [-117.736389, 34.018510999124445], [-117.74018900000029, 34.01931199912444], [-117.75443900000019, 34.02147599912443], [-117.76769000000021, 34.023810999124315], [-117.7677900000001, 34.01861099912438], [-117.78040900000018, 34.02588999912438], [-117.78504600000022, 34.02762199912418], [-117.78631600000018, 34.033361999124224], [-117.79225000000018, 34.037037999124166], [-117.79377000000018, 34.037406999124244], [-117.79567, 34.03829199912412], [-117.7969820000003, 34.03927999912409], [-117.79811900000018, 34.04051199912411], [-117.8003890000002, 34.041493999124064], [-117.80174400000018, 34.04246199912416], [-117.80225300000019, 34.041355999124015], [-117.80230800000018, 34.04047599912421], [-117.80204700000012, 34.04081199912411], [-117.80212700000016, 34.04053499912412], [-117.80552100000011, 34.03699999912421], [-117.80761000000015, 34.03414399912416], [-117.80965100000016, 34.03086799912423], [-117.81771700000021, 34.03482099912422], [-117.82194800000016, 34.0304789991243], [-117.82426800000019, 34.03256899912431], [-117.82504000000021, 34.031564999124214], [-117.82527800000017, 34.03169599912416], [-117.8247890000002, 34.03247199912426], [-117.82520900000014, 34.03299099912429], [-117.82509100000011, 34.03303699912438], [-117.82515400000021, 34.03321799912427], [-117.82552500000018, 34.033225999124284], [-117.82497000000019, 34.03429899912427], [-117.82467400000023, 34.03661499912428], [-117.8276680000002, 34.03670399912421], [-117.828817, 34.037100999124185], [-117.82789300000027, 34.03891499912413], [-117.82092500000013, 34.04949599912405], [-117.82067100000019, 34.05048799912403], [-117.82078000000011, 34.05178199912403], [-117.81662200000022, 34.05023199912401], [-117.81571500000021, 34.052574999124076], [-117.821003, 34.05516199912399], [-117.81234800000016, 34.06127499912388], [-117.80788100000021, 34.05844099912399], [-117.8051080000002, 34.05909499912392], [-117.80689200000016, 34.06275399912385], [-117.81093500000011, 34.063566999123836], [-117.8115270000002, 34.0635169991238], [-117.81191100000014, 34.063216999123874], [-117.81221900000014, 34.06338399912386], [-117.81366, 34.06346899912391], [-117.81908900000018, 34.063169999123986], [-117.81911000000018, 34.06356499912392], [-117.8121640000003, 34.0637699991238], [-117.80983700000013, 34.06409499912387], [-117.807843, 34.06463399912388], [-117.80664500000017, 34.06478899912381], [-117.80693000000014, 34.06514399912384], [-117.80315400000016, 34.06686999912384], [-117.80235600000022, 34.067719999123796], [-117.80097200000024, 34.0682099991238], [-117.79941600000012, 34.068343999123826], [-117.79897000000018, 34.06881399912383], [-117.79788700000019, 34.069442999123815], [-117.79797700000017, 34.069608999123815], [-117.79730000000018, 34.069916999123755], [-117.79712200000013, 34.06971199912376], [-117.79613200000018, 34.070084999123814], [-117.79600700000015, 34.06987799912379], [-117.79523900000017, 34.07022299912374], [-117.79519000000015, 34.07060699912382], [-117.7944680000002, 34.070854999123796], [-117.7942750000002, 34.071402999123734], [-117.79363300000026, 34.07120599912374], [-117.7923650000002, 34.07198599912377], [-117.79138900000018, 34.07211699912377], [-117.788307, 34.07311599912376], [-117.7847210000002, 34.07582499912381], [-117.78114300000016, 34.07706499912368], [-117.78054800000014, 34.07757599912363], [-117.77964000000014, 34.07904799912365], [-117.78364600000016, 34.08093199912368], [-117.78309100000016, 34.08160899912363], [-117.78099100000021, 34.08340899912357], [-117.78209100000014, 34.08482499912357], [-117.78433100000014, 34.08485699912359], [-117.78538700000011, 34.0853849991236], [-117.78641100000011, 34.087883999123605], [-117.78577500000029, 34.08789999912362], [-117.785064, 34.08761099912354], [-117.78482300000017, 34.087923999123376], [-117.78397900000017, 34.087944999123586], [-117.783686, 34.088976999123595], [-117.78022700000012, 34.08804799912357], [-117.77681000000017, 34.0861659991236], [-117.77111800000016, 34.09389099912357], [-117.77024100000018, 34.09512699912344], [-117.76992500000014, 34.095847999123514], [-117.76658800000018, 34.0938099991235], [-117.764786, 34.090711999123414], [-117.76426600000016, 34.089416999123564], [-117.762103, 34.092760999123456], [-117.7585450000002, 34.09040499912345], [-117.75748400000028, 34.09004999912359], [-117.7561340000001, 34.08996599912352], [-117.75611900000021, 34.09792299912348], [-117.75688200000027, 34.098124999123385], [-117.756233, 34.09894899912352], [-117.756104, 34.09939999912342], [-117.75619900000015, 34.10566199912329], [-117.75608700000016, 34.110270999123244], [-117.75103200000021, 34.108648999123325], [-117.75070400000013, 34.10928599912327], [-117.75071300000016, 34.110894999123275], [-117.74963800000013, 34.11073999912332], [-117.74974700000018, 34.111289999123215], [-117.74991300000015, 34.11138899912326], [-117.74994700000023, 34.11293599912327], [-117.74855000000011, 34.11285399912323], [-117.748528, 34.11113699912332]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Pomona", "metadata": {"sqmi": 22.9203858517, "type": "standalone-city", "name": "Pomona", "slug": "pomona"}, "cases": 176.0, "population": 1.5593160272880304, "external_id": "pomona", "slug": "pomona-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/pomona-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.55436372920136, 34.296541394432126], [-118.55403400010489, 34.29641399931978], [-118.54980399981227, 34.29696699922434], [-118.54670100003608, 34.29786699922969], [-118.54094523964707, 34.29879363870781], [-118.539019, 34.29570099912101], [-118.53481900000014, 34.292000999120994], [-118.5336190000001, 34.29030099912107], [-118.53011900000011, 34.28650099912105], [-118.52881900000011, 34.286000999121185], [-118.528419, 34.284600999121146], [-118.5276190000001, 34.283300999121224], [-118.528019, 34.28210099912109], [-118.527519, 34.28130099912112], [-118.527519, 34.27930099912126], [-118.526363, 34.276739999121176], [-118.526662, 34.27478399912124], [-118.52644700000012, 34.273153999121256], [-118.52700800000012, 34.27207599912121], [-118.526519, 34.27210199912127], [-118.526103, 34.27185799912126], [-118.525495, 34.271297999121195], [-118.52498300000015, 34.27035399912135], [-118.52514300000013, 34.26966599912125], [-118.52586300000014, 34.268865999121346], [-118.526631, 34.26836999912132], [-118.52751100000013, 34.26611399912135], [-118.527719, 34.26496199912127], [-118.52831900000011, 34.2645019991213], [-118.52945600000021, 34.260945999121375], [-118.528963, 34.26005499912139], [-118.529393, 34.25718999912147], [-118.55872000000012, 34.25720199912154], [-118.55782, 34.25900199912152], [-118.55852, 34.26320199912134], [-118.55672, 34.26550199912127], [-118.55672, 34.26620199912139], [-118.55695700000017, 34.26644199912128], [-118.556702, 34.26697499912122], [-118.556651, 34.27121399912134], [-118.557959, 34.273449999121155], [-118.559484, 34.27403499912135], [-118.55982, 34.2745019991212], [-118.569535, 34.275454999121216], [-118.569577, 34.27999999912114], [-118.57033200000016, 34.28698899912099], [-118.572476, 34.29467699912104], [-118.57015702229788, 34.29573568995183], [-118.57014599990354, 34.29535499916071], [-118.56870800014697, 34.294638999303956], [-118.5677409998599, 34.295073999266116], [-118.56742000026652, 34.294952999182165], [-118.56636700008308, 34.295426998937195], [-118.56608700004034, 34.29581799921677], [-118.56446699986053, 34.29688799921102], [-118.56354999988973, 34.29784699912612], [-118.56209599987618, 34.2987899991226], [-118.55976699997046, 34.299191999327405], [-118.55739099993507, 34.299242999282036], [-118.55479200008038, 34.297123999254225], [-118.55436372920136, 34.296541394432126]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Porter Ranch", "metadata": {"sqmi": 5.58616965872, "type": "segment-of-a-city", "name": "Porter Ranch", "slug": "porter-ranch"}, "cases": 55.0, "population": 0.3558718861209964, "external_id": "porter-ranch", "slug": "porter-ranch-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/porter-ranch-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.20702926515217, 34.67804149395606], [-118.20702669086519, 34.677545577199496], [-118.20584949173163, 34.677557094363564], [-118.20582740570494, 34.67480194963119], [-118.20354600000032, 34.67477099911673], [-118.20353300000026, 34.67322699911668], [-118.20240400000023, 34.673115999116646], [-118.20238200000027, 34.67117699911667], [-118.2013470000003, 34.671177999116665], [-118.20138229669271, 34.66838568530823], [-118.20247969987868, 34.66839319531151], [-118.20246459704666, 34.66663034433607], [-118.20138900000026, 34.66673599911666], [-118.20135316752932, 34.664722747844046], [-118.2024100000002, 34.6646929991168], [-118.20231600000014, 34.66379299911675], [-118.20568236449807, 34.66384770558437], [-118.20570703204253, 34.66019541979157], [-118.2013387651227, 34.66017432979549], [-118.201270198979, 34.65042877220842], [-118.2010830000003, 34.64582299911694], [-118.20123964339331, 34.6458184147524], [-118.20123880518146, 34.645592031276735], [-118.20233424034129, 34.64559457446456], [-118.20233463836799, 34.64578636003732], [-118.2025860000003, 34.64577899911693], [-118.20264943480434, 34.64651020955972], [-118.20343322666886, 34.64651889049307], [-118.20343299726493, 34.64559848604338], [-118.20735000000019, 34.64556399911702], [-118.20924895517653, 34.64447501852375], [-118.20997594977183, 34.644296009851686], [-118.2100108254017, 34.63093737226003], [-118.2231899594063, 34.630856559162524], [-118.22300586486135, 34.6382241100198], [-118.23619014947572, 34.63819259062946], [-118.23611404495769, 34.64924117853029], [-118.23170864850448, 34.64924334093857], [-118.23155400000014, 34.64821399911691], [-118.23156200000021, 34.64562999911693], [-118.22726900000028, 34.64560899911696], [-118.22733282838207, 34.649239798166306], [-118.22840559615643, 34.64923919673204], [-118.22842357025023, 34.65004559360928], [-118.22948500000021, 34.650039999116906], [-118.22952478681242, 34.65029193248004], [-118.23173412539718, 34.650287545425726], [-118.23179314371657, 34.652903178237196], [-118.22741716646232, 34.652912308918616], [-118.22762400000023, 34.6602179991167], [-118.22321329748887, 34.66024558742269], [-118.22326017980653, 34.67487338091222], [-118.21887574426717, 34.67491941047669], [-118.21884000000026, 34.66760299911673], [-118.21453200000015, 34.66756599911668], [-118.21460600000023, 34.66944899911668], [-118.21017644209613, 34.66937402852377], [-118.21019559277178, 34.67118981321126], [-118.21126803175319, 34.67119637481023], [-118.21131186356943, 34.67484203604359], [-118.21021573369363, 34.67483404353253], [-118.21024844222012, 34.678899741508026], [-118.20805235241542, 34.678884630819745], [-118.20804529230935, 34.678049399811385], [-118.20702926515217, 34.67804149395606]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Quartz Hill", "metadata": {"sqmi": 3.77877433414, "type": "unincorporated-area", "name": "Quartz Hill", "slug": "quartz-hill"}, "cases": 27.0, "population": 0.129056928445103, "external_id": "quartz-hill", "slug": "quartz-hill-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/quartz-hill-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.85192842668866, 34.080682429107604], [-117.85229300000022, 34.08040899912366], [-117.85259300000028, 34.07900899912368], [-117.85141500000033, 34.07799499912373], [-117.85219100000027, 34.07680699912372], [-117.85126300000024, 34.07660399912379], [-117.85079300000017, 34.07730899912375], [-117.84681000000022, 34.07520999912375], [-117.84757400000032, 34.07455499912381], [-117.84651400000024, 34.07313299912378], [-117.84670500000034, 34.07256699912385], [-117.84520100000024, 34.07268499912384], [-117.8431000000003, 34.07233599912381], [-117.84204900000027, 34.07199099912376], [-117.84005500000015, 34.07216099912385], [-117.83847800000025, 34.07166699912381], [-117.83679000000029, 34.0700139991238], [-117.83590800000022, 34.07027199912389], [-117.83501000000031, 34.070230999123865], [-117.83452100000025, 34.06940699912377], [-117.83408300000033, 34.069087999123866], [-117.83401300000038, 34.06712199912387], [-117.8317450000003, 34.066354999123924], [-117.82915500000023, 34.0648569991239], [-117.8272600000003, 34.06418799912391], [-117.82342200000018, 34.06377299912392], [-117.81911000000028, 34.06356499912393], [-117.81908900000028, 34.06316999912402], [-117.81366000000016, 34.06346899912393], [-117.81221900000021, 34.0633839991239], [-117.81191100000024, 34.06321699912393], [-117.8115270000003, 34.06351699912388], [-117.81093500000023, 34.06356699912389], [-117.80689200000029, 34.0627539991239], [-117.80510800000029, 34.05909499912396], [-117.80788100000031, 34.058440999123995], [-117.81234800000026, 34.06127499912391], [-117.82083100000027, 34.05533199912398], [-117.82100300000013, 34.05516199912401], [-117.8157150000003, 34.05257499912409], [-117.8166220000003, 34.05023199912406], [-117.82078000000024, 34.05178199912406], [-117.82067100000027, 34.05048799912405], [-117.82092500000023, 34.0494959991241], [-117.82789300000039, 34.03891499912416], [-117.82889300000033, 34.04170999912416], [-117.83419300000025, 34.0407109991242], [-117.83429800000023, 34.051355999124056], [-117.8341090000002, 34.054617999124], [-117.82902100000034, 34.05695399912401], [-117.82969300000019, 34.05810999912391], [-117.82490800000028, 34.06055399912395], [-117.82607600000033, 34.062809999123935], [-117.83299800000026, 34.06026299912385], [-117.8349400000002, 34.058463999123994], [-117.84085000000029, 34.05718899912396], [-117.84380800000028, 34.05840299912393], [-117.84267200000026, 34.059497999123934], [-117.84347300000029, 34.06033299912398], [-117.84544400000019, 34.06349599912394], [-117.8480300000003, 34.06242399912398], [-117.84530800000026, 34.06105399912398], [-117.84603700000024, 34.06112199912392], [-117.84634600000027, 34.06071799912397], [-117.84860400000024, 34.061020999124], [-117.85077400000033, 34.06025899912389], [-117.85073600000038, 34.05988899912393], [-117.84956800000026, 34.060037999124], [-117.84962600000026, 34.05965599912395], [-117.84885400000026, 34.05962799912391], [-117.8488060000003, 34.05918199912398], [-117.85014700000029, 34.059229999123964], [-117.84974200000026, 34.05848499912399], [-117.84951600000015, 34.058367999123995], [-117.85025700000028, 34.05836199912398], [-117.85039800000025, 34.05858999912393], [-117.85134400000031, 34.058704999124004], [-117.85110200000024, 34.059193999124005], [-117.85129500000022, 34.059604999124], [-117.85205800000028, 34.05954299912388], [-117.85185500000033, 34.059121999124024], [-117.85219600000028, 34.059003999123995], [-117.8519730000003, 34.05887599912394], [-117.85259400000024, 34.05834399912392], [-117.85260800000025, 34.05857799912392], [-117.85320800000022, 34.058308999123966], [-117.85331400000021, 34.05840899912401], [-117.85347600000043, 34.05827999912401], [-117.85331400000021, 34.058098999123985], [-117.85352600000023, 34.05792899912398], [-117.8537870000002, 34.057840999124075], [-117.85390700000026, 34.058121999123955], [-117.85428100000021, 34.058278999124006], [-117.85496500000022, 34.05808399912401], [-117.8529510000002, 34.05324199912395], [-117.86173200000016, 34.05308999912402], [-117.86267300000024, 34.05191499912413], [-117.86340500000028, 34.05233499912399], [-117.86422300000027, 34.05309399912404], [-117.86609400000026, 34.055983999124], [-117.8669860000002, 34.05570199912403], [-117.8688970000003, 34.05566699912399], [-117.86897600000026, 34.056697999123976], [-117.87044500000029, 34.05665999912393], [-117.87113600000028, 34.056836999123945], [-117.87047800000028, 34.05812499912395], [-117.87060000000024, 34.059925999123976], [-117.86893900000042, 34.05962299912395], [-117.86899400000023, 34.05912899912394], [-117.8688520000003, 34.05911399912397], [-117.8689160000003, 34.06017499912396], [-117.86837300000029, 34.06181599912394], [-117.86825600000019, 34.06307599912391], [-117.8685580000003, 34.063925999123896], [-117.87048200000031, 34.067041999123994], [-117.87176100000028, 34.068437999123944], [-117.87029200000022, 34.06855199912384], [-117.87019100000028, 34.0683399991238], [-117.86499000000019, 34.069113999123715], [-117.86382400000029, 34.06718299912384], [-117.86133400000024, 34.06749799912388], [-117.86123700000032, 34.067687999123955], [-117.86118600000022, 34.066329999123894], [-117.86023300000016, 34.06598799912382], [-117.85918800000013, 34.066154999123896], [-117.85826100000028, 34.06592499912385], [-117.8587040000002, 34.06864099912379], [-117.8571190000003, 34.06795599912383], [-117.85534700000021, 34.068130999123824], [-117.85575700000032, 34.06883299912384], [-117.85635900000021, 34.06871799912382], [-117.8571190000003, 34.06892899912387], [-117.85813200000025, 34.07003599912379], [-117.85834600000031, 34.07096999912377], [-117.85824200000033, 34.071651999123816], [-117.85835700000023, 34.07243499912385], [-117.8592510000003, 34.072115999123824], [-117.85937900000023, 34.0740899991238], [-117.85822100000023, 34.074112999123706], [-117.85834000000021, 34.07461999912375], [-117.85894800000028, 34.07455999912377], [-117.85913600000028, 34.07548199912378], [-117.85966800000024, 34.07514299912379], [-117.86016000000036, 34.07549599912375], [-117.85990600000022, 34.0758109991238], [-117.8606140000003, 34.07631699912371], [-117.8601930000003, 34.076541999123876], [-117.86001300000021, 34.078551999123725], [-117.86030600000025, 34.07856399912372], [-117.8606289347813, 34.07881577878361], [-117.8604785008204, 34.07891896328401], [-117.8600909375735, 34.07868401196812], [-117.85869155296957, 34.07912308573174], [-117.85908254886594, 34.0794770014256], [-117.85883378607637, 34.07996311304199], [-117.85919563917086, 34.08022022386867], [-117.85901800000035, 34.08054999912372], [-117.8566680000002, 34.080430999123806], [-117.85651700000031, 34.081549999123666], [-117.85686100000017, 34.082220999123635], [-117.85228800000027, 34.08210599912368], [-117.85164700000026, 34.0810529991238], [-117.85192842668866, 34.080682429107604]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Ramona", "metadata": {"sqmi": 3.6125750528, "type": "unincorporated-area", "name": "Ramona", "slug": "ramona"}, "cases": null, "population": null, "external_id": "ramona", "slug": "ramona-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/ramona-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.20707900000026, 33.873038999126294], [-118.20354200000025, 33.86106899912645], [-118.20349200000025, 33.86040899912633], [-118.20098100000025, 33.860093999126455], [-118.20297300000014, 33.857174999126485], [-118.20398800000031, 33.85514599912646], [-118.20483100000025, 33.852536999126485], [-118.20527300000023, 33.84944999912658], [-118.20586200000024, 33.84850199912659], [-118.20679800000028, 33.848402999126506], [-118.20679100000022, 33.846567999126535], [-118.23389100000028, 33.84663599912655], [-118.23560200000023, 33.86734199912634], [-118.23412000000035, 33.867400999126346], [-118.23412700000017, 33.866641999126365], [-118.23238600000023, 33.86666799912637], [-118.23237200000021, 33.865565999126304], [-118.2317120000004, 33.86487999912637], [-118.2309420000003, 33.8646919991264], [-118.23084700000022, 33.8634079991264], [-118.22943800000026, 33.863085999126405], [-118.22680800000023, 33.86313799912635], [-118.22638400000024, 33.86429099912638], [-118.22578400000026, 33.86815199912628], [-118.21862500000024, 33.86817299912637], [-118.21865800000018, 33.86924799912627], [-118.21509500000032, 33.86932699912631], [-118.21549800000022, 33.871675999126225], [-118.21616600000027, 33.872603999126355], [-118.21545800000027, 33.872952999126255], [-118.20709200000024, 33.87318399912628], [-118.20707900000026, 33.873038999126294]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Rancho Dominguez", "metadata": {"sqmi": 2.6664275612, "type": "unincorporated-area", "name": "Rancho Dominguez", "slug": "rancho-dominguez"}, "cases": 10.0, "population": 0.026609898882384245, "external_id": "rancho-dominguez", "slug": "rancho-dominguez-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/rancho-dominguez-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.36881500000018, 33.795469999127135], [-118.36845300000012, 33.79442199912717], [-118.36750600000016, 33.79441599912723], [-118.36760200000016, 33.79347199912716], [-118.36873400000019, 33.792656999127175], [-118.367912, 33.791457999127196], [-118.36874600000023, 33.79107999912728], [-118.36978500000019, 33.789667999127246], [-118.37129600000019, 33.78853999912726], [-118.37200200000015, 33.78774899912726], [-118.37260200000011, 33.78551399912735], [-118.37059200000019, 33.785506999127314], [-118.36888100000021, 33.78500199912736], [-118.36794600000015, 33.78437899912735], [-118.3655070000002, 33.78562799912725], [-118.3642620000002, 33.781235999127354], [-118.36325300000017, 33.77935999912746], [-118.36333600000015, 33.778659999127434], [-118.36394000000021, 33.77884399912737], [-118.3643350000002, 33.77795699912742], [-118.3637190000002, 33.777724999127415], [-118.36308700000015, 33.777097999127406], [-118.36270900000015, 33.775437999127355], [-118.36108300000016, 33.77377399912755], [-118.36103100000031, 33.77342899912753], [-118.36156500000016, 33.77252399912748], [-118.3631370000002, 33.771325999127484], [-118.36449600000014, 33.76903199912752], [-118.3655210000002, 33.769713999127525], [-118.3654690000002, 33.77133599912752], [-118.3681390000002, 33.77155199912741], [-118.37125000000019, 33.77279299912741], [-118.371916, 33.77218299912747], [-118.37329600000024, 33.77307599912749], [-118.37432600000017, 33.77396199912738], [-118.3750530000002, 33.775323999127444], [-118.3748880000002, 33.77657799912738], [-118.37280300000012, 33.77718999912737], [-118.37141000000018, 33.778243999127355], [-118.37072400000017, 33.77890799912734], [-118.3700960000002, 33.779824999127385], [-118.3696520000002, 33.78107299912738], [-118.37204900000019, 33.78273599912737], [-118.37291900000017, 33.784290999127265], [-118.37464400000015, 33.77780599912732], [-118.37828000000017, 33.77670799912738], [-118.37893400000019, 33.777191999127375], [-118.38099300000025, 33.77585099912737], [-118.38133000000022, 33.7753059991274], [-118.38153500000017, 33.775452999127296], [-118.38259800000024, 33.774661999127396], [-118.38298500000018, 33.77471799912747], [-118.38379100000016, 33.77446899912742], [-118.383622, 33.77309599912749], [-118.38149100000017, 33.773271999127445], [-118.38122700000015, 33.77187099912748], [-118.38123300000017, 33.77090299912751], [-118.38082900000023, 33.76950499912749], [-118.38690400000027, 33.76830099912762], [-118.38778600000015, 33.76695599912757], [-118.38901600000013, 33.76574899912757], [-118.389715, 33.765317999127596], [-118.3905530000002, 33.76504499912762], [-118.3908100000002, 33.76543599912764], [-118.3912480000002, 33.764140999127704], [-118.3933440000002, 33.76099699912762], [-118.3909210000002, 33.75963399912762], [-118.38957600000018, 33.75757799912763], [-118.3890900000002, 33.7572489991277], [-118.38838300000012, 33.757077999127695], [-118.38739300000015, 33.75722399912775], [-118.3849680000002, 33.758597999127545], [-118.38397600000017, 33.75896999912762], [-118.37871000000024, 33.75928499912767], [-118.3789940000003, 33.76162499912758], [-118.3785960000002, 33.761660999127464], [-118.37889000000021, 33.76366099912754], [-118.379647, 33.76667599912758], [-118.38034500000018, 33.768327999127536], [-118.38070500000029, 33.768800999127535], [-118.37836100000011, 33.769319999127596], [-118.377135, 33.769827999127315], [-118.3767310000003, 33.77071399912753], [-118.37521700000015, 33.771594999127444], [-118.37130200000016, 33.769186999127506], [-118.37055000000012, 33.76817999912756], [-118.369501, 33.7683239991275], [-118.36727400000024, 33.767645999127495], [-118.36492600000014, 33.768176999127526], [-118.36569200000012, 33.76702799912757], [-118.36521900000025, 33.76513099912755], [-118.36564300000018, 33.76240899912762], [-118.36598400000022, 33.762687999127635], [-118.36668300000022, 33.76192499912764], [-118.366194, 33.76136899912763], [-118.365715, 33.76161799912763], [-118.36563400000027, 33.76152299912763], [-118.36554200000013, 33.760269999127594], [-118.36431500000018, 33.75998399912768], [-118.36433700000018, 33.75979699912763], [-118.3552050000002, 33.75591699912762], [-118.35586500000026, 33.75540899912771], [-118.3557620000002, 33.754810999127734], [-118.35450500000013, 33.75381699912777], [-118.35540100000011, 33.75337699912774], [-118.35450500000013, 33.751516999127716], [-118.35320500000013, 33.75071699912775], [-118.35616900000018, 33.7485929991278], [-118.35681100000019, 33.747101999127814], [-118.35740600000021, 33.74619999912793], [-118.358662, 33.74512099912788], [-118.3571050000001, 33.74281799912784], [-118.3555340000002, 33.74250399912788], [-118.35299000000012, 33.74508099912775], [-118.35015000000018, 33.74287099912785], [-118.347376, 33.742527999127844], [-118.34600500000013, 33.742116999127795], [-118.34450500000015, 33.74471699912779], [-118.34010500000016, 33.74261699912779], [-118.33997000000014, 33.74284199912789], [-118.33941900000015, 33.74309499912774], [-118.33941900000015, 33.744507999127855], [-118.33885600000013, 33.74469799912774], [-118.33839800000018, 33.74550799912782], [-118.33820800000017, 33.747620999127776], [-118.33663300000015, 33.747826999127724], [-118.33606800000024, 33.748050999127756], [-118.33376600000014, 33.75054199912775], [-118.33099900000016, 33.751488999127695], [-118.33008000000017, 33.75106099912769], [-118.32957000000019, 33.751464999127755], [-118.33062600000014, 33.75479199912776], [-118.33116000000021, 33.75569099912773], [-118.33110900000014, 33.75710399912772], [-118.33215300000012, 33.75826799912764], [-118.330102, 33.75906999912763], [-118.33025800000019, 33.75977499912754], [-118.33625200000014, 33.76147299912768], [-118.33647800000017, 33.76118999912751], [-118.33778200000029, 33.763099999127576], [-118.33752700000012, 33.763216999127664], [-118.3376540000002, 33.76342999912766], [-118.33730500000027, 33.76361699912757], [-118.33791100000015, 33.76475699912758], [-118.33805500000013, 33.765750999127405], [-118.337776, 33.76656799912756], [-118.33731500000015, 33.76711999912745], [-118.33641200000014, 33.76653599912758], [-118.33602500000012, 33.766670999127484], [-118.33575500000016, 33.76623499912753], [-118.33467000000014, 33.76649199912759], [-118.33340500000018, 33.76701699912753], [-118.33304200000012, 33.76825699912757], [-118.33235600000023, 33.768916999127555], [-118.33152700000022, 33.769350999127596], [-118.33081400000015, 33.76863899912755], [-118.33152500000023, 33.76816099912746], [-118.33171400000015, 33.76681899912755], [-118.33000000000015, 33.76739599912756], [-118.32806400000021, 33.76770199912754], [-118.32699800000015, 33.767048999127496], [-118.326647, 33.76786499912751], [-118.32621800000011, 33.76775899912756], [-118.32616100000011, 33.767986999127494], [-118.32577300000018, 33.76798299912763], [-118.32563600000017, 33.768225999127495], [-118.32412100000016, 33.768109999127546], [-118.32327600000013, 33.768470999127516], [-118.32245400000014, 33.76651199912749], [-118.321546, 33.76568799912753], [-118.32154900000018, 33.76535299912751], [-118.32170500000021, 33.7652029991276], [-118.32220500000018, 33.76516199912757], [-118.31860000000012, 33.764974999127546], [-118.31850800000014, 33.76864699912761], [-118.31830500000018, 33.77011699912747], [-118.31830700000013, 33.77521799912735], [-118.316446, 33.775250999127366], [-118.3165750000003, 33.775644999127394], [-118.31294800000023, 33.77582999912746], [-118.31324400000018, 33.77628799912745], [-118.31410300000017, 33.77615799912742], [-118.31326800000015, 33.77655699912744], [-118.31276300000019, 33.77651799912741], [-118.31093500000021, 33.77729099912738], [-118.30991100000021, 33.776278999127484], [-118.3091350000002, 33.77648599912745], [-118.3086970000002, 33.773821999127485], [-118.308751, 33.77268399912756], [-118.3116060000002, 33.76305099912762], [-118.30903500000021, 33.7626779991276], [-118.30903800000014, 33.760514999127615], [-118.30187800000013, 33.76051099912762], [-118.3010000000002, 33.75772099912767], [-118.30908700000013, 33.75772799912751], [-118.30908900000014, 33.757127999127626], [-118.30973400000012, 33.756151999127695], [-118.309, 33.75465199912771], [-118.30883700000014, 33.7537589991277], [-118.30886600000012, 33.752131999127776], [-118.309614, 33.74679099912775], [-118.31110700000013, 33.74679899912773], [-118.311103, 33.747293999127734], [-118.31217400000021, 33.747301999127764], [-118.31217600000016, 33.74680499912791], [-118.31844900000016, 33.746841999127824], [-118.31847700000012, 33.74261699912779], [-118.31960700000018, 33.74262999912784], [-118.32002900000019, 33.741491999127845], [-118.31984100000017, 33.74100199912784], [-118.31901200000014, 33.74053499912785], [-118.31887600000017, 33.74031499912789], [-118.31868000000016, 33.73924899912779], [-118.318751, 33.738366999127926], [-118.31850000000013, 33.73763299912787], [-118.3185050000001, 33.736338999127945], [-118.31892400000015, 33.73659799912798], [-118.32005000000015, 33.73612199912804], [-118.31998500000026, 33.735829999127894], [-118.32037300000023, 33.73576999912794], [-118.3203010000001, 33.73544599912805], [-118.31991300000014, 33.73550599912793], [-118.31873700000023, 33.73518099912798], [-118.31851000000019, 33.73525099912788], [-118.31853100000018, 33.73198699912805], [-118.31982300000017, 33.731989999127954], [-118.32012500000022, 33.731425999127985], [-118.32090800000013, 33.73105599912795], [-118.32101000000016, 33.729396999127935], [-118.328472, 33.72942199912805], [-118.33301780682169, 33.721927852189424], [-118.33547702008529, 33.722550991503084], [-118.33725299356439, 33.72364900567845], [-118.34007699973968, 33.72423100054231], [-118.34177100359315, 33.72562401066803], [-118.34305600111203, 33.726153025164095], [-118.3446479901363, 33.72620000775436], [-118.34700501146159, 33.7266629940862], [-118.34839302343947, 33.727104988196686], [-118.350003005796, 33.72685397594795], [-118.3514599922149, 33.72715602191747], [-118.35218298746167, 33.727800993444795], [-118.3525480100946, 33.7287150231654], [-118.35300100013046, 33.72926497727068], [-118.35468300842905, 33.73071401926485], [-118.35572599036551, 33.732465002004496], [-118.35706502049389, 33.73413501474775], [-118.35797699834318, 33.734487989213704], [-118.35841699319471, 33.73497901778581], [-118.35867900136876, 33.73502200185779], [-118.36088502601551, 33.736651976805945], [-118.36336800066796, 33.73789299062354], [-118.36593599644672, 33.73823202288728], [-118.36786301921636, 33.73784300914435], [-118.36839997813706, 33.737563007637874], [-118.36874001003054, 33.73646899198067], [-118.36939797674248, 33.73635698085566], [-118.36961300232643, 33.73640901420592], [-118.36961999973342, 33.737399015774585], [-118.36988300753704, 33.73785400506979], [-118.37085801466213, 33.73830499584667], [-118.3721410129219, 33.7384549928957], [-118.37290499298142, 33.73823102325764], [-118.37384901158948, 33.73727900761294], [-118.3738530101079, 33.73705398573333], [-118.37411401865234, 33.73706598128824], [-118.37490898722885, 33.737343983535716], [-118.37529500208298, 33.737657025430444], [-118.37530000023102, 33.737824016182486], [-118.37492997944993, 33.73806497952327], [-118.37482501834411, 33.73872099958812], [-118.37493597722741, 33.73925201334322], [-118.37532499097031, 33.7396840111581], [-118.37663098071059, 33.74060398604405], [-118.37716499335458, 33.74071199865093], [-118.37838901346916, 33.74142299834267], [-118.38016898546643, 33.74210101025819], [-118.38163802005229, 33.74234297322873], [-118.38527698739584, 33.74198899913328], [-118.38584298818635, 33.741368018715846], [-118.38661901641295, 33.741074022395026], [-118.3871299849646, 33.74062397863583], [-118.3887059799154, 33.73977797633865], [-118.38961601111782, 33.73950297298007], [-118.39204200688413, 33.739460988537694], [-118.39282797879432, 33.73905897961026], [-118.39302900956417, 33.738659022553946], [-118.39401301335555, 33.73864797401659], [-118.3952469771537, 33.738145002501724], [-118.39690499434235, 33.73650197975685], [-118.39812101742022, 33.73619798714039], [-118.3987479956153, 33.73626001678647], [-118.39940301605048, 33.736591999031134], [-118.40023202464482, 33.737343983535716], [-118.40050897465052, 33.738226025109775], [-118.40088899172713, 33.7386359784617], [-118.40110901545883, 33.7385909951306], [-118.40114900064195, 33.73877897810375], [-118.40143599955569, 33.73888299219219], [-118.40259499113554, 33.73888099293297], [-118.40247698223317, 33.74020197711676], [-118.40299000265593, 33.74072099531706], [-118.40382700828681, 33.74117198609389], [-118.40576702624108, 33.74156299909598], [-118.40976901695836, 33.741070023876695], [-118.41154499043722, 33.741153992761504], [-118.41136900301923, 33.74194601506127], [-118.41081499778355, 33.74280701180211], [-118.41087497555849, 33.743204022581544], [-118.41185398120173, 33.74417497857617], [-118.41241898236272, 33.74526999386285], [-118.41322200058788, 33.746158980231996], [-118.413576974313, 33.74681000214895], [-118.41357397542421, 33.747312973663895], [-118.41322100095836, 33.74758397850412], [-118.41331801763963, 33.74817502264643], [-118.41303301798526, 33.74888402307901], [-118.41308399909376, 33.74983298722284], [-118.41428497511592, 33.75138898958208], [-118.41463300404597, 33.75155797959314], [-118.41351799616768, 33.75240298226079], [-118.41327698021485, 33.753107984174996], [-118.41378100397158, 33.75389800721572], [-118.41510498704403, 33.754438017637135], [-118.41574801192431, 33.75511997545896], [-118.41584997414138, 33.756180003710476], [-118.41676800238048, 33.756753001908145], [-118.41677000163966, 33.75706998970905], [-118.41714602019793, 33.75783702126937], [-118.41697397868607, 33.75804199794537], [-118.41737398835431, 33.7595989999342], [-118.41813002398925, 33.7599199862535], [-118.41859600920974, 33.760320995551425], [-118.4186150021719, 33.76056101187475], [-118.41758601504931, 33.76165597454927], [-118.41752398540342, 33.76205098606955], [-118.41778172359771, 33.7623476303598], [-118.41182500000016, 33.76338599912765], [-118.41050400000019, 33.763472999127536], [-118.40765100000033, 33.764218999127635], [-118.405264, 33.76414899912759], [-118.40365400000015, 33.76471999912762], [-118.40380900000021, 33.78135099912737], [-118.39997900000023, 33.781667999127315], [-118.39995600000016, 33.78181399912731], [-118.39386400000014, 33.78178099912727], [-118.387306, 33.78201599912737], [-118.38629600000012, 33.78525099912736], [-118.38495300000015, 33.791113999127255], [-118.38420600000012, 33.79361499912725], [-118.38283700000015, 33.79303599912715], [-118.381439, 33.79358299912725], [-118.38142300000015, 33.7938349991272], [-118.379225, 33.79440199912726], [-118.37862200000022, 33.79490999912719], [-118.37853800000018, 33.79546599912712], [-118.37768200000022, 33.79490699912715], [-118.37500500000013, 33.794932999127106], [-118.37169700000015, 33.79470699912734], [-118.36971700000028, 33.79489099912716], [-118.36881500000018, 33.795469999127135]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Rancho Palos Verdes", "metadata": {"sqmi": 13.3940478696, "type": "standalone-city", "name": "Rancho Palos Verdes", "slug": "rancho-palos-verdes"}, "cases": 60.0, "population": 0.4274722143060701, "external_id": "rancho-palos-verdes", "slug": "rancho-palos-verdes-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/rancho-palos-verdes-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.414799, 34.03228199912421], [-118.41121100000011, 34.03080999912419], [-118.415111, 34.03200999912428], [-118.418411, 34.03200999912423], [-118.423911, 34.02930999912424], [-118.43029800000014, 34.026819999124214], [-118.430775, 34.02743399912434], [-118.430611, 34.027909999124276], [-118.43145300000012, 34.02992799912413], [-118.431313, 34.03052499912426], [-118.4308350000001, 34.03100699912419], [-118.434397, 34.035327999124206], [-118.434618, 34.03564399912414], [-118.434648, 34.03642799912406], [-118.435039, 34.03693199912408], [-118.4248120000001, 34.041809999123984], [-118.423711, 34.04030999912415], [-118.42331100000011, 34.03950999912405], [-118.421511, 34.03740999912408], [-118.4214110000001, 34.03710999912423], [-118.418411, 34.03620999912418], [-118.41611100000011, 34.03320999912413], [-118.414799, 34.03228199912421]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Rancho Park", "metadata": {"sqmi": 0.599121035635, "type": "segment-of-a-city", "name": "Rancho Park", "slug": "rancho-park"}, "cases": 11.0, "population": 0.06560114503816794, "external_id": "rancho-park", "slug": "rancho-park-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/rancho-park-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.36129000000024, 33.8946529991259], [-118.36129000000024, 33.87285799912621], [-118.35471100000017, 33.87285399912624], [-118.35234800000018, 33.87442799912626], [-118.35246100000016, 33.86552599912633], [-118.35883200000022, 33.86554499912623], [-118.35864700000012, 33.863775999126375], [-118.35796300000017, 33.862598999126334], [-118.353065, 33.8587859991264], [-118.35349500000028, 33.858129999126334], [-118.35885400000024, 33.858287999126354], [-118.3753980000002, 33.85825599912639], [-118.37537300000018, 33.85589899912636], [-118.37821900000013, 33.854992999126395], [-118.37665200000032, 33.84589299912657], [-118.375439, 33.839873999126624], [-118.37540600000025, 33.83891399912665], [-118.37477100000024, 33.83723899912662], [-118.37493200000021, 33.83610899912668], [-118.37431500000014, 33.83319499912669], [-118.37269800000018, 33.82756499912682], [-118.37445100000019, 33.827557999126846], [-118.37450700000011, 33.82731499912681], [-118.37450100000017, 33.81961199912684], [-118.37434700000011, 33.8163589991269], [-118.37449200000026, 33.81558199912702], [-118.37961400000017, 33.81638599912691], [-118.380452, 33.81675899912696], [-118.38300500000015, 33.81837999912697], [-118.38442900000011, 33.81901799912686], [-118.38458500000014, 33.81887899912694], [-118.38538000000018, 33.81892099912691], [-118.38544400000018, 33.818035999126906], [-118.3849390000003, 33.81753399912697], [-118.38602600000021, 33.81649299912688], [-118.38554200000019, 33.816083999126896], [-118.38642200000015, 33.8150709991269], [-118.38756100000026, 33.814860999126935], [-118.3879070000002, 33.81461499912696], [-118.388117, 33.815257999126906], [-118.38844100000017, 33.81506299912698], [-118.38862500000012, 33.8153219991269], [-118.38903900000025, 33.814856999126974], [-118.39041600000012, 33.81543699912692], [-118.39159269545188, 33.81532606283313], [-118.39130501682332, 33.815920024502965], [-118.39102001716888, 33.81732697683069], [-118.39080299232577, 33.821632013146676], [-118.39132400978524, 33.82864899190134], [-118.3912379890293, 33.831050996557806], [-118.3914260246145, 33.83183002367293], [-118.39103701087154, 33.83273600374501], [-118.39075401047637, 33.83471300799353], [-118.39080199269627, 33.837717000105464], [-118.3910689990181, 33.83842300164946], [-118.391641997216, 33.838598989067584], [-118.3917440120452, 33.83883400724285], [-118.39240397801628, 33.8387499857461], [-118.39120000310554, 33.83918198356091], [-118.39145401424285, 33.84018498031416], [-118.39181498574534, 33.84085699445228], [-118.39216901245294, 33.84122101745564], [-118.39269897396653, 33.84121601930769], [-118.39428001967745, 33.841896977500014], [-118.39249099840184, 33.841349022653986], [-118.39162900203151, 33.841444987093574], [-118.39115801866288, 33.84067500925664], [-118.39086102345361, 33.84085599482276], [-118.39178499685795, 33.84260997645094], [-118.39216101541629, 33.84249401941965], [-118.39211098132523, 33.84192501974022], [-118.39258101767624, 33.8418639897239], [-118.39324098364713, 33.84229498790905], [-118.39348499848894, 33.84324100577626], [-118.39411997372059, 33.843747975809485], [-118.39471401675144, 33.843642015074074], [-118.39490000046531, 33.84377201953161], [-118.3946609837715, 33.84377201953172], [-118.39458601155309, 33.843957003615884], [-118.3951720049353, 33.84403897324161], [-118.39653397393181, 33.843857987675335], [-118.39821598223041, 33.84608100602494], [-118.39825302113691, 33.84624099936986], [-118.39788999776313, 33.84667899496204], [-118.39740701883967, 33.84684698534355], [-118.39657401172721, 33.84468199812176], [-118.39468497488143, 33.84515498074938], [-118.39590999462561, 33.84853599104907], [-118.39647899430497, 33.84841198436903], [-118.39665598135278, 33.84883698477688], [-118.39889199488681, 33.84826898472705], [-118.39856601041963, 33.84723399982734], [-118.39870601117296, 33.84682599312246], [-118.39996801721148, 33.848425979183205], [-118.39679098395813, 33.84922599851971], [-118.39744500476374, 33.85095898792667], [-118.39766897440185, 33.851004023869905], [-118.40038701984177, 33.85004001267026], [-118.40013600759308, 33.84926398444371], [-118.40039101836001, 33.849118985542496], [-118.40035897760148, 33.848903012941236], [-118.40129200028406, 33.84898198367802], [-118.40158899549358, 33.84883698477685], [-118.40166801884237, 33.84841898177609], [-118.4014010125205, 33.8475189994817], [-118.3995300216193, 33.84382200101052], [-118.39627801614736, 33.841760975265046], [-118.39543001459106, 33.840929020394086], [-118.3996990116304, 33.84363401803734], [-118.40181501700273, 33.84776801247134], [-118.40185400255635, 33.84897098775258], [-118.40142200474159, 33.8496619948528], [-118.40072699912308, 33.850154023054365], [-118.39956101013614, 33.85053398751902], [-118.3994917215088, 33.85172157672294], [-118.39786000000016, 33.85236599912651], [-118.39027300000024, 33.8547449991265], [-118.38759400000016, 33.85578399912639], [-118.38482100000023, 33.85652499912644], [-118.38507600000017, 33.85772399912653], [-118.38529200000022, 33.858055999126385], [-118.38495700000018, 33.858056999126376], [-118.38562400000015, 33.861389999126494], [-118.38551100000011, 33.86273899912637], [-118.38565000000015, 33.863389999126284], [-118.386061, 33.86400699912635], [-118.38604400000027, 33.864677999126336], [-118.3913710000002, 33.87281199912621], [-118.37995500000024, 33.872833999126215], [-118.38002000000013, 33.879649999126045], [-118.37993900000014, 33.88007299912612], [-118.37866700000015, 33.88007299912614], [-118.37867300000018, 33.8814729991261], [-118.37891700000014, 33.8816919991261], [-118.37859900000021, 33.882779999126065], [-118.37872100000016, 33.894645999125906], [-118.36129000000024, 33.8946529991259]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Redondo Beach", "metadata": {"sqmi": 6.24555882131, "type": "standalone-city", "name": "Redondo Beach", "slug": "redondo-beach"}, "cases": 107.0, "population": 0.6869542886492039, "external_id": "redondo-beach", "slug": "redondo-beach-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/redondo-beach-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.518518, 34.22080299912185], [-118.518617, 34.19260399912219], [-118.518417, 34.186403999122305], [-118.5623180000001, 34.18650399912217], [-118.562319, 34.193803999122224], [-118.56211900000015, 34.201003999122015], [-118.56221900000014, 34.22010399912182], [-118.518518, 34.22080299912185]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Reseda", "metadata": {"sqmi": 5.86549089197, "type": "segment-of-a-city", "name": "Reseda", "slug": "reseda"}, "cases": 240.0, "population": 0.8125355078837394, "external_id": "reseda", "slug": "reseda-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/reseda-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.69144534122944, 34.81809381608004], [-118.69156102425801, 34.818008150724005], [-118.69115658409065, 34.78207662030422], [-118.6781302270347, 34.782051952511], [-118.67801307084945, 34.746046171429775], [-118.67613261154446, 34.74579653951029], [-118.67451773647487, 34.7452247147823], [-118.67294580392753, 34.74500663283228], [-118.66886273683848, 34.743509446989016], [-118.6676220277569, 34.74290783471032], [-118.66688473293097, 34.74279799990152], [-118.66550384593873, 34.74218056198296], [-118.66285410011129, 34.74148835114605], [-118.66205915438721, 34.74139525372864], [-118.660721690654, 34.7416163531032], [-118.65491603577689, 34.73901243436991], [-118.6551956544785, 34.73825006259377], [-118.65485410011131, 34.73792471478252], [-118.65456573576239, 34.73795883353337], [-118.65383987081974, 34.73849396013948], [-118.65113335631783, 34.73814206002154], [-118.64876791469696, 34.73723278739559], [-118.64817733620539, 34.73714979918323], [-118.64754936649359, 34.73732187636423], [-118.64585234822562, 34.73692412746184], [-118.64422682738407, 34.73603380569153], [-118.6432576167749, 34.736256060260544], [-118.64184084561342, 34.735786162819714], [-118.64156059972142, 34.735802174157726], [-118.64140478506788, 34.735991054355004], [-118.64186783516095, 34.73672393392315], [-118.64171429239647, 34.73687692518576], [-118.64138717203849, 34.73636381363903], [-118.64045451256213, 34.735971862855926], [-118.64090691586772, 34.735403035758374], [-118.64087245669131, 34.735103022134645], [-118.64038145194984, 34.73483382693996], [-118.63891803567036, 34.73455023872928], [-118.63589991498918, 34.73468523869639], [-118.63481818181857, 34.73432237973112], [-118.63406818644904, 34.73455931017863], [-118.63312479995851, 34.73460380954145], [-118.63155899161566, 34.73435993742725], [-118.62823155106078, 34.73341460557773], [-118.62747830851308, 34.733386106027226], [-118.62675935803064, 34.73342369648665], [-118.62498249977304, 34.73389546851594], [-118.62245006347818, 34.733858890092385], [-118.62112841038, 34.73426806779661], [-118.61852299439428, 34.73439642375939], [-118.61674940386335, 34.735675856056965], [-118.615097383546, 34.73625833965379], [-118.61333531562168, 34.73541850524179], [-118.61253355487143, 34.735254100232396], [-118.61056319102035, 34.734433805691516], [-118.60931268773514, 34.73460419791307], [-118.60765454545485, 34.73434965245851], [-118.60643208530327, 34.73439642375944], [-118.604667548887, 34.7349237966746], [-118.59874974843528, 34.735861315802836], [-118.59743618547715, 34.733840099805086], [-118.59689063850941, 34.73327574940736], [-118.59359042543029, 34.73150249550141], [-118.59173334061796, 34.72903663333434], [-118.58884519232694, 34.72604848401674], [-118.5812312120231, 34.72188087039616], [-118.57773810804191, 34.71830486146471], [-118.57681713380346, 34.71763668706], [-118.57464530839763, 34.71705932963864], [-118.57090651651612, 34.71702401141169], [-118.57049519246624, 34.7167886069356], [-118.5699115247998, 34.715661926735], [-118.56952202775693, 34.71539874380146], [-118.56655678388393, 34.71483437383825], [-118.56091773647499, 34.712851987509936], [-118.55872124474851, 34.7124711351981], [-118.55417228192935, 34.710788351146306], [-118.54870230595452, 34.71024149621466], [-118.53816479713207, 34.70781598961357], [-118.53586258834899, 34.70660032342384], [-118.53065641652428, 34.70470154684311], [-118.52717657321149, 34.70278965289259], [-118.51940724444997, 34.701104914775065], [-118.51929251023903, 34.64425045980793], [-118.52297443621943, 34.64232970566717], [-118.5237657830749, 34.641366452001485], [-118.52530882037966, 34.64070606688184], [-118.52583287666181, 34.63986403636681], [-118.52610792669027, 34.63973289570174], [-118.5273080428667, 34.639708765629656], [-118.52889972938051, 34.63870606692475], [-118.52925710274566, 34.63812682651302], [-118.52928671023882, 34.63744438187473], [-118.52962175730116, 34.63625882298118], [-118.52955765214115, 34.63531266306264], [-118.53098079832566, 34.63394069713075], [-118.53318485469512, 34.63318873316585], [-118.53416967470967, 34.632365436216325], [-118.53534084548942, 34.63249565363772], [-118.53795882359923, 34.63215812004793], [-118.53879968591815, 34.63189571533373], [-118.54035882356136, 34.6318126651863], [-118.54210699136121, 34.63126843764525], [-118.5432371991756, 34.63011741045445], [-118.54463175448839, 34.63019565371748], [-118.54532121861003, 34.630016005833475], [-118.54580480214962, 34.629534263514344], [-118.54618788967038, 34.628438227264525], [-118.54695625426541, 34.628111523753674], [-118.54889134851543, 34.62660331268217], [-118.55095546036321, 34.62526676081019], [-118.55594030596927, 34.62262487373487], [-118.55864998919255, 34.62179192573674], [-118.55974335540873, 34.6212866194174], [-118.56021209326657, 34.62097572862091], [-118.56163418836654, 34.61940303597853], [-118.56169216445143, 34.61846888023598], [-118.56100317798617, 34.6177826500775], [-118.56100255687872, 34.61706408101835], [-118.56052428651286, 34.61594385136355], [-118.56121785763847, 34.61489895106972], [-118.56125812101018, 34.614059356959295], [-118.56041343444195, 34.61345153769751], [-118.5603029530358, 34.61308488329649], [-118.5608418767229, 34.61232795448033], [-118.56271515882646, 34.6107088192586], [-118.56285020009173, 34.610231880701186], [-118.56249626310259, 34.60948199556683], [-118.56063876926477, 34.60845666325173], [-118.56063085456404, 34.6073980955193], [-118.5609406548108, 34.60660003282423], [-118.56037166546523, 34.60622750859522], [-118.56030689294943, 34.606005119095315], [-118.56079341228619, 34.60504520813433], [-118.56092852822873, 34.60394160780316], [-118.56057576402439, 34.60363853799654], [-118.56024589984936, 34.60361562393114], [-118.55937646421029, 34.604127449840036], [-118.55857924581713, 34.60493784016399], [-118.55714077486111, 34.60534853431785], [-118.55693501815688, 34.60529089100695], [-118.55685943771041, 34.605062067166465], [-118.55735812107743, 34.60427700463528], [-118.55717840363414, 34.603380832489385], [-118.55767752930245, 34.60281608150047], [-118.55799852015194, 34.6018590829597], [-118.5592333404746, 34.60090881957165], [-118.56024175768927, 34.599082634453495], [-118.56195754780188, 34.59753027405138], [-118.56297261799418, 34.596250717675126], [-118.56398873383145, 34.594612126581545], [-118.56404976028648, 34.59396378150228], [-118.56373807211138, 34.59359756503325], [-118.5630177365352, 34.59327016932594], [-118.56181930318829, 34.59334873276721], [-118.5616762512541, 34.59324601436301], [-118.56171162122058, 34.592166856136664], [-118.56224513014742, 34.591180769224245], [-118.56234066964208, 34.590563781540624], [-118.5613316114519, 34.58914176355501], [-118.56129633477308, 34.58757125212864], [-118.56151398302673, 34.58680909000904], [-118.56141389284063, 34.586465734906824], [-118.56106748231774, 34.586198743919276], [-118.55986388190777, 34.58597215172119], [-118.56045580083594, 34.58504929958277], [-118.56039571078985, 34.58433846224234], [-118.56002517330307, 34.5839679242684], [-118.55879451529759, 34.58341249791587], [-118.55856061330987, 34.58292754264172], [-118.55797170575153, 34.582458816725385], [-118.55772509749654, 34.581315144457754], [-118.55711089762173, 34.58059582964877], [-118.55659475491939, 34.58025328910954], [-118.5554376562716, 34.57999155379957], [-118.55532307369685, 34.5795716812963], [-118.55581607740929, 34.5786629444857], [-118.55680357533038, 34.57749518657133], [-118.55673761889079, 34.57693251659908], [-118.55627431974102, 34.575878094444874], [-118.55624829574613, 34.575200601162024], [-118.55656025193869, 34.57463684562422], [-118.55719571095268, 34.57398880873569], [-118.55762467544623, 34.572450295157964], [-118.55857550307582, 34.57125573640958], [-118.55874110878914, 34.57074084451066], [-118.55868149408005, 34.570273774239595], [-118.55751389303373, 34.56762937129984], [-118.55610428697038, 34.56637960418846], [-118.55566375164862, 34.56569220001353], [-118.55553254271365, 34.56517883388429], [-118.55571960998597, 34.56404073713034], [-118.55641437641204, 34.56313643297795], [-118.55860568911154, 34.561687631214006], [-118.56075839152709, 34.56120125465427], [-118.56133262659468, 34.56085436648395], [-118.56169346601894, 34.56026318996254], [-118.56166489169665, 34.559441607818115], [-118.561032360718, 34.55873050189611], [-118.55982860674546, 34.558431911283684], [-118.55821922999756, 34.5586639599567], [-118.55631426961133, 34.559993174391465], [-118.55258520058214, 34.561405668629604], [-118.55146496316979, 34.56135232866104], [-118.54962121858657, 34.560183992340505], [-118.54885454544346, 34.56003147052465], [-118.54797878128467, 34.560220356187635], [-118.54694573027523, 34.56092328560973], [-118.54603139724743, 34.561323419973355], [-118.54457037565963, 34.56130571426388], [-118.54378646998069, 34.56093579650797], [-118.54304990674582, 34.56018320347641], [-118.54176146138646, 34.557042416807946], [-118.54036284422384, 34.55471728012507], [-118.54026710215952, 34.55392433456135], [-118.54065840738791, 34.55317517317322], [-118.541534524242, 34.55240744193792], [-118.54677228357123, 34.54843132305195], [-118.54988485458051, 34.54719782407594], [-118.55497755587608, 34.544446401190534], [-118.55600647151483, 34.54419563970623], [-118.55846791486583, 34.544130847267375], [-118.56016336593223, 34.54326970346909], [-118.56182424986231, 34.54165427403064], [-118.56514527647603, 34.53791444389839], [-118.56701110348291, 34.53372967436338], [-118.57041800351254, 34.530323535016485], [-118.57148071679885, 34.52805236558498], [-118.57451515896993, 34.5259815466001], [-118.57798163983706, 34.52181444388053], [-118.57873745560885, 34.52025840566951], [-118.58145886708786, 34.5173007861726], [-118.58266606079978, 34.51665639435946], [-118.58392486141607, 34.51647781535923], [-118.59312299421401, 34.51903993827007], [-118.5941725813629, 34.51908612299178], [-118.59501989039393, 34.51878425103498], [-118.59581152483265, 34.51801079878253], [-118.59636197213885, 34.51652669205209], [-118.59657398240978, 34.51651293579931], [-118.59629403374984, 34.516404941867755], [-118.59637981618295, 34.51595586062031], [-118.59640941548197, 34.51632622394917], [-118.5965399388082, 34.51631336821591], [-118.59659906809969, 34.51477217335607], [-118.59719647914325, 34.512215617233196], [-118.59832435505086, 34.51096293911665], [-118.60193262651374, 34.50847254825425], [-118.60269571103011, 34.50756153601973], [-118.60294903557397, 34.505795420978366], [-118.60360242362727, 34.503118356809985], [-118.60416500674516, 34.50170382719155], [-118.604703863805, 34.50119209332619], [-118.60676336574812, 34.499933339672964], [-118.60821468522481, 34.498146250708984], [-118.60887416373107, 34.497620978125674], [-118.61019365840289, 34.497168696132874], [-118.61652284094049, 34.49745842151352], [-118.61646303856394, 34.49822410076037], [-118.61814241305626, 34.502934536954], [-118.61892730389535, 34.50322813456262], [-118.61863647474472, 34.50384910090503], [-118.61795601157966, 34.504495379219314], [-118.61692000113601, 34.50446050131412], [-118.61698279886085, 34.50598215402894], [-118.61767053905164, 34.50628672296425], [-118.61873417629806, 34.50617691507223], [-118.6203172721885, 34.50548140708759], [-118.62211151232559, 34.507223144708135], [-118.63279476027965, 34.50716763580372], [-118.63343298993657, 34.50786738322758], [-118.63320219993415, 34.5080171106167], [-118.63436040256609, 34.50900788868631], [-118.63526678261819, 34.51083357370493], [-118.63576650892743, 34.51083389816561], [-118.63621560692009, 34.511519342460716], [-118.63598143920673, 34.51162295573024], [-118.63654444380006, 34.51249553806917], [-118.63642762759619, 34.512552152008524], [-118.63799971885547, 34.514966166103726], [-118.63845582276828, 34.51492832049645], [-118.63892379927942, 34.51536450425173], [-118.63916280507458, 34.51527616619625], [-118.64173536167299, 34.51656320140545], [-118.64288279486698, 34.51586958277141], [-118.64266178190435, 34.51523992058791], [-118.64348059560706, 34.51507725025385], [-118.64039904680152, 34.509269253045794], [-118.63942833802002, 34.508501497533395], [-118.63880906292567, 34.509038039544244], [-118.6371179444342, 34.50876782161785], [-118.63705040176072, 34.50844376074915], [-118.63658013221021, 34.50837835404414], [-118.6366941508092, 34.5079611759781], [-118.63896211011352, 34.508132766630695], [-118.63903271110452, 34.50748639661552], [-118.63928564083274, 34.507512925860176], [-118.63933774405231, 34.507213296209564], [-118.63888626933603, 34.50721306264498], [-118.63888216475837, 34.506535783929195], [-118.63765893510309, 34.50579421167156], [-118.63716772401699, 34.50579679038477], [-118.63736389982537, 34.50617403480643], [-118.63726050996567, 34.50620549118244], [-118.63577566568485, 34.50593702989988], [-118.63579474370327, 34.50564491231973], [-118.63533294056182, 34.50552100899098], [-118.63306988812268, 34.50543860451466], [-118.6329770710197, 34.50523687104469], [-118.63247684722712, 34.50550736939287], [-118.6316633442705, 34.50446660972265], [-118.6322755157313, 34.504138183213335], [-118.63031098860803, 34.501424167278955], [-118.63036313958482, 34.50092122482144], [-118.63144408261913, 34.50015065009351], [-118.63404470553277, 34.49959208049052], [-118.6339617399341, 34.49837376883295], [-118.63308972660292, 34.49766697288239], [-118.63247608435995, 34.49752010855625], [-118.63211083294728, 34.497232492937435], [-118.63146427920373, 34.4978783695836], [-118.62973677371647, 34.498323515048995], [-118.62940224423005, 34.49827485295406], [-118.62900744492052, 34.49784031439963], [-118.62853284668178, 34.497834556645785], [-118.62859566665668, 34.498180437842805], [-118.62847947009791, 34.498224868523465], [-118.62808483912619, 34.49808017296587], [-118.6278183501601, 34.497314230650865], [-118.62781743658375, 34.49634846200512], [-118.63012480698447, 34.49634705965063], [-118.63003986567593, 34.4926984378849], [-118.63439132267126, 34.49270440954759], [-118.63447645033298, 34.4963530183693], [-118.64833543957346, 34.49633886967816], [-118.6482262125282, 34.48909118453746], [-118.65134389576865, 34.48907999234852], [-118.65132620877448, 34.48838901882277], [-118.65248770584566, 34.48838904613696], [-118.65250526914066, 34.48907578838563], [-118.65374751812891, 34.489075782526484], [-118.65426014223749, 34.487913105859796], [-118.65332907272915, 34.487453203842776], [-118.65266957842957, 34.48645220323546], [-118.65158486209121, 34.48603603530846], [-118.65157995140645, 34.48545966254139], [-118.65597900470797, 34.485471830546246], [-118.65594071038667, 34.483653010938916], [-118.66026991596034, 34.48366531741147], [-118.66025740951665, 34.48184608404435], [-118.67808453954109, 34.48160081997346], [-118.68599132673813, 34.48171217180006], [-118.68599310462095, 34.48145205736046], [-118.68655032665633, 34.48165939560138], [-118.72956297831763, 34.48122198010897], [-118.73849200000028, 34.49917599911882], [-118.74615600000023, 34.51405599911852], [-118.77576400000022, 34.574427999117724], [-118.79387700000039, 34.610992999117386], [-118.81729500000027, 34.65752099911687], [-118.84795600000028, 34.72139099911606], [-118.84820400000035, 34.72143799911606], [-118.88736200000022, 34.80189799911518], [-118.87947000000024, 34.801571999115204], [-118.85901000000023, 34.80158099911513], [-118.85901000000034, 34.817776999115], [-118.79068600000028, 34.81770499911497], [-118.69144534122944, 34.81809381608004]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Ridge Route", "metadata": {"sqmi": 292.673206784, "type": "unincorporated-area", "name": "Ridge Route", "slug": "ridge-route"}, "cases": null, "population": null, "external_id": "ridge-route", "slug": "ridge-route-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/ridge-route-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.3519740000002, 33.795781999127186], [-118.34565700000022, 33.790951999127365], [-118.34192200000022, 33.78765099912729], [-118.340491, 33.78663499912738], [-118.34048000000026, 33.78613299912744], [-118.33415000000025, 33.780799999127375], [-118.33272, 33.78021699912735], [-118.3300050000002, 33.78041699912738], [-118.32990500000011, 33.7852159991273], [-118.3280050000002, 33.7852159991272], [-118.3280050000002, 33.78611599912734], [-118.32560500000011, 33.78631599912725], [-118.32547000000015, 33.785858999127306], [-118.32448900000014, 33.785914999127264], [-118.32165700000014, 33.785681999127256], [-118.319009, 33.784663999127346], [-118.31903600000014, 33.78442299912729], [-118.31848900000021, 33.78461599912726], [-118.316856, 33.783858999127304], [-118.31633200000016, 33.783795999127314], [-118.31900400000016, 33.78170899912735], [-118.31805200000011, 33.781712999127365], [-118.31760500000019, 33.7809169991273], [-118.31741200000027, 33.78091699912735], [-118.31722000000018, 33.780603999127415], [-118.31663300000022, 33.780566999127316], [-118.31655400000014, 33.78007199912729], [-118.31572500000016, 33.779533999127324], [-118.315946, 33.77911099912741], [-118.31657700000011, 33.778736999127396], [-118.31607300000015, 33.7786899991274], [-118.31633900000014, 33.77813899912743], [-118.31572300000016, 33.77708199912748], [-118.3161450000001, 33.77688299912744], [-118.31677500000015, 33.77718299912742], [-118.31829600000025, 33.77528599912738], [-118.31840500000028, 33.77081699912754], [-118.31830500000018, 33.77011699912747], [-118.31850800000014, 33.76864699912761], [-118.31860000000012, 33.764974999127546], [-118.32204000000023, 33.76507999912752], [-118.32220500000018, 33.76516199912757], [-118.32170500000021, 33.7652029991276], [-118.32154900000018, 33.76535299912751], [-118.321546, 33.76568799912753], [-118.32245400000014, 33.76651199912749], [-118.32327600000013, 33.768470999127516], [-118.32412100000016, 33.768109999127546], [-118.32563600000017, 33.768225999127495], [-118.32577300000018, 33.76798299912763], [-118.32616100000011, 33.767986999127494], [-118.32621800000011, 33.76775899912756], [-118.326647, 33.76786499912751], [-118.32699800000015, 33.767048999127496], [-118.32806400000021, 33.76770199912754], [-118.33000000000015, 33.76739599912756], [-118.33171400000015, 33.76681899912755], [-118.33152500000023, 33.76816099912746], [-118.33081400000015, 33.76863899912755], [-118.33152700000022, 33.769350999127596], [-118.33235600000023, 33.768916999127555], [-118.33304200000012, 33.76825699912757], [-118.33340500000018, 33.76701699912753], [-118.33575500000016, 33.76623499912753], [-118.33602500000012, 33.766670999127484], [-118.33641200000014, 33.76653599912758], [-118.33726000000019, 33.76716399912757], [-118.33553500000014, 33.768208999127616], [-118.3332050000001, 33.76901699912752], [-118.33254100000018, 33.77211999912744], [-118.33702400000014, 33.772249999127474], [-118.338211, 33.77262199912752], [-118.35233500000021, 33.78244999912735], [-118.3525980000002, 33.78162699912738], [-118.35318000000011, 33.781715999127464], [-118.35375500000032, 33.78227199912747], [-118.353908, 33.78291099912725], [-118.35373800000012, 33.78300399912737], [-118.3540330000002, 33.7832489991273], [-118.35713100000018, 33.782550999127366], [-118.35753000000015, 33.78173699912738], [-118.35860400000023, 33.7815529991274], [-118.35873000000018, 33.78108099912731], [-118.36046100000017, 33.780874999127306], [-118.36141100000019, 33.779979999127356], [-118.36257600000016, 33.77792799912754], [-118.36185900000012, 33.77676199912745], [-118.36167700000017, 33.77539599912734], [-118.3599480000002, 33.773332999127454], [-118.36026500000027, 33.77261399912748], [-118.36070700000013, 33.77217399912754], [-118.362474, 33.77125299912754], [-118.36325100000013, 33.76945099912756], [-118.3642150000001, 33.76849299912751], [-118.3665550000002, 33.7677139991276], [-118.36727400000024, 33.767645999127495], [-118.369501, 33.7683239991275], [-118.37055000000012, 33.76817999912756], [-118.37130200000016, 33.769186999127506], [-118.37521700000015, 33.771594999127444], [-118.3767310000003, 33.77071399912753], [-118.377135, 33.769827999127315], [-118.37836100000011, 33.769319999127596], [-118.38070500000029, 33.768800999127535], [-118.38034500000018, 33.768327999127536], [-118.379647, 33.76667599912758], [-118.37889000000021, 33.76366099912754], [-118.3785960000002, 33.761660999127464], [-118.3789940000003, 33.76162499912758], [-118.37871000000024, 33.75928499912767], [-118.38397600000017, 33.75896999912762], [-118.3849680000002, 33.758597999127545], [-118.38739300000015, 33.75722399912775], [-118.38838300000012, 33.757077999127695], [-118.3890900000002, 33.7572489991277], [-118.38957600000018, 33.75757799912763], [-118.3909210000002, 33.75963399912762], [-118.3933440000002, 33.76099699912762], [-118.3912480000002, 33.764140999127704], [-118.3908100000002, 33.76543599912764], [-118.3905530000002, 33.76504499912762], [-118.389715, 33.765317999127596], [-118.38901600000013, 33.76574899912757], [-118.38778600000015, 33.76695599912757], [-118.38690400000027, 33.76830099912762], [-118.38082900000023, 33.76950499912749], [-118.38123300000017, 33.77090299912751], [-118.38122700000015, 33.77187099912748], [-118.38149100000017, 33.773271999127445], [-118.383622, 33.77309599912749], [-118.38379100000016, 33.77446899912742], [-118.38298500000018, 33.77471799912747], [-118.38259800000024, 33.774661999127396], [-118.38153500000017, 33.775452999127296], [-118.38133000000022, 33.7753059991274], [-118.38099300000025, 33.77585099912737], [-118.37893400000019, 33.777191999127375], [-118.37828000000017, 33.77670799912738], [-118.37464400000015, 33.77780599912732], [-118.37291900000017, 33.784290999127265], [-118.37204900000019, 33.78273599912737], [-118.3696520000002, 33.78107299912738], [-118.3700960000002, 33.779824999127385], [-118.37072400000017, 33.77890799912734], [-118.37141000000018, 33.778243999127355], [-118.37280300000012, 33.77718999912737], [-118.3748880000002, 33.77657799912738], [-118.3750530000002, 33.775323999127444], [-118.37469200000011, 33.77446999912745], [-118.37374900000019, 33.77343199912747], [-118.371916, 33.77218299912747], [-118.37125000000019, 33.77279299912741], [-118.3681390000002, 33.77155199912741], [-118.3654690000002, 33.77133599912752], [-118.3655210000002, 33.769713999127525], [-118.36449600000014, 33.76903199912752], [-118.3631370000002, 33.771325999127484], [-118.36156500000016, 33.77252399912748], [-118.36102700000018, 33.773449999127436], [-118.36137600000025, 33.774173999127505], [-118.36270900000015, 33.775437999127355], [-118.36308700000015, 33.777097999127406], [-118.3637190000002, 33.777724999127415], [-118.3643350000002, 33.77795699912742], [-118.36394000000021, 33.77884399912737], [-118.36333600000015, 33.778659999127434], [-118.36325300000017, 33.77935999912746], [-118.3642620000002, 33.781235999127354], [-118.3655070000002, 33.78562799912725], [-118.36794600000015, 33.78437899912735], [-118.36888100000021, 33.78500199912736], [-118.37059200000019, 33.785506999127314], [-118.37260200000011, 33.78551399912735], [-118.372147, 33.787475999127274], [-118.37152400000022, 33.78833799912725], [-118.36978500000019, 33.789667999127246], [-118.36874600000023, 33.79107999912728], [-118.367912, 33.791457999127196], [-118.36873400000019, 33.792656999127175], [-118.36760200000016, 33.79347199912716], [-118.36750600000016, 33.79441599912723], [-118.36720300000019, 33.79511599912726], [-118.3519740000002, 33.795781999127186]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Rolling Hills Estates", "metadata": {"sqmi": 3.81434802056, "type": "standalone-city", "name": "Rolling Hills Estates", "slug": "rolling-hills-estates"}, "cases": 13.0, "population": 0.08112830753869196, "external_id": "rolling-hills-estates", "slug": "rolling-hills-estates-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/rolling-hills-estates-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.35295700000012, 33.781681999127265], [-118.3525980000002, 33.78162699912738], [-118.35233500000021, 33.78244999912735], [-118.34016200000016, 33.77388599912744], [-118.33800700000026, 33.77251699912749], [-118.33702400000014, 33.772249999127474], [-118.33254100000018, 33.77211999912744], [-118.3332050000001, 33.76901699912752], [-118.33553500000014, 33.768208999127616], [-118.33666, 33.767639999127574], [-118.337776, 33.76656799912756], [-118.33805500000013, 33.765750999127405], [-118.33801300000019, 33.76528699912758], [-118.33791100000015, 33.76475699912758], [-118.33730500000027, 33.76361699912757], [-118.3376540000002, 33.76342999912766], [-118.33752700000012, 33.763216999127664], [-118.33778200000029, 33.763099999127576], [-118.33647800000017, 33.76118999912751], [-118.33625200000014, 33.76147299912768], [-118.33025800000019, 33.75977499912754], [-118.330102, 33.75906999912763], [-118.33215300000012, 33.75826799912764], [-118.33110900000014, 33.75710399912772], [-118.33116000000021, 33.75569099912773], [-118.33062600000014, 33.75479199912776], [-118.32957000000019, 33.751464999127755], [-118.33008000000017, 33.75106099912769], [-118.33099900000016, 33.751488999127695], [-118.33376600000014, 33.75054199912775], [-118.33606800000024, 33.748050999127756], [-118.33663300000015, 33.747826999127724], [-118.33820800000017, 33.747620999127776], [-118.33839800000018, 33.74550799912782], [-118.33885600000013, 33.74469799912774], [-118.33941900000015, 33.744507999127855], [-118.33941900000015, 33.74309499912774], [-118.33997000000014, 33.74284199912789], [-118.34010500000016, 33.74261699912779], [-118.34450500000015, 33.74471699912779], [-118.34600500000013, 33.742116999127795], [-118.347376, 33.742527999127844], [-118.35015000000018, 33.74287099912785], [-118.35299000000012, 33.74508099912775], [-118.3555340000002, 33.74250399912788], [-118.3571050000001, 33.74281799912784], [-118.358662, 33.74512099912788], [-118.35740600000021, 33.74619999912793], [-118.35681100000019, 33.747101999127814], [-118.35616900000018, 33.7485929991278], [-118.35320500000013, 33.75071699912775], [-118.35450500000013, 33.751516999127716], [-118.35540100000011, 33.75337699912774], [-118.35450500000013, 33.75381699912777], [-118.3557620000002, 33.754810999127734], [-118.35586500000026, 33.75540899912771], [-118.3552050000002, 33.75591699912762], [-118.36433700000018, 33.75979699912763], [-118.36431500000018, 33.75998399912768], [-118.36554200000013, 33.760269999127594], [-118.36563400000027, 33.76152299912763], [-118.365715, 33.76161799912763], [-118.366194, 33.76136899912763], [-118.36668300000022, 33.76192499912764], [-118.36598400000022, 33.762687999127635], [-118.36564300000018, 33.76240899912762], [-118.36521900000025, 33.76513099912755], [-118.36569200000012, 33.76702799912757], [-118.36492600000014, 33.768176999127526], [-118.3642150000001, 33.76849299912751], [-118.36344900000017, 33.76918099912751], [-118.362474, 33.77125299912754], [-118.36070700000013, 33.77217399912754], [-118.36026500000027, 33.77261399912748], [-118.3599480000002, 33.773332999127454], [-118.36167700000017, 33.77539599912734], [-118.36185900000012, 33.77676199912745], [-118.36257600000016, 33.77792799912754], [-118.36141100000019, 33.779979999127356], [-118.36046100000017, 33.780874999127306], [-118.35873000000018, 33.78108099912731], [-118.35860400000023, 33.7815529991274], [-118.35753000000015, 33.78173699912738], [-118.35713100000018, 33.782550999127366], [-118.354328, 33.783210999127235], [-118.3540330000002, 33.7832489991273], [-118.35373800000012, 33.78300399912737], [-118.353908, 33.78291099912725], [-118.35375500000032, 33.78227199912747], [-118.35318000000011, 33.781715999127464], [-118.35295700000012, 33.781681999127265]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Rolling Hills", "metadata": {"sqmi": 3.60212631276, "type": "standalone-city", "name": "Rolling Hills", "slug": "rolling-hills"}, "cases": 2.0, "population": 0.01940052381414298, "external_id": "rolling-hills", "slug": "rolling-hills-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/rolling-hills-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.06264300000016, 34.08342899912364], [-118.0630020000003, 34.08118899912365], [-118.05966400000017, 34.08128799912366], [-118.05928600000016, 34.082107999123494], [-118.06058200000015, 34.08227299912366], [-118.06047000000012, 34.08264199912356], [-118.06003100000014, 34.08270399912356], [-118.05985800000012, 34.083242999123584], [-118.05765100000012, 34.08285899912365], [-118.05676100000014, 34.08510299912354], [-118.05615400000018, 34.08488899912366], [-118.055777, 34.08409199912366], [-118.05575500000023, 34.0807789991237], [-118.05606800000017, 34.08042999912366], [-118.05575200000014, 34.08029399912365], [-118.055601, 34.072451999123885], [-118.07292700000032, 34.07226599912368], [-118.0728540000002, 34.07095699912372], [-118.072231, 34.069679999123785], [-118.06756500000029, 34.065165999123856], [-118.068222, 34.06488199912388], [-118.06895900000018, 34.065781999123764], [-118.069121, 34.06569899912392], [-118.0689080000002, 34.06433299912384], [-118.06924000000022, 34.06410699912378], [-118.06956500000018, 34.06422899912386], [-118.07036, 34.062690999123916], [-118.0676110000002, 34.06268899912387], [-118.07024400000012, 34.0606019991239], [-118.070673, 34.05974999912389], [-118.07117700000019, 34.057210999124045], [-118.07149600000021, 34.057443999123976], [-118.07544000000016, 34.0577259991239], [-118.07562900000019, 34.05448699912407], [-118.07890000000012, 34.05441099912392], [-118.07999800000022, 34.051716999124004], [-118.08002100000017, 34.049880999123964], [-118.08185600000022, 34.04965399912406], [-118.0818310000002, 34.04447399912408], [-118.08235800000016, 34.04450999912414], [-118.08245200000023, 34.04407499912407], [-118.08091200000014, 34.044030999124146], [-118.08085900000022, 34.043586999124166], [-118.07968400000017, 34.04350599912408], [-118.07970100000018, 34.042910999124125], [-118.07920300000015, 34.042831999124125], [-118.07913200000014, 34.042585999124114], [-118.07738600000029, 34.042294999124096], [-118.07738500000019, 34.0419899991241], [-118.07936400000013, 34.042600999124126], [-118.07932600000024, 34.0423439991242], [-118.07830300000018, 34.04122299912419], [-118.07634600000029, 34.04051299912403], [-118.077833, 34.04027199912417], [-118.078132, 34.03951299912414], [-118.079354, 34.039817999124104], [-118.080698, 34.039327999124154], [-118.0782580000002, 34.03606399912432], [-118.07907900000019, 34.03531299912416], [-118.07949500000014, 34.03584399912421], [-118.080019, 34.03574799912415], [-118.0800540000001, 34.03525199912416], [-118.08041800000017, 34.03474999912422], [-118.08164600000016, 34.03423999912427], [-118.08247600000011, 34.034082999124145], [-118.08257100000019, 34.034353999124264], [-118.08305600000014, 34.03451399912425], [-118.08326100000019, 34.034993999124275], [-118.08299600000021, 34.036643999124244], [-118.08317700000026, 34.036686999124214], [-118.08296300000023, 34.037428999124174], [-118.083209, 34.03769899912425], [-118.08515400000014, 34.0376639991242], [-118.08539600000012, 34.03775199912413], [-118.08578900000019, 34.03868199912418], [-118.089711, 34.03958999912417], [-118.09068800000014, 34.040071999124095], [-118.09077898546539, 34.040450002840224], [-118.08971697178768, 34.041936005752866], [-118.09006197178826, 34.042086005753234], [-118.08901598589202, 34.04380399722181], [-118.08593598914477, 34.0425100054049], [-118.08563197178174, 34.04279100575302], [-118.08574998570838, 34.043862999960446], [-118.08430500000254, 34.0438640024294], [-118.08443600000025, 34.04316699912421], [-118.08434898589, 34.04286900078127], [-118.08386698541618, 34.04286900492409], [-118.08378098635754, 34.04316999997346], [-118.08182798589166, 34.04317400408108], [-118.08182498597223, 34.04377100356109], [-118.08298598580477, 34.04368400131657], [-118.08309798585381, 34.04439500423397], [-118.08432798592486, 34.04441900064487], [-118.08436697177885, 34.04586500575684], [-118.0840299717781, 34.04697900575828], [-118.08419998570494, 34.048209004668884], [-118.08617198607443, 34.048372000215195], [-118.08616898590506, 34.04986300403629], [-118.08830298598042, 34.04989400047001], [-118.08839398595414, 34.051719003766515], [-118.09048798582899, 34.0516190011289], [-118.09049098546375, 34.05186500515446], [-118.09253198590727, 34.052148000730824], [-118.09254198589167, 34.05266700241818], [-118.091005985896, 34.05302500245934], [-118.09107198542452, 34.05398800521957], [-118.09824098615073, 34.05519800204176], [-118.10049798593595, 34.055366000067224], [-118.1005249929205, 34.05442000339649], [-118.10142098705734, 34.0544299998499], [-118.10198099637624, 34.053587007142674], [-118.1030019870003, 34.053809998160155], [-118.10340199284221, 34.05341000628184], [-118.1043979718041, 34.05364500577156], [-118.10482597180435, 34.05420900577236], [-118.10474298553585, 34.05434700505092], [-118.10501298626865, 34.054384999845674], [-118.10599298588991, 34.05534100416484], [-118.10803299114485, 34.05533799954464], [-118.10810800000017, 34.06256399912382], [-118.10697300000017, 34.06257299912391], [-118.10714300000019, 34.06404299912373], [-118.10671200000023, 34.064024999123816], [-118.10671200000023, 34.065455999123856], [-118.10713100000015, 34.06546199912378], [-118.10720500000014, 34.066221999123776], [-118.10710300000014, 34.06985899912378], [-118.10814600000019, 34.0698529991238], [-118.10815000000021, 34.07001699912377], [-118.10685100000016, 34.07110199912379], [-118.10676800000016, 34.07167499912378], [-118.101408, 34.07170599912384], [-118.10038100000013, 34.07141699912381], [-118.1000780000002, 34.07111399912373], [-118.09954300000017, 34.07116699912377], [-118.09954300000017, 34.072124999123666], [-118.0967690000002, 34.07210999912372], [-118.09666700000017, 34.07198199912381], [-118.09060600000012, 34.07220099912383], [-118.09060600000012, 34.07233299912374], [-118.08709500000013, 34.07222299912372], [-118.08719100000016, 34.074862999123745], [-118.08890700000012, 34.07485299912374], [-118.08885300000011, 34.076520999123716], [-118.08782800000016, 34.07657099912376], [-118.08788200000028, 34.080280999123616], [-118.083337, 34.08045799912362], [-118.086718, 34.08453999912359], [-118.08741800000011, 34.08574899912361], [-118.087831, 34.09174099912343], [-118.08730400000012, 34.09174399912352], [-118.08740100000017, 34.095208999123514], [-118.06220700000014, 34.08690199912355], [-118.062032, 34.085998999123625], [-118.06264300000016, 34.08342899912364]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Rosemead", "metadata": {"sqmi": 5.15664047031, "type": "standalone-city", "name": "Rosemead", "slug": "rosemead"}, "cases": 37.0, "population": 0.5534779356768886, "external_id": "rosemead", "slug": "rosemead-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/rosemead-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.8716720000003, 34.001513999124704], [-117.87109900000013, 33.99924299912468], [-117.86797100000022, 33.999780999124674], [-117.86685200000028, 33.9986249991247], [-117.86682900000024, 33.99834699912468], [-117.86460938339451, 33.99642482824501], [-117.86388295826755, 33.99645013837059], [-117.85521363917898, 33.990155158256535], [-117.85511995741186, 33.98095713833877], [-117.855227957423, 33.98022813833647], [-117.8550309574045, 33.978400138333164], [-117.85493400019368, 33.960871227961576], [-117.85845498625667, 33.95914313183329], [-117.86062160982925, 33.95725084017893], [-117.86128747225256, 33.95640114904498], [-117.86590039337976, 33.94900276641749], [-117.86693553767877, 33.94772298697796], [-117.8687089767349, 33.94593326592307], [-117.86839712505662, 33.945950726402316], [-117.86877869440288, 33.94556915478152], [-117.87019200000033, 33.945511999125486], [-117.91135000000038, 33.94589499912555], [-117.91141425104247, 33.94606572922109], [-117.91193128207426, 33.94606644936823], [-117.91186702213209, 33.94629048245677], [-117.91512185589627, 33.946976666406215], [-117.9156262077047, 33.94700380809202], [-117.91562688834074, 33.94686503826685], [-117.91956003430666, 33.94748754587738], [-117.9195594268623, 33.94608344038388], [-117.91972775586181, 33.94608354533831], [-117.91972800000028, 33.94595699912531], [-117.92575900000034, 33.94602899912533], [-117.92152000000029, 33.95955799912527], [-117.92151900000033, 33.959947999125234], [-117.91825867124444, 33.9692003121868], [-117.93304859109689, 33.97264282614802], [-117.93127241963795, 33.989887898028606], [-117.93193032775173, 33.989937459905754], [-117.93183742656878, 33.99075329132875], [-117.93015300000027, 33.9909679991248], [-117.92249796404523, 33.9903281383781], [-117.9139589632042, 33.989929138374805], [-117.91294096310408, 33.989743138374116], [-117.9118099629927, 33.98929413837476], [-117.9116349629742, 33.99224713837821], [-117.91121496293236, 33.993781138381074], [-117.91095396290635, 33.99406313838341], [-117.9103229628441, 33.99405713838064], [-117.9101039628227, 33.9938811383808], [-117.907138342267, 33.99371744510482], [-117.90673700000036, 33.99389599912482], [-117.90548500000024, 33.99398899912485], [-117.90631600000025, 33.993390999124905], [-117.90591100000022, 33.993068999124894], [-117.90538800000031, 33.99316699912492], [-117.90516900000031, 33.99382499912484], [-117.90185102173244, 33.993976909836924], [-117.90206896203055, 33.99494013838056], [-117.90045596187167, 33.994906138379704], [-117.89797896162781, 33.994468138378274], [-117.89395750716774, 33.99440945270529], [-117.89371687037843, 33.99633969423157], [-117.89416200000028, 33.997324999124736], [-117.88834552026425, 33.997589064710624], [-117.8882173882984, 33.998714217319936], [-117.88746781777154, 33.998658211243175], [-117.88740011977562, 33.99929485382003], [-117.88814482977467, 33.99935140934569], [-117.88803332515181, 34.0003305434803], [-117.88719380611474, 34.00026069675503], [-117.8871764713172, 34.00041793990214], [-117.88559115390399, 34.00010165379006], [-117.8836216393991, 33.99944042216002], [-117.88372830463305, 33.998607458027365], [-117.8827384745621, 33.99852148199932], [-117.88221196007238, 33.998182138379725], [-117.88222396007373, 33.99791113837954], [-117.8817949600315, 33.99793013837927], [-117.88188671828368, 33.995265102617665], [-117.87908638990902, 33.99478143415026], [-117.87383472115614, 33.99356954750109], [-117.87382789380227, 33.99540096225712], [-117.87322860890653, 33.99543179743306], [-117.8732345081478, 33.994126687920236], [-117.87313600000024, 33.99535099912473], [-117.87265900000021, 33.99530399912474], [-117.87285205645898, 33.993325487646324], [-117.87001000000022, 33.99291099912479], [-117.86972712960589, 33.993035874524374], [-117.86973500000018, 33.9944249991248], [-117.86891900000013, 33.994632999124754], [-117.86837284417807, 33.99377009212257], [-117.86508399800844, 33.996372574645335], [-117.8654290000002, 33.99693999912487], [-117.86714200000029, 33.998592999124796], [-117.8763820000004, 33.99816699912471], [-117.87613700000026, 33.99926799912469], [-117.87715500000029, 33.99923299912482], [-117.87726200000027, 33.99948399912471], [-117.87777100000025, 33.99941699912468], [-117.87787900000016, 33.99966799912474], [-117.87661900000025, 34.00011399912473], [-117.87649600000027, 34.000455999124775], [-117.87594400000027, 34.00039699912464], [-117.87465000000026, 34.001046999124675], [-117.8716750000002, 34.00163799912464], [-117.8716720000003, 34.001513999124704]], [[-117.88376496022595, 33.99757313838076], [-117.88377196022635, 33.9978401383797], [-117.88817559647816, 33.997485470587655], [-117.88831019396278, 33.99633580367614], [-117.88396796024672, 33.99562513837574], [-117.88376496022595, 33.99757313838076]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Rowland Heights", "metadata": {"sqmi": 13.1853488623, "type": "unincorporated-area", "name": "Rowland Heights", "slug": "rowland-heights"}, "cases": 55.0, "population": 0.5102040816326531, "external_id": "rowland-heights", "slug": "rowland-heights-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/rowland-heights-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.78050700000018, 34.166950999122555], [-117.780691, 34.14710699912282], [-117.77609, 34.14712299912289], [-117.77611700000016, 34.145840999122846], [-117.776481, 34.145087999122886], [-117.7759960000002, 34.14456199912285], [-117.77446700000014, 34.14407399912286], [-117.77421200000018, 34.14413699912288], [-117.77367900000016, 34.14478599912278], [-117.77274800000019, 34.143499999122824], [-117.77355700000018, 34.14316199912281], [-117.77328000000016, 34.14262099912295], [-117.77300500000014, 34.14271599912299], [-117.773168, 34.14231599912293], [-117.77262400000014, 34.1424359991229], [-117.77247800000016, 34.142803999122926], [-117.77250500000018, 34.14228299912298], [-117.77363600000024, 34.141221999122884], [-117.77342100000018, 34.140745999122935], [-117.774335, 34.13940599912293], [-117.775946, 34.13923399912291], [-117.77701800000011, 34.13931699912293], [-117.78079900000021, 34.134609999123], [-117.782562, 34.13356099912303], [-117.78334400000016, 34.13291099912303], [-117.7836, 34.130496999123096], [-117.78469300000017, 34.12918099912306], [-117.78539400000017, 34.12870299912308], [-117.78729700000017, 34.12854599912308], [-117.78739800000012, 34.12815799912307], [-117.7899010000001, 34.127319999123074], [-117.794151, 34.12542799912313], [-117.79417400000018, 34.12360099912314], [-117.79309100000012, 34.12368099912307], [-117.79298500000013, 34.12227299912315], [-117.79398300000021, 34.12242899912323], [-117.79396100000015, 34.119076999123166], [-117.79179400000018, 34.11911999912317], [-117.79174000000015, 34.11607599912318], [-117.79174000000015, 34.11570599912316], [-117.79404300000023, 34.11570599912316], [-117.79406300000015, 34.106661999123354], [-117.79171600000011, 34.10666599912337], [-117.79173600000018, 34.10404699912344], [-117.79134700000014, 34.103019999123354], [-117.79403600000018, 34.1030249991234], [-117.79400800000013, 34.1022659991234], [-117.79588700000019, 34.10273199912343], [-117.796251, 34.10121399912346], [-117.801299, 34.10122599912341], [-117.80139200000022, 34.100461999123375], [-117.80138300000019, 34.099402999123406], [-117.79871000000013, 34.099484999123426], [-117.79786400000012, 34.09990599912338], [-117.797281, 34.09974599912336], [-117.79707500000028, 34.0995809991234], [-117.7971480000001, 34.09934799912342], [-117.79654900000024, 34.09842499912345], [-117.79677800000017, 34.09707099912347], [-117.79507800000022, 34.095772999123454], [-117.79472700000024, 34.09532999912351], [-117.7930440000002, 34.09529799912343], [-117.790866, 34.095923999123514], [-117.78992200000016, 34.09601099912347], [-117.78675400000019, 34.0953489991235], [-117.787726, 34.0944209991236], [-117.78916500000017, 34.09468499912347], [-117.79037100000015, 34.094580999123494], [-117.79259300000011, 34.093635999123535], [-117.79291100000023, 34.0930619991235], [-117.793172, 34.09307399912352], [-117.79242500000014, 34.0913399991235], [-117.784948, 34.09032899912358], [-117.78430600000011, 34.08925399912351], [-117.783686, 34.088976999123595], [-117.78397900000017, 34.087944999123586], [-117.78482300000017, 34.087923999123376], [-117.785064, 34.08761099912354], [-117.78577500000029, 34.08789999912362], [-117.78641100000011, 34.087883999123605], [-117.78641100000017, 34.08767299912358], [-117.78538700000011, 34.0853849991236], [-117.78433100000014, 34.08485699912359], [-117.78209100000014, 34.08482499912357], [-117.78099100000021, 34.08340899912357], [-117.78309100000016, 34.08160899912363], [-117.78364600000016, 34.08093199912368], [-117.77964000000014, 34.07904799912365], [-117.78042600000019, 34.07774699912371], [-117.78097500000023, 34.077182999123636], [-117.78162400000015, 34.076804999123716], [-117.78360000000015, 34.07628599912368], [-117.7850490000001, 34.07564199912378], [-117.788307, 34.07311599912376], [-117.79138900000018, 34.07211699912377], [-117.7923650000002, 34.07198599912377], [-117.79363300000026, 34.07120599912374], [-117.7942750000002, 34.071402999123734], [-117.7944680000002, 34.070854999123796], [-117.79519000000015, 34.07060699912382], [-117.79523900000017, 34.07022299912374], [-117.79600700000015, 34.06987799912379], [-117.79613200000018, 34.070084999123814], [-117.79712200000013, 34.06971199912376], [-117.79730000000018, 34.069916999123755], [-117.79797700000017, 34.069608999123815], [-117.79788700000019, 34.069442999123815], [-117.79897000000018, 34.06881399912383], [-117.79941600000012, 34.068343999123826], [-117.80097200000024, 34.0682099991238], [-117.80235600000022, 34.067719999123796], [-117.80315400000016, 34.06686999912384], [-117.80693000000014, 34.06514399912384], [-117.80664500000017, 34.06478899912381], [-117.807843, 34.06463399912388], [-117.80983700000013, 34.06409499912387], [-117.81240100000016, 34.063750999123855], [-117.82049600000016, 34.063567999123876], [-117.8272600000002, 34.06418799912388], [-117.82915500000013, 34.06485699912385], [-117.83174500000017, 34.06635499912389], [-117.83401300000031, 34.06712199912383], [-117.83408300000022, 34.06908799912381], [-117.83452100000012, 34.06940699912373], [-117.8350100000002, 34.07023099912386], [-117.83590800000015, 34.07027199912386], [-117.83679000000019, 34.07001399912376], [-117.83847800000015, 34.07166699912376], [-117.840055, 34.072160999123824], [-117.84204900000017, 34.071990999123706], [-117.8431000000002, 34.07233599912376], [-117.84520100000017, 34.072684999123815], [-117.84670500000026, 34.07256699912381], [-117.84651400000014, 34.07313299912374], [-117.84757400000021, 34.07455499912377], [-117.84431500000012, 34.077433999123684], [-117.84369800000016, 34.077643999123694], [-117.84290500000014, 34.07740399912371], [-117.84246400000013, 34.0782479991237], [-117.8431450000001, 34.07879899912371], [-117.84126600000018, 34.08040299912367], [-117.84343000000018, 34.08153199912363], [-117.84478600000016, 34.0819819991237], [-117.84918200000018, 34.08224099912371], [-117.84968600000016, 34.082483999123596], [-117.85352600000013, 34.08263499912372], [-117.85396800000015, 34.08305299912354], [-117.8540590000001, 34.08351899912363], [-117.85344300000017, 34.084429999123564], [-117.853478, 34.086199999123586], [-117.85210900000015, 34.08620399912364], [-117.85206700000022, 34.085855999123645], [-117.85168100000021, 34.08585699912361], [-117.85156800000019, 34.086201999123595], [-117.85091800000018, 34.0863629991236], [-117.84998000000013, 34.08705699912354], [-117.84990800000013, 34.087912999123596], [-117.84774100000016, 34.08871299912352], [-117.8463920000003, 34.088905999123604], [-117.846396, 34.09280999912347], [-117.84054900000017, 34.09579599912342], [-117.84227398555372, 34.095801002438286], [-117.84190197142419, 34.099415005769096], [-117.84200098561185, 34.10121600023176], [-117.83973899284958, 34.101237003301975], [-117.8396509929418, 34.099850002817945], [-117.84005097852307, 34.099833001054556], [-117.83990098571081, 34.09943400244612], [-117.83992097972101, 34.09611800640658], [-117.83765198481078, 34.097287000763885], [-117.83765200000019, 34.113936999123204], [-117.82884200000017, 34.11391499912328], [-117.82883800000022, 34.11439399912336], [-117.8272610000003, 34.11444799912316], [-117.826805, 34.113931999123295], [-117.82528600000022, 34.11392499912327], [-117.8254880000001, 34.115185999123234], [-117.8247790000003, 34.115249999123215], [-117.82517400000016, 34.11749499912324], [-117.824787, 34.11753799912323], [-117.82443900000021, 34.11563899912323], [-117.8231260000001, 34.115605999123275], [-117.82264300000013, 34.11564199912324], [-117.82288100000018, 34.11755499912319], [-117.82020900000012, 34.11756599912324], [-117.82030900000017, 34.126999999123115], [-117.81179300000015, 34.12543899912305], [-117.81117400000021, 34.137967999122985], [-117.81108800000014, 34.138311999122955], [-117.81023700000019, 34.139319999122925], [-117.80936800000013, 34.14111399912296], [-117.81173500000013, 34.15041599912281], [-117.81148400000018, 34.1587749991228], [-117.80146800000011, 34.15882299912276], [-117.80129200000022, 34.16693399912262], [-117.79509200000015, 34.1667059991226], [-117.7915160000001, 34.166934999122596], [-117.78050700000018, 34.166950999122555]], [[-117.8266898104492, 34.09216434987177], [-117.82643000000014, 34.091617999123514], [-117.8268660000002, 34.091227999123575], [-117.82820800000017, 34.09152499912354], [-117.82900100000018, 34.09140299912353], [-117.82956900000019, 34.09174399912352], [-117.83112803452397, 34.09216395161823], [-117.83183600000027, 34.09208499912347], [-117.8322910000003, 34.09140299912353], [-117.83311100000024, 34.09116099912354], [-117.83332900000018, 34.09070499912354], [-117.83433931065098, 34.09032570301908], [-117.835027, 34.0895879991235], [-117.83574883167239, 34.089379257323884], [-117.83673728080815, 34.0895146094377], [-117.83772900000014, 34.08846599912349], [-117.8390616266022, 34.088439373389484], [-117.83841400000017, 34.08715699912363], [-117.84312300000018, 34.08639299912361], [-117.8432215171887, 34.086649928646956], [-117.84346705557655, 34.08660475980379], [-117.84408900000015, 34.087619999123596], [-117.84416100000018, 34.08725099912349], [-117.84489371072223, 34.087223683153674], [-117.84692600000012, 34.08674899912359], [-117.84862162503335, 34.08581510335177], [-117.84906779754039, 34.08503159044359], [-117.84891400000014, 34.08466999912364], [-117.84927296953602, 34.0843916180329], [-117.84949812908549, 34.08336834717927], [-117.84881509985331, 34.0826989546284], [-117.8476073711695, 34.08329348395776], [-117.84743490733749, 34.08279087634678], [-117.84697267204537, 34.08280736860099], [-117.84540512666682, 34.08301814914049], [-117.8449382343527, 34.08372845798185], [-117.84383696078558, 34.08433368858359], [-117.84242864860458, 34.083986669627464], [-117.84009598126516, 34.08430908870131], [-117.83745500000025, 34.084928999123576], [-117.83793751925452, 34.085946089119595], [-117.8267302570159, 34.08895519265361], [-117.82135000000015, 34.0906119991235], [-117.82094800000017, 34.09090099912353], [-117.82069985564306, 34.09216398188073], [-117.82231261511059, 34.09216431163569], [-117.82337100000011, 34.09146499912351], [-117.8243360000001, 34.091953999123476], [-117.82453400000018, 34.09163999912352], [-117.82417000000014, 34.09109099912362], [-117.824349, 34.09099699912354], [-117.82542600000019, 34.09148099912347], [-117.82570976088546, 34.092164365140206], [-117.8266898104492, 34.09216434987177]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "San Dimas", "metadata": {"sqmi": 15.6282037911, "type": "standalone-city", "name": "San Dimas", "slug": "san-dimas"}, "cases": 29.0, "population": 0.3451559152582719, "external_id": "san-dimas", "slug": "san-dimas-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/san-dimas-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.42346700000014, 34.296321999121], [-118.42140100000024, 34.294374999121096], [-118.41843700000018, 34.29654099912103], [-118.415667, 34.29393199912117], [-118.41863200000016, 34.2917639991211], [-118.41712300000015, 34.29035599912116], [-118.42729100000012, 34.28293999912138], [-118.427921, 34.28227599912118], [-118.43056900000022, 34.2805489991211], [-118.43037000000011, 34.280349999121256], [-118.4321750000002, 34.27867299912127], [-118.43377600000017, 34.27745299912122], [-118.4357120000002, 34.27930999912122], [-118.43597600000011, 34.27897299912124], [-118.443734, 34.27330999912139], [-118.44707566822747, 34.276468121540624], [-118.45001300000013, 34.278929999121246], [-118.452462, 34.281320999121306], [-118.45232934689149, 34.281436876378315], [-118.45549100000018, 34.28441599912131], [-118.45631000000022, 34.28466999912119], [-118.44944100000018, 34.289698999121086], [-118.45000200000021, 34.29040399912111], [-118.44926000000015, 34.291065999121166], [-118.4455000000002, 34.29440599912111], [-118.44478100000025, 34.293802999120985], [-118.44469700000015, 34.29387099912119], [-118.4435720000002, 34.294874999121014], [-118.44347300000011, 34.29515599912108], [-118.44247300000013, 34.29585599912112], [-118.43256900000021, 34.30468699912103], [-118.42346700000014, 34.296321999121]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "San Fernando", "metadata": {"sqmi": 2.38776063448, "type": "standalone-city", "name": "San Fernando", "slug": "san-fernando"}, "cases": 96.0, "population": 0.24612229201384436, "external_id": "san-fernando", "slug": "san-fernando-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/san-fernando-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.0971650000001, 34.115317999123256], [-118.09119400000016, 34.11530799912322], [-118.09119198587113, 34.114959000854064], [-118.09020199203997, 34.1149080052775], [-118.09019099990533, 34.11402100293716], [-118.0911739858759, 34.11402299994214], [-118.0910579858697, 34.10806800086343], [-118.08669198588996, 34.10810100411936], [-118.08666398589679, 34.10624900408781], [-118.0885909787633, 34.1062300005393], [-118.08857098589306, 34.1052280041107], [-118.09048697882129, 34.105215000496635], [-118.09048797868593, 34.10467300260835], [-118.09019998597682, 34.10469900351106], [-118.09014197194905, 34.10412200184352], [-118.0885499859245, 34.104138003954155], [-118.08854397885929, 34.10381800149915], [-118.08786698592674, 34.103809005135474], [-118.08790198596303, 34.10491000367152], [-118.08806398580116, 34.10489900128583], [-118.08806298588156, 34.105231000031914], [-118.08500298589084, 34.10525200410896], [-118.08499797196644, 34.10392200177134], [-118.08448598577681, 34.103896004508286], [-118.08450197188144, 34.10370800202903], [-118.0838779860285, 34.10368800533737], [-118.08390798572056, 34.1040070000438], [-118.08214498604882, 34.10401100511241], [-118.08220097175581, 34.105598005833606], [-118.08240198587791, 34.10610800415659], [-118.08275397843786, 34.10610800038171], [-118.08272398587823, 34.105909004156544], [-118.08331998578048, 34.10588100162268], [-118.08332198586979, 34.10626399996229], [-118.08220998588692, 34.10626700411735], [-118.08230198586486, 34.113507000032214], [-118.08137799058365, 34.11351300136584], [-118.0812730000002, 34.10560399912331], [-118.07781900000018, 34.105596999123414], [-118.07722000000015, 34.10495999912331], [-118.0772060000003, 34.101801999123396], [-118.07752000000016, 34.101816999123436], [-118.0775560000001, 34.101441999123246], [-118.07782300000022, 34.10144399912343], [-118.07764800000018, 34.09887199912336], [-118.08147800000026, 34.098971999123414], [-118.08143200000016, 34.09358199912356], [-118.08222600000019, 34.093798999123486], [-118.082801, 34.097159999123406], [-118.0823692093208, 34.09793456005312], [-118.0823692164156, 34.09896115021226], [-118.08299500000018, 34.098971999123414], [-118.08288200000014, 34.09860699912342], [-118.0830851585704, 34.09859923959463], [-118.08308427215601, 34.09844654665595], [-118.0837248451351, 34.09844247582766], [-118.08370764626018, 34.09697281837055], [-118.0849347557486, 34.096965671129645], [-118.08493107511732, 34.09653095722504], [-118.08608683686097, 34.096523958396695], [-118.08609110817792, 34.09671146923711], [-118.08634800000016, 34.096708999123486], [-118.08630882701168, 34.096908379590644], [-118.08668906419803, 34.096905369621076], [-118.08676600000015, 34.09710199912338], [-118.08669300000022, 34.09740999912348], [-118.0862960000002, 34.09740999912348], [-118.08622095521335, 34.09788900840077], [-118.08670274849716, 34.09788747676349], [-118.08671909419166, 34.09856447128152], [-118.0876680000002, 34.09854199912347], [-118.08767056505711, 34.09867897316223], [-118.08799838719888, 34.09867718399343], [-118.0879974063734, 34.098561773630166], [-118.08878700000018, 34.098511999123446], [-118.08887000000018, 34.098964999123446], [-118.08935300000022, 34.09902299912342], [-118.08952000000016, 34.0983419991234], [-118.08762800000021, 34.095283999123474], [-118.08740100000017, 34.095208999123514], [-118.08730400000012, 34.09174399912352], [-118.087831, 34.09174099912343], [-118.08741800000011, 34.08574899912361], [-118.086718, 34.08453999912359], [-118.083337, 34.08045799912362], [-118.08788200000028, 34.080280999123616], [-118.08782800000016, 34.07657099912376], [-118.08885300000011, 34.076520999123716], [-118.08890700000012, 34.07485299912374], [-118.08719100000016, 34.074862999123745], [-118.08709500000013, 34.07222299912372], [-118.09060600000012, 34.07233299912374], [-118.09060600000012, 34.07220099912383], [-118.09666700000017, 34.07198199912381], [-118.0967690000002, 34.07210999912372], [-118.09954300000017, 34.072124999123666], [-118.09954300000017, 34.07116699912377], [-118.1000780000002, 34.07111399912373], [-118.10038100000013, 34.07141699912381], [-118.101408, 34.07170599912384], [-118.10818900000018, 34.071653999123676], [-118.10839900000018, 34.09559799912354], [-118.11270700000019, 34.09387299912348], [-118.11273700000011, 34.09493699912345], [-118.11307600000018, 34.096048999123425], [-118.113004, 34.09671599912344], [-118.11317100000014, 34.09671899912345], [-118.113213, 34.09790899912345], [-118.11362200000015, 34.098704999123335], [-118.11318200000024, 34.09900299912349], [-118.11377500000016, 34.09996099912336], [-118.1127950000002, 34.10040899912349], [-118.11273900000016, 34.10094099912327], [-118.11293300000011, 34.101729999123364], [-118.11686600000012, 34.10732199912337], [-118.12080800000015, 34.105414999123305], [-118.11992500000024, 34.10800399912329], [-118.11888900000018, 34.109499999123294], [-118.11822700000013, 34.110154999123324], [-118.11789300000031, 34.11111299912334], [-118.11552600000019, 34.11320899912324], [-118.11134300000019, 34.114035999123224], [-118.10844500000017, 34.11440499912318], [-118.108453, 34.11339299912324], [-118.1074610000001, 34.11338299912329], [-118.10746400000019, 34.11377799912327], [-118.106371, 34.11376699912326], [-118.10637400000016, 34.11336099912322], [-118.09981200000014, 34.11346699912328], [-118.09815300000017, 34.1152659991232], [-118.0971650000001, 34.115317999123256]], [[-118.08491422706146, 34.103029872156434], [-118.08974201116486, 34.10292507245114], [-118.08973200000023, 34.10236699912339], [-118.09027800000013, 34.102367999123445], [-118.09031112284887, 34.10223712347683], [-118.0897420633486, 34.10224068118768], [-118.08961600000018, 34.10032499912346], [-118.089172, 34.100309999123404], [-118.08915300000015, 34.09996599912342], [-118.08957800000016, 34.09995499912343], [-118.08956000000022, 34.09929099912336], [-118.0885030000002, 34.09930799912339], [-118.08850400000024, 34.09965099912342], [-118.08742437617518, 34.09943746818747], [-118.08678362863601, 34.09953427292639], [-118.08678547356887, 34.099689251705385], [-118.08590100000028, 34.099708999123436], [-118.08593000000023, 34.099081999123456], [-118.0852330000002, 34.099080999123444], [-118.08520200000018, 34.09950399912345], [-118.08457800000023, 34.09957199912343], [-118.08457300000016, 34.1004309991234], [-118.08226000000018, 34.10046499912343], [-118.08224000000017, 34.10083399912343], [-118.08394600000015, 34.10087699912343], [-118.08396819963396, 34.10248832254806], [-118.08449144651873, 34.102487216123166], [-118.08449994722055, 34.102951352676314], [-118.08491422706146, 34.103029872156434]], [[-118.08358100000018, 34.102635999123365], [-118.0836197037222, 34.101319072574306], [-118.08227700000029, 34.101298999123415], [-118.08228600000012, 34.10218699912331], [-118.08295400000017, 34.102183999123405], [-118.08297173343117, 34.102394466949605], [-118.08326818476237, 34.102392275081435], [-118.08327093647212, 34.102635102986], [-118.08358100000018, 34.102635999123365]], [[-118.08118994565314, 34.102437982397085], [-118.08054674586622, 34.10169786509472], [-118.08043300000013, 34.10135299912341], [-118.08044100000014, 34.10109799912341], [-118.08124200000017, 34.101201999123425], [-118.08124692246051, 34.0999290508787], [-118.07953495531754, 34.09991288702811], [-118.07954960616222, 34.10250196953035], [-118.08121474922862, 34.10254445689409], [-118.08118994565314, 34.102437982397085]], [[-118.08241000000031, 34.09924299912349], [-118.08242419637048, 34.10001054954442], [-118.08365016843143, 34.10000430714827], [-118.08365206046886, 34.0997759991234], [-118.0830240000002, 34.0997759991234], [-118.08304300000015, 34.099510999123375], [-118.08337200000015, 34.09945099912339], [-118.08338400000014, 34.09924299912346], [-118.08241000000031, 34.09924299912349]], [[-118.08078856969766, 34.0992530079426], [-118.08046200000027, 34.099243999123395], [-118.08045400000012, 34.09946399912341], [-118.0814470000002, 34.09946399912341], [-118.08146567451556, 34.099271686696284], [-118.08078856969766, 34.0992530079426]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "San Gabriel", "metadata": {"sqmi": 4.16689673478, "type": "standalone-city", "name": "San Gabriel", "slug": "san-gabriel"}, "cases": 30.0, "population": 0.40955631399317405, "external_id": "san-gabriel", "slug": "san-gabriel-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/san-gabriel-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.10891600000011, 34.137623999123], [-118.10887009278927, 34.13732107287329], [-118.10849542584754, 34.13730700011943], [-118.10412838761451, 34.13730919138224], [-118.104078, 34.137586999123016], [-118.1034300000001, 34.13757899912296], [-118.10336417343899, 34.13686043732628], [-118.09451800000012, 34.136854999122995], [-118.09412797176253, 34.1344260058738], [-118.09336597176227, 34.13206500587069], [-118.091283971761, 34.127558005864344], [-118.09077497240413, 34.126115007570064], [-118.0899919855581, 34.12641000163897], [-118.08998598600881, 34.12703500291712], [-118.08820298566019, 34.12757700187364], [-118.08794598566617, 34.12705900186516], [-118.08825097913574, 34.1269560051198], [-118.08808198537064, 34.12589500132508], [-118.08935897278911, 34.12533700821674], [-118.08933298597597, 34.12501000347181], [-118.09040998569454, 34.12490400102588], [-118.0902310000002, 34.12394199912315], [-118.09030600000027, 34.123365999123216], [-118.091279, 34.12199599912314], [-118.09119400000016, 34.11530799912322], [-118.09815300000017, 34.1152659991232], [-118.09981200000014, 34.11346699912328], [-118.10637400000016, 34.11336099912322], [-118.106371, 34.11376699912326], [-118.10746400000019, 34.11377799912327], [-118.1074610000001, 34.11338299912329], [-118.108453, 34.11339299912324], [-118.10844500000017, 34.11440499912318], [-118.11134300000019, 34.114035999123224], [-118.11552600000019, 34.11320899912324], [-118.11789300000031, 34.11111299912334], [-118.11822700000013, 34.110154999123324], [-118.11888900000018, 34.109499999123294], [-118.11992500000024, 34.10800399912329], [-118.12080800000015, 34.105414999123305], [-118.12172300000019, 34.104975999123376], [-118.1279350000003, 34.111145999123245], [-118.1352960000002, 34.10644999912332], [-118.13639600000022, 34.107791999123314], [-118.13953500000014, 34.11251999912313], [-118.13836800000013, 34.112559999123164], [-118.13990900000016, 34.11396499912327], [-118.14077400000025, 34.11642199912322], [-118.14216300000017, 34.11948399912316], [-118.140158, 34.119505999123284], [-118.136203, 34.11791699912325], [-118.133192, 34.11727699912326], [-118.13076000000012, 34.1173309991232], [-118.12797000000019, 34.1179479991232], [-118.12832500000016, 34.119335999123166], [-118.12807300000023, 34.119415999123156], [-118.1282970000002, 34.12021899912317], [-118.12856300000018, 34.12023299912312], [-118.12873400000012, 34.12097199912322], [-118.128931, 34.1209679991232], [-118.129016, 34.12127399912312], [-118.129351, 34.12134999912322], [-118.12958400000018, 34.121685999123166], [-118.12944100000013, 34.12205599912318], [-118.12921000000023, 34.12213299912315], [-118.12906100000025, 34.1230259991231], [-118.13006500000012, 34.1240499991232], [-118.13077900000015, 34.126152999123114], [-118.131159, 34.12646299912308], [-118.13077000000018, 34.127452999123015], [-118.13082500000014, 34.128145999123085], [-118.13113000000016, 34.12859399912303], [-118.13099800000012, 34.129393999122975], [-118.13124900000015, 34.12978999912297], [-118.12610100000015, 34.1309349991231], [-118.1217070000001, 34.132113999123035], [-118.11959700000016, 34.13240599912304], [-118.11912200000016, 34.13260699912299], [-118.11411100000016, 34.13292299912301], [-118.114003, 34.136169999122956], [-118.11429000000018, 34.13616699912302], [-118.11429200000018, 34.136857999122974], [-118.11016100000032, 34.13680799912303], [-118.11030300000014, 34.137306999123], [-118.1093480000003, 34.137306999123], [-118.10937100000012, 34.13762399912292], [-118.10891600000011, 34.137623999123]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "San Marino", "metadata": {"sqmi": 3.78416933627, "type": "standalone-city", "name": "San Marino", "slug": "san-marino"}, "cases": 11.0, "population": 0.1327700663850332, "external_id": "san-marino", "slug": "san-marino-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/san-marino-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.10326600000029, 34.14191399912292], [-118.10283400000026, 34.14180299912295], [-118.10294900000022, 34.14127199912297], [-118.10051679146711, 34.141395758698366], [-118.10051100000028, 34.140666999122956], [-118.09967000000029, 34.14067199912295], [-118.09968200000029, 34.14145599912289], [-118.09870900000021, 34.14150899912293], [-118.09870700000022, 34.14180599912289], [-118.09741400000016, 34.141908999123025], [-118.09578000000026, 34.14176899912295], [-118.09568600000028, 34.14020499912296], [-118.09526209549479, 34.14020723805523], [-118.09520188203338, 34.13692956660138], [-118.10336417343909, 34.13686043732636], [-118.10343000000017, 34.137578999123015], [-118.10407800000016, 34.137586999123066], [-118.10412838761461, 34.13730919138229], [-118.10849542584766, 34.13730700011945], [-118.10887009278937, 34.13732107287335], [-118.10891600000024, 34.13762399912306], [-118.10937100000022, 34.137623999122965], [-118.10934800000037, 34.137306999123055], [-118.11030300000027, 34.137306999123055], [-118.11028700000034, 34.13775199912304], [-118.11074200000017, 34.138041999122926], [-118.11073200000043, 34.13841099912299], [-118.11034500000027, 34.13840499912302], [-118.11017300000024, 34.14018099912297], [-118.1105110000002, 34.14020699912296], [-118.11048300000027, 34.14117099912311], [-118.11002810873487, 34.141182925819884], [-118.11003064903659, 34.1415361675238], [-118.10830525924155, 34.1415485902697], [-118.10829600000028, 34.14080599912297], [-118.10615100000027, 34.140817999122966], [-118.1061620000004, 34.14190799912295], [-118.10326600000029, 34.14191399912292]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "San Pasqual", "metadata": {"sqmi": 0.259126738332, "type": "unincorporated-area", "name": "San Pasqual", "slug": "san-pasqual"}, "cases": 0.0, "population": 0, "external_id": "san-pasqual", "slug": "san-pasqual-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/san-pasqual-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.243705, 33.76171699912748], [-118.241153, 33.75854099912759], [-118.240767, 33.7582959991276], [-118.248966, 33.75590199912767], [-118.24347423782802, 33.742812640608555], [-118.24429601839852, 33.74254900214625], [-118.24395598650501, 33.74170699836747], [-118.2431144337411, 33.74195511570851], [-118.23715298109272, 33.72767798639429], [-118.2511719967701, 33.723593973439364], [-118.24614601707847, 33.71657699468497], [-118.2458900066818, 33.71604098278168], [-118.24599302114058, 33.71572599424], [-118.24728701532592, 33.71531698790536], [-118.25767600771394, 33.71682700730406], [-118.2603199753409, 33.723720979008085], [-118.25800299181081, 33.72869097944334], [-118.2410009762426, 33.733659980249], [-118.24714301605428, 33.74860102268353], [-118.24781297832112, 33.74913498271549], [-118.24992898369354, 33.75003101910366], [-118.2505640115372, 33.7506969828523], [-118.25173199978327, 33.749717977209144], [-118.25164897791615, 33.74964900276797], [-118.25208397461958, 33.749226001619434], [-118.25354001402094, 33.74670798731958], [-118.25335897584267, 33.74651700545779], [-118.2535979925366, 33.746597975453845], [-118.25413200518055, 33.745452978688036], [-118.2538080199726, 33.744819003086086], [-118.25324201918195, 33.744537002320314], [-118.25295901878668, 33.74446097786032], [-118.25243000429055, 33.74475097566256], [-118.25217199463471, 33.744655011222896], [-118.2528240161812, 33.743023984032924], [-118.25326800955106, 33.742417998059324], [-118.25017499779445, 33.7350090066731], [-118.24794398240822, 33.73551397744728], [-118.24780398165481, 33.73536498002772], [-118.24682597564117, 33.73554002042837], [-118.24805399427403, 33.73509097629867], [-118.24798002168524, 33.7348380174029], [-118.26044898016883, 33.73123098559386], [-118.26054199833175, 33.731425018956486], [-118.26110200134488, 33.73170602009277], [-118.26264101000139, 33.73128101968484], [-118.26255998739333, 33.73106799336021], [-118.26099398873819, 33.73158901081969], [-118.26090702096472, 33.73139297819786], [-118.26123600432071, 33.73130401116532], [-118.26120901432199, 33.73115901226431], [-118.26360502120106, 33.730474002941385], [-118.2642619882834, 33.73046900479349], [-118.26426298791294, 33.73071901741268], [-118.26267099888872, 33.731033006325006], [-118.26276701594057, 33.73124198151915], [-118.26365500268, 33.730968977419764], [-118.26463000980509, 33.73102700854745], [-118.26495599427234, 33.73087701149841], [-118.26349101081684, 33.732566017204036], [-118.26350100711262, 33.733137016142294], [-118.2638669767631, 33.73312901910578], [-118.26384298565311, 33.733654982101015], [-118.26344097672575, 33.733644985805356], [-118.26346202155898, 33.73386400990733], [-118.26363301082931, 33.73385701250043], [-118.26360402157142, 33.73416800252395], [-118.26343397931873, 33.734292009204], [-118.26416002606625, 33.73423097918749], [-118.26417602013943, 33.73435598549693], [-118.26342598228196, 33.734356985126695], [-118.26343797783701, 33.73458300663576], [-118.26503401799165, 33.73460699774581], [-118.26501402539995, 33.73497202037855], [-118.26553099172905, 33.73529500595701], [-118.26680499332276, 33.73388000398074], [-118.26691900370689, 33.73422498140995], [-118.26499597945543, 33.73611001973737], [-118.26510199280304, 33.736755990894295], [-118.26526698429585, 33.73673899719146], [-118.26635800106428, 33.738624982536436], [-118.26931501058577, 33.73733698612857], [-118.2692850216985, 33.7372299731513], [-118.26969297579119, 33.737046988326206], [-118.26975300617809, 33.73716699648778], [-118.27092599257196, 33.736708008674306], [-118.27066798291628, 33.736355981225984], [-118.26974700840069, 33.736059985646214], [-118.26824598566826, 33.73381797433472], [-118.26807499639789, 33.73390099620185], [-118.26773701637578, 33.73360799951075], [-118.26753498597655, 33.73368502360058], [-118.26824798492743, 33.733064990200496], [-118.26757102525342, 33.73337797948317], [-118.26744801820303, 33.733230981322826], [-118.26783198118581, 33.733011010203384], [-118.26830301716633, 33.73298402020463], [-118.26833100679458, 33.732682973864755], [-118.26830301716633, 33.73024498254344], [-118.26768398339601, 33.730223990322465], [-118.2676459974719, 33.730047003274564], [-118.26835899642282, 33.72975400658342], [-118.26831601235092, 33.729612006571045], [-118.26762200636202, 33.729880012522706], [-118.26736799522442, 33.72975700547224], [-118.26476101389216, 33.722464023729465], [-118.26768198413684, 33.72174197550016], [-118.26831401309178, 33.723410988614134], [-118.26852298828598, 33.723379000467645], [-118.26963299801643, 33.72636899776547], [-118.26934300021412, 33.72593400106188], [-118.2689040049922, 33.726043013298295], [-118.26910998129767, 33.726678988159314], [-118.26957202061207, 33.726569975923056], [-118.27050099216439, 33.72890300613847], [-118.2688560227723, 33.729403978394245], [-118.26908099203987, 33.72994198955649], [-118.27071001997065, 33.72951498988977], [-118.27082997552034, 33.73002900994202], [-118.26901201759887, 33.73049599479227], [-118.26907799315127, 33.73069397406113], [-118.27150099002877, 33.730183005509495], [-118.27134199631365, 33.73164399044655], [-118.27105299814087, 33.73167397933414], [-118.27095398220025, 33.73226102495785], [-118.27109698184233, 33.73230101014116], [-118.27105699665908, 33.73267997497599], [-118.27090500035092, 33.7326709783099], [-118.2703889810393, 33.73520998483073], [-118.27088700701844, 33.73602599824046], [-118.27159900633978, 33.73614600640202], [-118.27173600820433, 33.735382973360046], [-118.27149599188098, 33.73534698669547], [-118.27159200893277, 33.734754995535646], [-118.27184701969968, 33.734581007376704], [-118.27201900859961, 33.73376899248518], [-118.27174500487058, 33.733734005449875], [-118.27188800451259, 33.73314801206772], [-118.27210397711393, 33.73315101095647], [-118.27223897971922, 33.73260200386872], [-118.27249598974544, 33.73268097460566], [-118.2728370212684, 33.733227982434194], [-118.27266697901574, 33.733305006523935], [-118.27348899020296, 33.734369980310994], [-118.27333499463556, 33.73444200625301], [-118.27411901989878, 33.735896993412595], [-118.2744400062181, 33.73596502083617], [-118.27474299920502, 33.740685008652186], [-118.26996098174276, 33.74864000823721], [-118.26510199280304, 33.752262981507336], [-118.26073198056409, 33.75623398370762], [-118.25773198697038, 33.75943700733004], [-118.25446198816611, 33.76066197446229], [-118.2543449788933, 33.76047998926667], [-118.25339201623102, 33.76080697336333], [-118.25344999474657, 33.76097801524568], [-118.25238202207059, 33.76135498082145], [-118.25230899649924, 33.76122297710501], [-118.25197301573628, 33.76133098971161], [-118.2520459886956, 33.76144100157743], [-118.25128700678385, 33.76177098456299], [-118.24860899913922, 33.76274899057674], [-118.2452903394486, 33.76369062479184], [-118.243705, 33.76171699912748]]], [[[-118.29640400000011, 33.780316999127294], [-118.29590400000012, 33.77471699912734], [-118.29340400000017, 33.76381699912748], [-118.29220400000014, 33.757316999127596], [-118.292204, 33.75361799912759], [-118.2903720000001, 33.75360999912772], [-118.28855583008492, 33.75439558011875], [-118.28790001851205, 33.75411298018742], [-118.28805801259786, 33.75340697864352], [-118.28792400962196, 33.75297598045831], [-118.28345997959048, 33.75424898242231], [-118.28324100810036, 33.75360101200624], [-118.28170499833266, 33.754068996485735], [-118.28138201275415, 33.75360101200621], [-118.28036002303895, 33.75323399011415], [-118.28008601930975, 33.753301017908015], [-118.27983300780195, 33.75374101275956], [-118.27932698478605, 33.75370802498331], [-118.27906497661203, 33.75412397611272], [-118.27854101287576, 33.75395498610175], [-118.27779502614881, 33.75531500845122], [-118.27768301502365, 33.75527802215692], [-118.27843200063958, 33.75392499721427], [-118.27790798429132, 33.75374401164819], [-118.27760599093405, 33.7542770246626], [-118.27715300089808, 33.75412697500149], [-118.27703599162516, 33.75434399984455], [-118.27688699420571, 33.75429001984719], [-118.27701100088564, 33.75405400204216], [-118.27581002486345, 33.75369697644597], [-118.27403699766106, 33.7511680188329], [-118.27417899767363, 33.75070497988892], [-118.27361699540131, 33.75012798317296], [-118.27364498502955, 33.749768011300105], [-118.27409597580625, 33.749424980518015], [-118.27451297917752, 33.74845402452332], [-118.27772999761399, 33.74948601053433], [-118.27841900545502, 33.74862501379348], [-118.27498301552822, 33.746797006964485], [-118.2771919864517, 33.742835001430144], [-118.27792197910547, 33.7408230101463], [-118.27838301879018, 33.74096800904742], [-118.27794502319792, 33.74075198383395], [-118.27805098393333, 33.7404240001076], [-118.2785959925028, 33.74017198822924], [-118.27850297433966, 33.738958017022746], [-118.27825701285103, 33.73898100850287], [-118.27820697875994, 33.73882201478775], [-118.27857500028159, 33.73875698625285], [-118.27823602062985, 33.73856200587275], [-118.27869300918412, 33.73822397323848], [-118.27807097652497, 33.73536697928694], [-118.27717299348969, 33.733899996572404], [-118.27694602496294, 33.733963972865425], [-118.27676298752561, 33.73362199432498], [-118.2770429890322, 33.73335598763238], [-118.27690698679723, 33.73311097316123], [-118.2766559745485, 33.733203991324224], [-118.27608097709177, 33.73238297976669], [-118.27622597599292, 33.73232700051011], [-118.27604698968595, 33.732012011968244], [-118.27583901412122, 33.73208098640935], [-118.27556700965137, 33.731618000077574], [-118.27579897632597, 33.73153297895118], [-118.2753729762887, 33.73097497519719], [-118.27474399883461, 33.72947200581793], [-118.27434898731427, 33.729521987296685], [-118.27414900878604, 33.729124976517284], [-118.27425802102248, 33.72893099576671], [-118.27442701103358, 33.7289080042864], [-118.27476299179662, 33.729152019127945], [-118.2747040136514, 33.729237987271894], [-118.2787649825139, 33.73179898564382], [-118.27866901807411, 33.7313589907921], [-118.27788299355186, 33.73042302183298], [-118.27403199951323, 33.72778799826014], [-118.27341201872534, 33.725817991418495], [-118.27322698202879, 33.725492006951335], [-118.2729850190584, 33.72558197361342], [-118.27256201790989, 33.724632009840164], [-118.27234099454843, 33.72404601645787], [-118.2725510219845, 33.72397299088643], [-118.27118300259832, 33.720309979821025], [-118.27238897676835, 33.72002498016662], [-118.2730020127613, 33.71965501199781], [-118.27319299462305, 33.72048601985126], [-118.27549498370954, 33.72655498147937], [-118.27661798862452, 33.726084997740465], [-118.27342901242824, 33.71773198774641], [-118.2730220053529, 33.71654200764966], [-118.27324297610208, 33.716484976151534], [-118.27277599125206, 33.71550102497226], [-118.27401600543985, 33.713888990744536], [-118.27647498898241, 33.715374019403534], [-118.27664597825259, 33.7165000232073], [-118.27553802039358, 33.71965701125703], [-118.27703199310682, 33.72381099828258], [-118.27718798793339, 33.72377101309923], [-118.27827700544263, 33.72055599392193], [-118.28010801116059, 33.72512598468875], [-118.28389197740516, 33.7241720223969], [-118.28305902290477, 33.721807004035256], [-118.28148497460086, 33.72221601036951], [-118.28131298570105, 33.7217610210744], [-118.28117598383652, 33.72131597546305], [-118.28274498138029, 33.72094100914627], [-118.2818599935297, 33.71822501557761], [-118.28038701303751, 33.718537005230786], [-118.28005097966232, 33.71769800034074], [-118.28167700870434, 33.71718897843626], [-118.28197200465459, 33.71665801729295], [-118.28264701768158, 33.71684899915487], [-118.28330998254137, 33.716779025084385], [-118.28436501264486, 33.71518098567049], [-118.28457498746874, 33.71363697886625], [-118.28481700305129, 33.71377398073065], [-118.2849610023229, 33.714530016365785], [-118.28478801379352, 33.71506597565674], [-118.28533102310364, 33.71522402235455], [-118.28535601384328, 33.713752988509434], [-118.28519302160959, 33.71360499071955], [-118.28393801297801, 33.71352202146441], [-118.28391302223855, 33.71329400069598], [-118.282871986949, 33.71301299955993], [-118.28316298438108, 33.712300000609], [-118.28319402551013, 33.71172200426349], [-118.28304097696018, 33.71060199823735], [-118.28277402325023, 33.70993298298785], [-118.28009001782813, 33.70953197369003], [-118.27813100691185, 33.70869701993046], [-118.27668901493666, 33.707790987246504], [-118.27730999535416, 33.70784801874464], [-118.27772999761399, 33.70771001725044], [-118.27924101664233, 33.70861799658145], [-118.28048997488426, 33.70897602180736], [-118.28183500279015, 33.709160006262145], [-118.28336101626206, 33.70914001367057], [-118.28491701862137, 33.70866297991281], [-118.28602797536915, 33.706848020879995], [-118.2869360073125, 33.706514986393636], [-118.28803901963582, 33.70577599707366], [-118.28987502350165, 33.70530601333488], [-118.29269897706499, 33.70524198442968], [-118.29362300308141, 33.7050040199776], [-118.29412497496678, 33.70455697510701], [-118.2944079753621, 33.70453798214501], [-118.29469702614703, 33.704920998110424], [-118.29483397539948, 33.70548599927131], [-118.29480198725291, 33.70647200232178], [-118.29500701654098, 33.70690499976615], [-118.29475000651465, 33.70770601873212], [-118.29493399096941, 33.70819999358082], [-118.29746600008345, 33.71016300301544], [-118.29949698432948, 33.7104070178572], [-118.29990499103444, 33.71023997449319], [-118.30080702520003, 33.71019898968037], [-118.30263098089894, 33.71113001310388], [-118.30354401098991, 33.711261017190864], [-118.30424001623805, 33.711674022043645], [-118.30534497520841, 33.71198401243748], [-118.30744898502591, 33.71227201098073], [-118.30871498958284, 33.71285300621505], [-118.31020801527872, 33.7131579984611], [-118.31170898539888, 33.7140970189213], [-118.3134980066746, 33.714735992671166], [-118.31493699976099, 33.7147579845218], [-118.31735199960194, 33.71395701816789], [-118.3178019907491, 33.715062976767875], [-118.31830901339457, 33.71540100940237], [-118.3194029764396, 33.71570400238907], [-118.31969197461238, 33.7161330013153], [-118.31988900686379, 33.716933020651624], [-118.32063699285001, 33.71755899921705], [-118.3211079762185, 33.717677008119395], [-118.32195597777472, 33.71754100588454], [-118.32253297449067, 33.718243008910115], [-118.3233629827146, 33.718750978573084], [-118.32568901552281, 33.718865988586614], [-118.32963397474205, 33.720315977598425], [-118.33061398001499, 33.720442983167125], [-118.3315330078836, 33.72113399026748], [-118.33301780682159, 33.721927852189424], [-118.328472, 33.729421999128], [-118.32101, 33.72939699912787], [-118.320908, 33.7310559991279], [-118.32012500000012, 33.73142599912794], [-118.319823, 33.731989999127904], [-118.3185310000001, 33.731986999128], [-118.31851, 33.73525099912781], [-118.31873700000013, 33.735180999127905], [-118.319913, 33.735505999127874], [-118.320301, 33.735445999128004], [-118.32037300000013, 33.73576999912791], [-118.31998500000014, 33.735829999127844], [-118.32005, 33.73612199912798], [-118.318924, 33.73659799912792], [-118.318505, 33.73633899912791], [-118.3185, 33.73763299912783], [-118.318751, 33.73836699912787], [-118.31868, 33.73924899912775], [-118.318876, 33.740314999127854], [-118.319012, 33.740534999127796], [-118.319841, 33.74100199912782], [-118.320029, 33.741491999127796], [-118.319607, 33.74262999912782], [-118.318477, 33.74261699912774], [-118.318449, 33.74684199912776], [-118.312176, 33.74680499912788], [-118.312174, 33.747301999127735], [-118.311103, 33.747293999127685], [-118.311107, 33.74679899912771], [-118.309614, 33.74679099912772], [-118.308866, 33.75213199912773], [-118.308837, 33.75375899912767], [-118.309, 33.754651999127695], [-118.309734, 33.75615199912766], [-118.309089, 33.75712799912761], [-118.309087, 33.757727999127454], [-118.301, 33.75772099912764], [-118.301878, 33.7605109991276], [-118.309038, 33.76051499912755], [-118.30903500000011, 33.762677999127554], [-118.311606, 33.76305099912758], [-118.308833, 33.77225399912735], [-118.30868500000012, 33.773304999127376], [-118.30885, 33.774963999127465], [-118.306427, 33.77495799912737], [-118.307662, 33.77921899912738], [-118.30792769968308, 33.779179105043106], [-118.30800500000011, 33.77941699912729], [-118.298605, 33.78081699912723], [-118.297705, 33.78221699912727], [-118.29640400000011, 33.780316999127294]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "San Pedro", "metadata": {"sqmi": 12.0587181952, "type": "segment-of-a-city", "name": "San Pedro", "slug": "san-pedro"}, "cases": 533.0, "population": 0.8011321008434815, "external_id": "san-pedro", "slug": "san-pedro-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/san-pedro-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.52471200012155, 34.47721299913417], [-118.5242329999654, 34.47707899890972], [-118.52493900011234, 34.474843998950526], [-118.52479799985802, 34.47304899908684], [-118.52521500004092, 34.470884999240425], [-118.52513600008895, 34.46894299920654], [-118.52444999976905, 34.46653099895966], [-118.5289870000937, 34.466448999190014], [-118.52894899985269, 34.45931499911647], [-118.5263649997683, 34.459202999334025], [-118.52327999993258, 34.45934399902175], [-118.52120100020137, 34.45904299925324], [-118.51997800022224, 34.45917999902405], [-118.51743599987877, 34.45978499905485], [-118.51170800022373, 34.459739999211244], [-118.51172800008008, 34.45662299915066], [-118.51058399998287, 34.45656499916411], [-118.51104800002352, 34.453514999343554], [-118.51073599991189, 34.453461999238385], [-118.51045600014027, 34.452206999328055], [-118.50678499985601, 34.45231699933829], [-118.50683900007228, 34.453652999063394], [-118.50433900017295, 34.45378199896149], [-118.50402799992312, 34.453784999272024], [-118.50419899990612, 34.452445998955824], [-118.50303500004507, 34.45235799902395], [-118.50300199975217, 34.46018599894208], [-118.50316299985177, 34.46088699920572], [-118.50653600009387, 34.46147899934362], [-118.50349799982935, 34.46112899931636], [-118.50082700008993, 34.46034699926009], [-118.50031299987559, 34.46036099911658], [-118.49794199992772, 34.46102499913102], [-118.49789299985126, 34.46381799909109], [-118.49248300017146, 34.463981998899], [-118.49282199994357, 34.461588999211], [-118.49197100005692, 34.46072899915712], [-118.49209799984982, 34.459922998976865], [-118.49157800002206, 34.46005199903386], [-118.49062699979233, 34.45982799933215], [-118.49038999981775, 34.45924899934428], [-118.49049300012832, 34.456441999119896], [-118.49219900004441, 34.45323999933825], [-118.49198100024184, 34.45213499889892], [-118.49046999990188, 34.45113499902413], [-118.49083600017147, 34.45082099893525], [-118.49125499978231, 34.45075999922301], [-118.49204999994006, 34.45135199924835], [-118.4910760001492, 34.45007299902389], [-118.4918900000334, 34.45011899928676], [-118.49173099972825, 34.44910599913495], [-118.49091000018957, 34.44889999915062], [-118.49116100026885, 34.44801099898749], [-118.48976900016808, 34.44729999917813], [-118.4895880001236, 34.444892999023104], [-118.49226999993877, 34.445036999028815], [-118.49871199976793, 34.44501199911448], [-118.49864699976992, 34.438485998953524], [-118.4903490000083, 34.43859999906496], [-118.49040499989793, 34.4417159993341], [-118.48196099977918, 34.44171399910175], [-118.48203299978351, 34.43867299905614], [-118.47618399982456, 34.43872899891848], [-118.4676089997804, 34.43906299923827], [-118.46771499990837, 34.44138199933184], [-118.46310700026955, 34.44139199889575], [-118.46325300014978, 34.43741399905821], [-118.46307699985634, 34.431044999229265], [-118.45752500000464, 34.431078999235396], [-118.45745500018545, 34.42705199893768], [-118.44821900022154, 34.42725499915522], [-118.44778400016308, 34.42766399934329], [-118.44840399998213, 34.42814899897571], [-118.44807999999261, 34.42854899914163], [-118.44725900020653, 34.428520999117495], [-118.44721099979938, 34.428926999262295], [-118.44613700025496, 34.429874998991565], [-118.44609600022636, 34.43382799901333], [-118.43674500022831, 34.43395199891723], [-118.43685299978077, 34.43785599910029], [-118.4303899997512, 34.43769399919797], [-118.42747600018411, 34.43693199918722], [-118.42738400023053, 34.43406699903277], [-118.4189489998056, 34.43431499904227], [-118.41897000026138, 34.43328999925724], [-118.42036299977627, 34.431902998961476], [-118.42070800004862, 34.43105999917021], [-118.41568400003077, 34.43308899910534], [-118.4149380001268, 34.43493499919126], [-118.41477600006448, 34.437639999337755], [-118.41630600026711, 34.43747999929234], [-118.41754200021772, 34.437544999252516], [-118.41773800026013, 34.439257998936576], [-118.41502700023995, 34.43929999898234], [-118.4150950002277, 34.444999999094286], [-118.40579799982066, 34.444654999248066], [-118.40576000000361, 34.4464419993237], [-118.40474200003673, 34.44614799915695], [-118.40408200020725, 34.445436999179755], [-118.40348999998861, 34.44657699911896], [-118.40286099988349, 34.44672199900751], [-118.40248400014111, 34.44654199915759], [-118.40202699981799, 34.44708299906642], [-118.40259799997384, 34.44936399916946], [-118.39999900000186, 34.449645999161866], [-118.399229999759, 34.44964999932579], [-118.3990719998798, 34.4488039989848], [-118.39825600016272, 34.44916199906953], [-118.39709200015675, 34.44916199890266], [-118.39715599992145, 34.44844499905105], [-118.39748899987838, 34.44839899897662], [-118.39781599982116, 34.4479219993323], [-118.398165000141, 34.44781099898188], [-118.39766399983174, 34.447670998996344], [-118.3961459998988, 34.44653999895804], [-118.39467999981754, 34.44708099915361], [-118.39580499987406, 34.44940899919628], [-118.39725700005386, 34.44940899899572], [-118.39732999980683, 34.45383999934333], [-118.3935730002427, 34.45364299921155], [-118.39412000020768, 34.45405899905091], [-118.39364000010622, 34.454410998903725], [-118.3932109997541, 34.45423099914611], [-118.39237600021038, 34.454674999022345], [-118.39244599981303, 34.45504199897705], [-118.39428599974168, 34.45507899915295], [-118.39433200019262, 34.4553429989259], [-118.39417799976431, 34.45535299926034], [-118.39398400026205, 34.4556989990752], [-118.39451900004362, 34.456110998965315], [-118.39437500012254, 34.45637199904076], [-118.39342599976912, 34.456000999005916], [-118.3928940001647, 34.457200999169814], [-118.39207199975756, 34.457193998994654], [-118.39219399986453, 34.45792299928444], [-118.39215400012823, 34.46113399920949], [-118.38757300008992, 34.46100299927855], [-118.38770800009947, 34.45309799913162], [-118.38870800019961, 34.45309099907054], [-118.38872600012638, 34.45168999900747], [-118.38843000026259, 34.45168199911893], [-118.38853399975017, 34.44961599893743], [-118.38809299976059, 34.449835999282925], [-118.38857899975109, 34.44938299929581], [-118.38780600010496, 34.449073999286384], [-118.38833599983498, 34.44834999895961], [-118.38659599977207, 34.44725499924566], [-118.38645900006661, 34.44889299929075], [-118.37694899978649, 34.44890899926914], [-118.37607100027003, 34.43730999908717], [-118.37689900003079, 34.43838499929264], [-118.37759700004375, 34.43857899918094], [-118.38080099993546, 34.438610999009406], [-118.38164500008403, 34.43844999925281], [-118.38144599992305, 34.4371019992037], [-118.38114499978425, 34.437127998974006], [-118.38061400000016, 34.43503399911953], [-118.3844600000001, 34.43411899911951], [-118.3857930000001, 34.434476999119376], [-118.38644600000012, 34.43439599911944], [-118.38746300000017, 34.43501999911954], [-118.388448, 34.43535799911947], [-118.39057200000015, 34.435522999119435], [-118.39054700000013, 34.433826999119376], [-118.392348, 34.4334289991194], [-118.40245600000014, 34.42893899911961], [-118.40567000000016, 34.42803199911949], [-118.40663800000011, 34.42704899911934], [-118.41516800000018, 34.42709299911954], [-118.41521900000018, 34.4249069991196], [-118.40396900000012, 34.424823999119496], [-118.40419600000021, 34.42416499911952], [-118.405108, 34.423607999119454], [-118.4037680000002, 34.42341899911951], [-118.40421800000018, 34.423192999119586], [-118.40356500000013, 34.420771999119665], [-118.401987, 34.42128999911949], [-118.401755, 34.416403999119616], [-118.39777900000017, 34.41618799911966], [-118.39733400000027, 34.40757099911976], [-118.3970670000001, 34.39803199911995], [-118.399046, 34.399454999119705], [-118.40001, 34.40165599911987], [-118.4000960000002, 34.40313799911996], [-118.40063800000013, 34.40358799911968], [-118.40058400000017, 34.404103999119705], [-118.403813, 34.40833199911974], [-118.40633100000012, 34.40714799911988], [-118.407799, 34.40542399911973], [-118.407721, 34.40501299911987], [-118.40849400000018, 34.403496999119675], [-118.40726500000015, 34.402704999119734], [-118.40487500000012, 34.40054299911983], [-118.40321300000019, 34.40064099911973], [-118.40350700000018, 34.3995649991199], [-118.401974, 34.39914399911972], [-118.40262900000019, 34.398223999119715], [-118.403351, 34.398581999119955], [-118.40383300000012, 34.39779199911997], [-118.4022460000001, 34.39698499911982], [-118.403113, 34.39621899911988], [-118.40309900000014, 34.39458099911992], [-118.39710200000015, 34.39457699911988], [-118.39720400000029, 34.38425799911986], [-118.40529600000012, 34.38418099911994], [-118.405275, 34.380620999120005], [-118.40597299995761, 34.38086699930525], [-118.40837399980411, 34.380468998944835], [-118.40954800013877, 34.37972199928681], [-118.41090300013799, 34.37932499914333], [-118.41217499979942, 34.379246998995804], [-118.41272400016229, 34.37943099934418], [-118.41306099977069, 34.379879998948255], [-118.41334799983096, 34.38118399895417], [-118.41677899998301, 34.381097999285736], [-118.41690000024562, 34.38089499891711], [-118.41718850351506, 34.38109676225239], [-118.41747613065853, 34.381061999998025], [-118.41998429179631, 34.3799700713258], [-118.42486023586561, 34.37683940048882], [-118.42646400686871, 34.37645901028025], [-118.4299299998897, 34.37640546315197], [-118.4299360000084, 34.3737649992303], [-118.4321370000645, 34.37378899925459], [-118.43218300005084, 34.37464199899897], [-118.43363399983836, 34.37464399902595], [-118.43360899980286, 34.37580599898546], [-118.43562299988348, 34.37584799892859], [-118.4356460001784, 34.37668099895955], [-118.43882999987697, 34.37676399896186], [-118.43882700025028, 34.37381299899842], [-118.44070900022277, 34.373860999267876], [-118.44064000025627, 34.37825299899645], [-118.44254899990624, 34.378152998907716], [-118.4425100000478, 34.380472999215804], [-118.44686199998634, 34.38073499897324], [-118.44679700008241, 34.38380999922592], [-118.46303099996447, 34.383981998947526], [-118.46299100022868, 34.39137299915362], [-118.46657300023978, 34.391352999264015], [-118.47675800022387, 34.390066998979904], [-118.47821999992843, 34.389156999256706], [-118.4823300000855, 34.385879998946], [-118.48617900017238, 34.383780999297], [-118.48734399984085, 34.38293599924731], [-118.4977839999434, 34.37386099895677], [-118.49904500017428, 34.37258599933283], [-118.5006089998833, 34.37011599915023], [-118.49795299992037, 34.37009599893804], [-118.49794100004594, 34.36753199913016], [-118.49347300004403, 34.36752199922366], [-118.49347300006448, 34.3695149990751], [-118.48999300002843, 34.36949599890267], [-118.48998599990233, 34.370481999227515], [-118.48333299973285, 34.37048199898687], [-118.48335900004551, 34.36664399892958], [-118.48299900004142, 34.366636999035464], [-118.48299300014396, 34.3662259991438], [-118.47493099988286, 34.36607199921298], [-118.474673000102, 34.35607599895378], [-118.4900459999162, 34.35699699924776], [-118.49017499978919, 34.359502998987665], [-118.50017699994548, 34.359901999021446], [-118.50025700007185, 34.36046299919282], [-118.50582699985874, 34.36052099908643], [-118.50623800014988, 34.359142999064744], [-118.50625500007239, 34.35706299894666], [-118.50399599981799, 34.35015199916871], [-118.5037009999425, 34.34813099901921], [-118.50387000025304, 34.34633699914414], [-118.50439999986219, 34.344802999234865], [-118.50556799987176, 34.341924999143714], [-118.5065070000739, 34.340497999161535], [-118.51062099995532, 34.34049999919027], [-118.5108009997405, 34.34403799931823], [-118.51605300025173, 34.343941999123395], [-118.51602700010974, 34.34697099891459], [-118.52036000015683, 34.346928999187526], [-118.52027599979137, 34.35060899892529], [-118.52326000002293, 34.35174499897153], [-118.52903500019818, 34.35174999914612], [-118.53149800002655, 34.352448999171365], [-118.53341199999824, 34.35240599909913], [-118.5333899998764, 34.35310099901058], [-118.53404200023685, 34.3535889992548], [-118.54140800021912, 34.350643998907714], [-118.54287678763194, 34.350549967212075], [-118.5453555757438, 34.3514648613479], [-118.54771444538366, 34.35278199579622], [-118.55150389046801, 34.35617157468149], [-118.55180506824371, 34.356174329299016], [-118.55286263129004, 34.357154192514805], [-118.55359258048257, 34.35805253082429], [-118.55425306067004, 34.359215637770795], [-118.55523642906192, 34.361979020822005], [-118.55553400019036, 34.3616549991047], [-118.55550300005045, 34.36075099899768], [-118.55500200024318, 34.35927899898982], [-118.55485900018891, 34.35828399923786], [-118.55418899995622, 34.35681599897318], [-118.55428399999461, 34.35677199916756], [-118.55605000005399, 34.356241999280776], [-118.55808700012344, 34.35616299909139], [-118.55773299989586, 34.35706399922718], [-118.55703199991441, 34.35726099933404], [-118.555305999822, 34.358164998977934], [-118.55506000005796, 34.35843599925428], [-118.55511899974057, 34.35860799922307], [-118.55623100008427, 34.35830299901989], [-118.55688399991642, 34.35770199899212], [-118.55776399981876, 34.35738499922349], [-118.55832100022421, 34.35616399925799], [-118.55922800007762, 34.35587899920018], [-118.55966600014526, 34.355481999278034], [-118.56022299982712, 34.35590199928859], [-118.56072599974081, 34.355816999210525], [-118.56171699992174, 34.35601299904859], [-118.5620420000427, 34.35641599895883], [-118.56201199975763, 34.35728399909091], [-118.56234600001574, 34.357367999035624], [-118.56560899996688, 34.35690199928181], [-118.56630200025903, 34.35709599916212], [-118.56673300021617, 34.35773999907129], [-118.56611600001582, 34.358164999006256], [-118.56610499994036, 34.35898699892043], [-118.56541000019666, 34.35940399915909], [-118.5648579997816, 34.35943299904659], [-118.56418900002576, 34.358958999118016], [-118.56383600006676, 34.35891299900394], [-118.56237799976286, 34.35898599907446], [-118.56200800011004, 34.35913699897354], [-118.56200600000784, 34.35938499895862], [-118.56169500009419, 34.35937599895759], [-118.56158099998059, 34.35906199904637], [-118.56101899985094, 34.358827999158976], [-118.5602199998601, 34.359208999117016], [-118.5598969999707, 34.358223999303384], [-118.56000100024998, 34.357582998996854], [-118.55974499984448, 34.35756199905629], [-118.55976899989338, 34.358377998985056], [-118.55907099998896, 34.35879099912092], [-118.55914000004374, 34.35932499921076], [-118.55659200020969, 34.35921999902553], [-118.55641999986072, 34.360985998903296], [-118.55535275119598, 34.362355471508614], [-118.55639707474671, 34.364952040260434], [-118.56006831113974, 34.36982879190007], [-118.56681020934205, 34.38050946434611], [-118.57001975471539, 34.388446851274736], [-118.57302818860664, 34.40031151953872], [-118.57653199981732, 34.40825699904514], [-118.57647899986021, 34.409095998951734], [-118.57784499979428, 34.41200299896766], [-118.57923800010822, 34.41563699890285], [-118.58103699984073, 34.419237999054616], [-118.58495210234196, 34.42669004995673], [-118.5852204656333, 34.426539096176306], [-118.58663444802067, 34.429167068886215], [-118.58800913529716, 34.43082393120668], [-118.59665754226572, 34.438142279234704], [-118.597902663968, 34.43902750964606], [-118.60882231147954, 34.444809276435535], [-118.60991202443778, 34.445525869443124], [-118.61131951733142, 34.446797439797834], [-118.61345287894427, 34.44957175031619], [-118.61056800017137, 34.45064999903674], [-118.60986199987869, 34.451275999205265], [-118.60967899987062, 34.45127599923941], [-118.60900999987139, 34.45101799911742], [-118.60840599992086, 34.45049299924871], [-118.60820100013528, 34.45015399902307], [-118.60821999985028, 34.44926899932666], [-118.6076770002042, 34.44917799899871], [-118.60574299977952, 34.449516999034415], [-118.60518999992875, 34.44914999921349], [-118.60510000002516, 34.448638999332104], [-118.6042930000123, 34.44809599902275], [-118.60379099977735, 34.44732999903122], [-118.60231699998997, 34.44760399928417], [-118.60074700017917, 34.447508999267285], [-118.59971900015803, 34.448197998916214], [-118.5992439997384, 34.447943999192546], [-118.5985960000907, 34.44836099897693], [-118.59756600019907, 34.448040999058506], [-118.59635000019242, 34.44692299900114], [-118.58894499975786, 34.448391999002865], [-118.5876860001129, 34.4478769990016], [-118.58130399991107, 34.447738999005104], [-118.58442400009277, 34.45368899932942], [-118.58861700018763, 34.45688099928315], [-118.58559600012165, 34.46119399898555], [-118.57915099993228, 34.4618579991989], [-118.57901700008297, 34.46041999917838], [-118.57753999986602, 34.459921999164195], [-118.57686799990776, 34.45931399926346], [-118.57619699987015, 34.45744399894557], [-118.57566000001901, 34.45483499893632], [-118.57458599987586, 34.45428199893181], [-118.57498899995605, 34.45323099892643], [-118.5750560000918, 34.45201499930475], [-118.57478699989905, 34.45124099890679], [-118.57431699997139, 34.45090899905936], [-118.57513600016894, 34.44920699899951], [-118.57439499994696, 34.44685199902914], [-118.57420300019388, 34.44483699898004], [-118.57250700023697, 34.44605599932538], [-118.5682500002423, 34.447425999100275], [-118.5667499997978, 34.4461369990563], [-118.56514900004186, 34.445280998899655], [-118.56340900001823, 34.444760999205855], [-118.56131699978981, 34.4445359992724], [-118.56141700001618, 34.44317399908657], [-118.55749399978953, 34.44297699898953], [-118.5534570000833, 34.444251999337766], [-118.55836499980325, 34.4462569991892], [-118.55824700016231, 34.44650999892386], [-118.55830000013148, 34.44864899913958], [-118.55697300014529, 34.45081199912216], [-118.55684300005743, 34.4522079993117], [-118.55639299991113, 34.45345899915286], [-118.55665200018662, 34.455301999322245], [-118.55656100006884, 34.45562999914401], [-118.55385700026213, 34.459406999037135], [-118.55354699996073, 34.46080199926151], [-118.55299000010794, 34.46148899916295], [-118.55186500000286, 34.4624349990882], [-118.55002799982957, 34.46223899890055], [-118.54983000026367, 34.46279099913907], [-118.54926000025293, 34.462980998921864], [-118.54918800002268, 34.4645839992203], [-118.5489150001035, 34.4655099993345], [-118.54808400021393, 34.46700599897765], [-118.54448300007573, 34.4668549992049], [-118.54360499973535, 34.46591099915634], [-118.54327400020576, 34.46462099914132], [-118.54130199996901, 34.46434499904257], [-118.54084300018685, 34.465096999019686], [-118.54098700002412, 34.46520399928838], [-118.54081499983019, 34.46598899930662], [-118.539750999967, 34.46595699893057], [-118.53690899988403, 34.463429999104854], [-118.53692299988414, 34.46546999923075], [-118.53741300016164, 34.47218999927361], [-118.5364269997861, 34.47214899897536], [-118.53564800026112, 34.473069999101035], [-118.53556699981796, 34.473994998896124], [-118.53521800020644, 34.473989999226426], [-118.53470000021325, 34.473582999341524], [-118.53470499980351, 34.47443499917798], [-118.53351899998228, 34.4744139990619], [-118.53326399981181, 34.47512499910245], [-118.53227799996452, 34.475124998986985], [-118.53217600024813, 34.47525499917215], [-118.53195499983862, 34.47493699909666], [-118.53145499993659, 34.474701999316004], [-118.53050700024545, 34.475418999244134], [-118.5301660000293, 34.47546899909057], [-118.52989499986788, 34.475301998904676], [-118.5296679999523, 34.47718199909437], [-118.52471200012155, 34.47721299913417]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Santa Clarita", "metadata": {"sqmi": 57.3513787685, "type": "standalone-city", "name": "Santa Clarita", "slug": "santa-clarita"}, "cases": 411.0, "population": 2.313759992474906, "external_id": "santa-clarita", "slug": "santa-clarita-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/santa-clarita-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.0735209925438, 33.975071999867204], [-118.0730499865836, 33.97419200382496], [-118.07247299191192, 33.974469998611205], [-118.072381, 33.97396399912493], [-118.07183498648065, 33.97401199812378], [-118.07134900000021, 33.97385899912495], [-118.07147198606417, 33.97309300021643], [-118.07117999268938, 33.9730700040221], [-118.07109998660312, 33.97237099930068], [-118.07070399188083, 33.97228000539485], [-118.07084198644569, 33.97182899951024], [-118.05531999059158, 33.968263001295625], [-118.05460400000021, 33.96613499912518], [-118.05536200000019, 33.96600499912509], [-118.05485800000012, 33.96173199912517], [-118.05577500000018, 33.96143299912509], [-118.05227300000026, 33.959739999125155], [-118.0507170000001, 33.95877299912509], [-118.0528340000001, 33.95667799912524], [-118.047142, 33.955719999125144], [-118.05365300000017, 33.94929799912534], [-118.05065499030296, 33.94719300542261], [-118.0484859965001, 33.94952098854347], [-118.0482109893021, 33.947995006105636], [-118.04741898705507, 33.94877899616522], [-118.04604800000013, 33.94795499912532], [-118.04640600000016, 33.947159999125304], [-118.0479989873589, 33.94561300307877], [-118.0482979870152, 33.94543500427605], [-118.04886098147968, 33.94576099982304], [-118.04928300000016, 33.94536399912546], [-118.049028, 33.94518899912537], [-118.05023898912138, 33.9440500057219], [-118.0513929815131, 33.94480099952734], [-118.05205500000011, 33.94414399912528], [-118.05145198582996, 33.94332400208347], [-118.05087799190814, 33.94332000533501], [-118.04985700000015, 33.94267199912532], [-118.04891998645004, 33.94172999947471], [-118.04768898729533, 33.94102000449716], [-118.04574298950077, 33.94220599771319], [-118.04233699188276, 33.94002099856348], [-118.04452298756556, 33.93887900467377], [-118.04587198086126, 33.9398109989578], [-118.04618898654797, 33.939408999338724], [-118.0457439919399, 33.93931100528986], [-118.04574699297777, 33.93885200300209], [-118.04641298588619, 33.9388410001107], [-118.04640599296019, 33.93622600083285], [-118.04884498583364, 33.93568900157486], [-118.04881598592186, 33.9326780005943], [-118.04755499288481, 33.93265100339845], [-118.04759898579627, 33.93231300137047], [-118.04713099307199, 33.93235400223363], [-118.04714398587554, 33.931737000777474], [-118.04641399283959, 33.931739003552046], [-118.04642099305941, 33.9278690024151], [-118.04710998572281, 33.92782600060361], [-118.04725698579296, 33.92671600148905], [-118.04641599307824, 33.92680400203586], [-118.04641199899744, 33.92542802647698], [-118.04794697176861, 33.92665300559369], [-118.04811497176777, 33.929912005598005], [-118.04769897176661, 33.931213005599616], [-118.0477909859014, 33.93140700389876], [-118.04882098586621, 33.931395000826576], [-118.04881698587579, 33.931741004017205], [-118.05206298575723, 33.931735000001915], [-118.05189400072581, 33.929587024300595], [-118.05288898620661, 33.93003500187553], [-118.0552049858512, 33.93005400049894], [-118.05519698640248, 33.917042999547554], [-118.05188898587694, 33.91688500240322], [-118.03644799058202, 33.91700000129196], [-118.03643100000014, 33.91541299912571], [-118.03794700000017, 33.91541499912565], [-118.037849, 33.90416599912587], [-118.03679800000022, 33.904212999125846], [-118.0356630000002, 33.90356399912592], [-118.03441300000021, 33.904140999125815], [-118.034308, 33.902489999125905], [-118.02911500000016, 33.9025259991258], [-118.02889000000019, 33.882797999126105], [-118.03326400000023, 33.88492099912605], [-118.03884300000023, 33.88790999912599], [-118.055385, 33.88778899912604], [-118.055357, 33.89506099912602], [-118.06274100000023, 33.89506199912593], [-118.06276100000015, 33.89576399912595], [-118.06396900000021, 33.89568499912587], [-118.0639550000001, 33.90227099912588], [-118.06175200000015, 33.90227299912586], [-118.05893500000013, 33.90034299912586], [-118.05827200000016, 33.90014599912597], [-118.04650500000028, 33.89378299912596], [-118.04652900000019, 33.895165999125915], [-118.04227000000014, 33.895203999125926], [-118.04207800000017, 33.89693099912586], [-118.04224800000023, 33.89886499912586], [-118.044293, 33.89891799912606], [-118.04431100000022, 33.902434999125866], [-118.0537970000002, 33.902311999125885], [-118.0537980000002, 33.90321399912587], [-118.05290700000025, 33.90320999912578], [-118.0530980000001, 33.90621399912582], [-118.05037500000013, 33.906071999125786], [-118.04979200000017, 33.90693899912574], [-118.04978800000015, 33.90923799912574], [-118.055209, 33.91227399912574], [-118.05520700000025, 33.91251799912573], [-118.05539800000014, 33.91251399912577], [-118.05539500000016, 33.91237799912574], [-118.0574640000002, 33.913641999125744], [-118.0594350000002, 33.9155359991257], [-118.06041600000019, 33.91709399912568], [-118.0638160000002, 33.91708799912567], [-118.06395800000023, 33.93041499912552], [-118.06847800000014, 33.9304139991255], [-118.06825100000017, 33.92759499912558], [-118.06868400000026, 33.92790099912559], [-118.072587, 33.9278959991255], [-118.0726800000002, 33.931700999125475], [-118.08225900000012, 33.9316829991254], [-118.08215900000023, 33.93394899912554], [-118.08380700000014, 33.934025999125495], [-118.08848400000011, 33.929551999125565], [-118.094055, 33.937463999125384], [-118.09847000000013, 33.94413699912536], [-118.0982870000002, 33.94490199912536], [-118.09767400000015, 33.945907999125176], [-118.09361100000015, 33.95045999912529], [-118.09336900000011, 33.950361999125356], [-118.09314200000019, 33.95096099912527], [-118.09189100000017, 33.95229799912524], [-118.08951100000023, 33.95537099912513], [-118.087111, 33.959477999125156], [-118.08673600000022, 33.96092999912525], [-118.08686100000013, 33.96177599912516], [-118.08903200000012, 33.96681999912507], [-118.08847000000013, 33.966650999125], [-118.08771500000012, 33.96669799912506], [-118.07832900000012, 33.96376499912519], [-118.07596400000021, 33.96250399912505], [-118.07594200000018, 33.9622909991251], [-118.0742179859578, 33.96085600052536], [-118.07088699261612, 33.96049400418768], [-118.07098398589474, 33.96002200075453], [-118.0701969858942, 33.96002200401292], [-118.07031698577362, 33.96129400142698], [-118.06832298597757, 33.96157500296062], [-118.06851098586242, 33.96248800224], [-118.06810498591325, 33.96257600248156], [-118.0681719858083, 33.96383800175106], [-118.06739898592362, 33.96394200386214], [-118.0674619859055, 33.96413800395404], [-118.07051398587986, 33.96411100081815], [-118.07059198568831, 33.964679999678296], [-118.0662949858444, 33.964572004195865], [-118.06539998568074, 33.967213004650944], [-118.06691698609745, 33.96735200012949], [-118.066930986294, 33.96770399929021], [-118.0664929856542, 33.96767600549683], [-118.06644897177975, 33.96945300565346], [-118.06623598557404, 33.969993004877104], [-118.06846598677257, 33.970275998710335], [-118.06857699609625, 33.969698011607036], [-118.06962598085127, 33.97028299846577], [-118.070530988607, 33.96905700665573], [-118.07194797178745, 33.96946600565486], [-118.07128097178621, 33.970356005655894], [-118.07197598578854, 33.97061700202527], [-118.07273398599924, 33.97039900275609], [-118.07285799770992, 33.96995400734412], [-118.07363997178966, 33.97014500565599], [-118.07348197178936, 33.97031300565626], [-118.07354297178932, 33.97045900565655], [-118.07458197179024, 33.97215300565897], [-118.07425598821271, 33.97258299825693], [-118.07395198529319, 33.972521005341385], [-118.07488098602572, 33.974666002830716], [-118.0735209925438, 33.975071999867204]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Santa Fe Springs", "metadata": {"sqmi": 8.85545159124, "type": "standalone-city", "name": "Santa Fe Springs", "slug": "santa-fe-springs"}, "cases": 26.0, "population": 0.18364175731035456, "external_id": "santa-fe-springs", "slug": "santa-fe-springs-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/santa-fe-springs-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.48398100000011, 34.04163499912409], [-118.4837660000001, 34.04142999912412], [-118.48194000000014, 34.04287299912418], [-118.48001500000021, 34.04445599912408], [-118.48016100000018, 34.04452899912418], [-118.47974500000021, 34.044702999124084], [-118.479647, 34.04510699912413], [-118.47913600000017, 34.04518899912399], [-118.4790150000002, 34.04568699912399], [-118.47843800000012, 34.04562899912405], [-118.47834800000025, 34.04626499912408], [-118.47728300000011, 34.0466989991241], [-118.4743820000002, 34.04420799912416], [-118.47427800000011, 34.04431399912402], [-118.47372100000022, 34.044035999124084], [-118.47127500000015, 34.041941999124], [-118.47151300000016, 34.04174899912419], [-118.45917500000012, 34.0313279991243], [-118.4576150000002, 34.03165699912424], [-118.45706800000019, 34.02979899912426], [-118.45290500000021, 34.02803699912447], [-118.445927, 34.019419999124395], [-118.44342600000012, 34.01662499912448], [-118.455935, 34.01002299912449], [-118.45599000000014, 34.0098789991245], [-118.45698000000014, 34.00965599912458], [-118.45710600000018, 34.00943399912452], [-118.45784400000015, 34.00903699912461], [-118.4799170000002, 33.997352999124715], [-118.48141100000018, 33.996309999124726], [-118.48173700000028, 33.996448999124716], [-118.48216500000011, 33.99628099912471], [-118.48334400000019, 33.99550999912476], [-118.48145200000013, 33.993160999124726], [-118.48396646263491, 33.99346275589136], [-118.48476201722735, 33.99411299379274], [-118.48770397969315, 33.9978119915232], [-118.4897220213668, 34.000002022096425], [-118.49084502628179, 34.00094298920367], [-118.49254097678228, 34.00454602249443], [-118.4934210190971, 34.00542501256776], [-118.49542701260386, 34.00724102384203], [-118.49719698830523, 34.008368974292665], [-118.49789599244205, 34.00789299277643], [-118.49854401547023, 34.00837902320059], [-118.4994230055436, 34.00769201461879], [-118.49935097960167, 34.00758100312335], [-118.4996850137176, 34.007308998653365], [-118.50009801857047, 34.007554013124604], [-118.49990198594863, 34.0078100235213], [-118.49951802296563, 34.00775799017097], [-118.49807497874897, 34.008984009544726], [-118.50096901160722, 34.01147997938178], [-118.5041909755795, 34.01467100744915], [-118.50678801322825, 34.0168040065245], [-118.51330501935648, 34.02180299621747], [-118.51770742009602, 34.024823468267016], [-118.51524100000013, 34.02693999912433], [-118.514711, 34.027872999124284], [-118.5126410000002, 34.029928999124266], [-118.510697, 34.031413999124254], [-118.50947300000017, 34.032701999124264], [-118.5085930000002, 34.03306299912425], [-118.50880200000017, 34.03335799912429], [-118.50870400000014, 34.03396199912426], [-118.50768800000021, 34.0362689991242], [-118.50808500000018, 34.03809899912429], [-118.50821700000014, 34.0380909991242], [-118.508263, 34.03834999912416], [-118.50811600000013, 34.039076999124156], [-118.50832300000013, 34.039204999124145], [-118.5080960000002, 34.03912999912418], [-118.506589, 34.04039799912411], [-118.50577400000017, 34.04069399912415], [-118.50507600000019, 34.04091099912418], [-118.50402400000016, 34.040628999124124], [-118.49540500000012, 34.04958999912401], [-118.49464100000029, 34.05016199912409], [-118.49446800000015, 34.0505599991241], [-118.48398100000011, 34.04163499912409]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Santa Monica", "metadata": {"sqmi": 8.56505645013, "type": "standalone-city", "name": "Santa Monica", "slug": "santa-monica"}, "cases": 167.0, "population": 0.9522654322670872, "external_id": "santa-monica", "slug": "santa-monica-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/santa-monica-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.443912, 34.04720899912407], [-118.434793, 34.0366589991241], [-118.43460800000013, 34.03625899912408], [-118.434618, 34.03564399912414], [-118.434397, 34.035327999124206], [-118.4308350000001, 34.03100699912419], [-118.431313, 34.03052499912426], [-118.43145300000012, 34.02992799912413], [-118.430611, 34.027909999124276], [-118.430775, 34.02743399912434], [-118.43029800000014, 34.026819999124214], [-118.44101200000013, 34.02150999912428], [-118.44281200000013, 34.020709999124385], [-118.44481200000011, 34.02010999912427], [-118.44435838165448, 34.01772957160596], [-118.445927, 34.01941999912436], [-118.45290500000013, 34.028036999124446], [-118.457068, 34.02979899912421], [-118.4576150000001, 34.03165699912417], [-118.459175, 34.03132799912427], [-118.47088419517723, 34.041330746500584], [-118.45922941167468, 34.05079463890208], [-118.45684100000013, 34.048023999123984], [-118.454243, 34.04941699912403], [-118.4522220000001, 34.04705999912404], [-118.448175, 34.04957799912402], [-118.449095, 34.05199599912397], [-118.44839542983966, 34.052404993912], [-118.443912, 34.04720899912407]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Sawtelle", "metadata": {"sqmi": 2.69118094473, "type": "segment-of-a-city", "name": "Sawtelle", "slug": "sawtelle"}, "cases": null, "population": null, "external_id": "sawtelle", "slug": "sawtelle-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/sawtelle-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.483716, 34.18660399912227], [-118.483716, 34.18620399912227], [-118.474716, 34.18580499912218], [-118.470116, 34.18110499912245], [-118.466216, 34.18040499912237], [-118.466115, 34.17910499912237], [-118.46956600000016, 34.17923799912231], [-118.46828200000014, 34.1775929991223], [-118.467833, 34.17641899912238], [-118.46761500000011, 34.174404999122366], [-118.467646, 34.170805999122486], [-118.467971, 34.16913399912252], [-118.4690300000001, 34.168052999122516], [-118.46961, 34.1669919991226], [-118.46993000000015, 34.16567099912264], [-118.46996, 34.163774999122545], [-118.470332, 34.16315099912252], [-118.47079, 34.16276399912256], [-118.47138000000011, 34.162597999122504], [-118.472061, 34.16263999912253], [-118.474749, 34.16458599912259], [-118.47551600000016, 34.16490499912251], [-118.476605, 34.165070999122555], [-118.49008900000011, 34.165112999122584], [-118.492516, 34.16530499912248], [-118.49251900000012, 34.16662499912253], [-118.49437800000018, 34.1669159991226], [-118.495663, 34.167606999122455], [-118.49629700000011, 34.16833799912247], [-118.498065, 34.17113999912251], [-118.498916, 34.17192199912239], [-118.49966200000013, 34.17210799912244], [-118.50593400000012, 34.172127999122345], [-118.505817, 34.17950499912237], [-118.507617, 34.17950499912239], [-118.507617, 34.17990499912238], [-118.509917, 34.18000499912242], [-118.51851800000011, 34.18000199912236], [-118.518517, 34.18090499912231], [-118.516417, 34.18090499912246], [-118.516417, 34.1824049991224], [-118.518517, 34.182504999122315], [-118.518417, 34.186403999122305], [-118.486211, 34.18644199912232], [-118.483716, 34.18660399912227]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Sepulveda Basin", "metadata": {"sqmi": 3.13655865329, "type": "segment-of-a-city", "name": "Sepulveda Basin", "slug": "sepulveda-basin"}, "cases": null, "population": null, "external_id": "sepulveda-basin", "slug": "sepulveda-basin-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/sepulveda-basin-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.34065600000012, 34.27235399912129], [-118.33775900000015, 34.271464999121264], [-118.336437, 34.26817399912149], [-118.335876, 34.26715499912135], [-118.335106, 34.26646399912126], [-118.33301200000011, 34.265101999121256], [-118.333512, 34.264501999121336], [-118.33431200000015, 34.264201999121376], [-118.329352, 34.25807399912148], [-118.325808, 34.252776999121465], [-118.325206, 34.251490999121465], [-118.324811, 34.2501019991216], [-118.323718, 34.24348699912155], [-118.322947, 34.24218799912148], [-118.32143500000011, 34.24090199912174], [-118.32040200000012, 34.24030099912171], [-118.31823600000013, 34.23938399912177], [-118.314707, 34.23830599912177], [-118.313731, 34.23783099912165], [-118.311857, 34.23647399912166], [-118.309275, 34.233902999121646], [-118.307827, 34.233247999121815], [-118.305741, 34.232770999121726], [-118.30283800000011, 34.2326339991218], [-118.29482100000011, 34.23336799912179], [-118.291206, 34.23393999912167], [-118.286987, 34.233718999121685], [-118.28264900000018, 34.233722999121674], [-118.280011, 34.23333699912169], [-118.278402, 34.233313999121606], [-118.271809, 34.23380299912176], [-118.271693, 34.23347499912174], [-118.27060900000012, 34.23280299912177], [-118.272018, 34.23159299912171], [-118.26680734947294, 34.23062818193326], [-118.266871, 34.22184599912191], [-118.337462, 34.22131199912199], [-118.335128, 34.21675299912204], [-118.334845, 34.21551399912196], [-118.336417, 34.21456799912195], [-118.336032, 34.21430899912198], [-118.33770600000013, 34.21258899912199], [-118.337737, 34.21127099912203], [-118.339806, 34.21119399912203], [-118.33993000000011, 34.206502999122215], [-118.34131942576883, 34.20652653043827], [-118.342812, 34.207403999122086], [-118.346974, 34.211814999121984], [-118.351212, 34.215703999122056], [-118.35461200000017, 34.21840399912194], [-118.357687, 34.22167799912188], [-118.358619, 34.22186299912187], [-118.35901200000015, 34.22210599912174], [-118.361613, 34.2250029991218], [-118.366614, 34.23003099912181], [-118.38381400000011, 34.246602999121585], [-118.39001400000011, 34.2523019991214], [-118.387514, 34.25670199912138], [-118.390814, 34.25720199912151], [-118.3861140000001, 34.26060199912139], [-118.38021400000014, 34.25950199912142], [-118.373313, 34.26030199912133], [-118.372113, 34.26130199912136], [-118.37111300000012, 34.26320199912134], [-118.37100700000015, 34.260447999121446], [-118.36551300000012, 34.26610199912149], [-118.359879, 34.26603899912123], [-118.359996, 34.26724699912138], [-118.35629300000012, 34.26716999912133], [-118.35716700000017, 34.26873499912136], [-118.355857, 34.268945999121335], [-118.35483300000011, 34.269809999121335], [-118.35224100000013, 34.27024199912127], [-118.35145700000011, 34.27060999912127], [-118.348928, 34.2707859991213], [-118.34736000000015, 34.27116999912124], [-118.34667200000015, 34.27102599912139], [-118.34577600000011, 34.27132999912121], [-118.345456, 34.27161799912123], [-118.344, 34.272033999121305], [-118.3425280000001, 34.27204999912126], [-118.34065600000012, 34.27235399912129]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Shadow Hills", "metadata": {"sqmi": 12.8068716307, "type": "segment-of-a-city", "name": "Shadow Hills", "slug": "shadow-hills"}, "cases": 9.0, "population": 0.04442031489067667, "external_id": "shadow-hills", "slug": "shadow-hills-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/shadow-hills-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.41431400000012, 34.17200499912246], [-118.413666, 34.17200299912243], [-118.41404500000012, 34.171685999122396], [-118.4141570000001, 34.17131899912242], [-118.413922, 34.169681999122496], [-118.413813, 34.154005999122596], [-118.41821300000014, 34.154005999122596], [-118.41811300000015, 34.14790599912288], [-118.419317, 34.14810699912278], [-118.42261200000014, 34.1499089991227], [-118.42261400000014, 34.14650099912281], [-118.4186250000001, 34.145875999122815], [-118.4189130000001, 34.14420599912277], [-118.41691300000011, 34.14360599912279], [-118.415913, 34.143605999122734], [-118.414913, 34.143105999122824], [-118.413713, 34.14060599912274], [-118.41351, 34.139185999122915], [-118.41321300000016, 34.1383059991228], [-118.41214600000013, 34.136727999123], [-118.41231300000014, 34.13620599912284], [-118.414368, 34.134010999122836], [-118.414359, 34.133717999122986], [-118.41391300000014, 34.13360699912287], [-118.412993, 34.1344439991229], [-118.41248800000012, 34.1346049991229], [-118.41222200000013, 34.13452399912297], [-118.412257, 34.1339959991229], [-118.41163700000011, 34.1322869991229], [-118.41128200000016, 34.13211899912302], [-118.41093300000013, 34.13217799912308], [-118.410569, 34.13311699912286], [-118.4102500000001, 34.133116999123025], [-118.409913, 34.13257399912293], [-118.409328, 34.13244899912297], [-118.4091240000001, 34.13225899912294], [-118.40907900000012, 34.13178199912291], [-118.40878700000015, 34.131575999122944], [-118.408698, 34.131143999122955], [-118.408441, 34.13088699912291], [-118.40837600000012, 34.129853999123], [-118.4071710000001, 34.129574999122994], [-118.406913, 34.12890699912307], [-118.40911300000013, 34.1294069991229], [-118.412013, 34.1294069991229], [-118.41321300000016, 34.12880699912298], [-118.414213, 34.12900699912305], [-118.414013, 34.12800699912292], [-118.4156130000001, 34.12620699912292], [-118.417213, 34.12720699912302], [-118.41841300000014, 34.12700699912298], [-118.41961300000015, 34.12770699912296], [-118.42081300000011, 34.12850699912306], [-118.42121300000011, 34.129606999122984], [-118.422413, 34.12970699912293], [-118.423213, 34.13020699912299], [-118.423713, 34.13030699912297], [-118.424313, 34.13020699912291], [-118.42641300000011, 34.131006999123045], [-118.43111300000012, 34.132006999122936], [-118.432713, 34.13170699912294], [-118.4339130000001, 34.13070699912293], [-118.43541400000014, 34.130406999123096], [-118.438414, 34.13150599912304], [-118.439314, 34.13110599912288], [-118.44061400000017, 34.13150599912293], [-118.442014, 34.131005999123], [-118.44251400000017, 34.13050599912295], [-118.443414, 34.130005999123064], [-118.44811400000012, 34.130705999122924], [-118.4498140000001, 34.13190599912297], [-118.45121400000014, 34.131505999122986], [-118.45321400000012, 34.13180599912284], [-118.454914, 34.132905999123004], [-118.455914, 34.13260599912286], [-118.459614, 34.13040599912301], [-118.463114, 34.13080599912306], [-118.464114, 34.12980599912294], [-118.465514, 34.12990599912287], [-118.46641400000011, 34.129705999123], [-118.467415, 34.12920599912294], [-118.469015, 34.12950599912302], [-118.471615, 34.13090599912296], [-118.473215, 34.1293059991229], [-118.474815, 34.126305999122934], [-118.476115, 34.126005999122974], [-118.474133, 34.129844999122966], [-118.472559, 34.13386299912297], [-118.47171600000011, 34.13762299912291], [-118.47131600000016, 34.14462999912281], [-118.47078100000016, 34.14645799912285], [-118.469134, 34.14983099912269], [-118.4685230000001, 34.15165799912272], [-118.468524, 34.15293399912268], [-118.46887800000016, 34.15510299912261], [-118.469944, 34.15894699912256], [-118.469967, 34.16519799912247], [-118.469458, 34.167369999122535], [-118.4690300000001, 34.168052999122516], [-118.468138, 34.168882999122445], [-118.467834, 34.16943399912245], [-118.46761500000011, 34.1719049991225], [-118.41431400000012, 34.17200499912246]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Sherman Oaks", "metadata": {"sqmi": 9.14693779041, "type": "segment-of-a-city", "name": "Sherman Oaks", "slug": "sherman-oaks"}, "cases": 129.0, "population": 0.872564935064935, "external_id": "sherman-oaks", "slug": "sherman-oaks-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/sherman-oaks-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.0656512891506, 34.17940499912253], [-118.03002948656096, 34.179402556498324], [-118.030139, 34.1794019991225], [-118.03022600000013, 34.17095199912257], [-118.030007, 34.17077199912252], [-118.0303540000001, 34.17036799912258], [-118.029619, 34.169994999122586], [-118.03014100000014, 34.16982099912254], [-118.03014100000014, 34.168927999122594], [-118.029473, 34.16783199912259], [-118.029668, 34.16685399912255], [-118.038473, 34.1668809991226], [-118.038412, 34.15725899912279], [-118.06795800000019, 34.15682099912275], [-118.0682000000001, 34.17300899912259], [-118.06547900000018, 34.17260999912255], [-118.06587700000013, 34.17530599912254], [-118.06567700000018, 34.17595099912251], [-118.066001, 34.17940499912253], [-118.0656512891506, 34.17940499912253]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Sierra Madre", "metadata": {"sqmi": 2.96879374235, "type": "standalone-city", "name": "Sierra Madre", "slug": "sierra-madre"}, "cases": 5.0, "population": 0.10989010989010989, "external_id": "sierra-madre", "slug": "sierra-madre-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/sierra-madre-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.17409300000014, 33.818794999126915], [-118.171971, 33.81880599912689], [-118.17196800000016, 33.815293999126894], [-118.17425500000017, 33.81532299912688], [-118.17428600000014, 33.81371299912692], [-118.17878700000013, 33.81352799912702], [-118.1787920000002, 33.811629999127035], [-118.18066200000024, 33.81164099912698], [-118.18064600000022, 33.80422999912706], [-118.17631100000027, 33.80424399912702], [-118.17630200000015, 33.81164699912699], [-118.16326900000011, 33.81167799912699], [-118.16324900000023, 33.80913399912701], [-118.16145200000027, 33.80907599912709], [-118.16154800000015, 33.81011599912697], [-118.15891300000017, 33.81013199912693], [-118.15887700000029, 33.80244899912701], [-118.15685900000014, 33.80412799912704], [-118.1568570000002, 33.804421999127], [-118.15134600000017, 33.804426999127095], [-118.15138600000016, 33.797118999127164], [-118.15888800000022, 33.797118999127164], [-118.15889700000015, 33.796268999127236], [-118.15631, 33.79635099912723], [-118.1545650000003, 33.796809999127184], [-118.15457000000012, 33.79346999912717], [-118.15222600000011, 33.79346399912723], [-118.15171200000019, 33.79284699912714], [-118.15174900000014, 33.79242599912727], [-118.151001, 33.79122299912726], [-118.14942600000016, 33.78983599912719], [-118.16611100000011, 33.78985299912735], [-118.1665320000003, 33.7900799991273], [-118.16697100000015, 33.79055599912728], [-118.16690300000013, 33.790795999127255], [-118.16764500000016, 33.7914079991272], [-118.1717520000002, 33.793881999127215], [-118.17849300000016, 33.798514999127136], [-118.18210100000017, 33.80071699912709], [-118.18200100000014, 33.802116999127165], [-118.182134, 33.80259999912714], [-118.18172700000022, 33.80348899912711], [-118.18173400000026, 33.80423099912705], [-118.18489100000019, 33.80439599912707], [-118.18490700000018, 33.81163499912698], [-118.18467100000011, 33.81457899912699], [-118.18480500000015, 33.816403999126905], [-118.18395700000023, 33.81619399912694], [-118.18392300000018, 33.817055999126836], [-118.18480700000016, 33.817094999126816], [-118.18480200000015, 33.818615999126884], [-118.17526800000022, 33.81871599912694], [-118.17527300000017, 33.818909999126916], [-118.17409600000015, 33.81891599912689], [-118.17409300000014, 33.818794999126915]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Signal Hill", "metadata": {"sqmi": 2.22339551786, "type": "standalone-city", "name": "Signal Hill", "slug": "signal-hill"}, "cases": 7.0, "population": 0.11796427367711493, "external_id": "signal-hill", "slug": "signal-hill-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/signal-hill-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.25880800000016, 34.109008999123176], [-118.256407, 34.1085089991233], [-118.25350700000016, 34.1085089991233], [-118.25650700000011, 34.10590899912326], [-118.255807, 34.10540899912328], [-118.253407, 34.10430899912336], [-118.252507, 34.103408999123296], [-118.250607, 34.101008999123444], [-118.25180700000011, 34.09860899912342], [-118.253607, 34.095708999123396], [-118.254507, 34.094609999123485], [-118.258507, 34.09160999912347], [-118.25920700000013, 34.08990999912353], [-118.25990700000013, 34.08580999912346], [-118.263408, 34.08730999912355], [-118.2645080000001, 34.08560999912344], [-118.26610800000012, 34.08640999912353], [-118.266708, 34.08650999912349], [-118.269808, 34.08140999912357], [-118.27190800000012, 34.079209999123485], [-118.274408, 34.07530999912364], [-118.2772190000001, 34.07613999912361], [-118.28450800000012, 34.07790999912354], [-118.284808, 34.09590899912351], [-118.276608, 34.09590899912338], [-118.275508, 34.097608999123324], [-118.274008, 34.099008999123264], [-118.27330800000011, 34.101108999123376], [-118.273508, 34.104108999123284], [-118.271508, 34.10910899912317], [-118.26910800000012, 34.11160899912317], [-118.26630800000014, 34.11260899912315], [-118.265408, 34.11340899912305], [-118.265408, 34.113608999123244], [-118.263208, 34.11140899912329], [-118.262172, 34.11088899912317], [-118.261208, 34.11010899912324], [-118.25880800000016, 34.109008999123176]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Silver Lake", "metadata": {"sqmi": 2.74910600903, "type": "segment-of-a-city", "name": "Silver Lake", "slug": "silver-lake"}, "cases": 117.0, "population": 0.4408273991183452, "external_id": "silver-lake", "slug": "silver-lake-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/silver-lake-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.80288891942033, 33.97554637168849], [-117.8026910000003, 33.968312999125004], [-117.79379100000027, 33.96811299912501], [-117.79389000000043, 33.95401299912521], [-117.78340600000038, 33.946495999125275], [-117.84219200000022, 33.94661299912539], [-117.86877869440288, 33.94556915478152], [-117.86839712505662, 33.945950726402316], [-117.8687089767349, 33.94593326592307], [-117.86693553767877, 33.94772298697796], [-117.86590039337976, 33.94900276641749], [-117.86128747225256, 33.95640114904498], [-117.86062160982925, 33.95725084017893], [-117.85845498625667, 33.95914313183329], [-117.85649051254849, 33.960026547454646], [-117.85646600000028, 33.95921799912522], [-117.85550900000018, 33.95932899912515], [-117.84778200000027, 33.96116699912515], [-117.83847200000028, 33.95881999912515], [-117.83820500000022, 33.960782999125186], [-117.83291700000039, 33.95937199912514], [-117.83124500000022, 33.96047199912516], [-117.83094000000021, 33.961067999125135], [-117.8235420000003, 33.96610299912512], [-117.81980400000025, 33.968981999125106], [-117.81495900000023, 33.97313699912499], [-117.81444900000025, 33.97508099912499], [-117.81318300000025, 33.975466999124976], [-117.80562800000033, 33.97561899912499], [-117.80357800000019, 33.975927999125055], [-117.80276600000026, 33.975817999124935], [-117.80288891942033, 33.97554637168849]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "South Diamond Bar", "metadata": {"sqmi": 5.34934511005, "type": "unincorporated-area", "name": "South Diamond Bar", "slug": "south-diamond-bar"}, "cases": null, "population": null, "external_id": "south-diamond-bar", "slug": "south-diamond-bar-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/south-diamond-bar-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.16137800000027, 34.562604999117966], [-118.1567030000002, 34.56273099911797], [-118.15402500000023, 34.561300999117954], [-118.15258800000032, 34.560925999117785], [-118.15168600000027, 34.56085899911798], [-118.15167400000017, 34.56482399911791], [-118.14666100000022, 34.564735999117914], [-118.14276458163249, 34.56486660666097], [-118.14271634722712, 34.558024682331144], [-118.13889200000021, 34.55796099911798], [-118.13889005496881, 34.555393733642], [-118.13783478388078, 34.555392053289744], [-118.13785461721984, 34.55795312651196], [-118.13055660866338, 34.55789135079911], [-118.13147969897176, 34.55815642397885], [-118.13189819970906, 34.55888099335345], [-118.1293532142886, 34.55887713292801], [-118.12936082110686, 34.557923548128024], [-118.13028800000029, 34.557919999117935], [-118.13035987682751, 34.55740107300051], [-118.13176900000035, 34.555331999117975], [-118.13149700000024, 34.55211099911805], [-118.12965100000027, 34.55224299911806], [-118.12994915463133, 34.55309833830829], [-118.12920142225823, 34.55309885299716], [-118.12969092474155, 34.554024990691964], [-118.12932500000032, 34.55460499911807], [-118.12669300000022, 34.55713899911803], [-118.12379956940049, 34.556603915984994], [-118.12378996331506, 34.5579093968929], [-118.11482545884685, 34.55794793469714], [-118.11474100000021, 34.55714699911801], [-118.11412300000029, 34.55529399911807], [-118.11395800000022, 34.55258199911806], [-118.11342075257622, 34.55111079526171], [-118.10681652355288, 34.54187172222791], [-118.10641371441318, 34.54108894577499], [-118.10632500000027, 34.54049099911824], [-118.10264000000025, 34.535825999118266], [-118.10221800000026, 34.53594399911827], [-118.10241700000024, 34.536610999118196], [-118.1020720000003, 34.536685999118255], [-118.10184200000033, 34.536382999118246], [-118.10060000000018, 34.536458999118196], [-118.09901300000031, 34.53604299911828], [-118.09793200000028, 34.535076999118125], [-118.09808700000023, 34.53410199911831], [-118.09783500000026, 34.53372599911825], [-118.09740200000023, 34.5336389991183], [-118.09602700000023, 34.53383699911834], [-118.0938680000003, 34.534691999118245], [-118.0931650000003, 34.534798999118244], [-118.08919800000028, 34.5343039991183], [-118.08815800000026, 34.53367599911831], [-118.08623400000027, 34.53442599911828], [-118.08539700000024, 34.53501699911815], [-118.08467500000029, 34.53444299911827], [-118.08446400000024, 34.53365599911828], [-118.08247600000021, 34.53435499911828], [-118.08091100000028, 34.53429799911823], [-118.08071400000027, 34.53412999911828], [-118.08082800000014, 34.53380099911828], [-118.07982200000028, 34.52986299911833], [-118.07966900000027, 34.527639999118335], [-118.07962138342754, 34.513573585846636], [-118.05938636298923, 34.51370517154493], [-118.05939194447689, 34.511867917715726], [-118.05993969090177, 34.5118664324256], [-118.05986700000018, 34.50981299911853], [-118.05391607564441, 34.51006393050791], [-118.05390502297362, 34.51372217891754], [-118.04513380462856, 34.51374889864882], [-118.04518964196265, 34.52181816134811], [-118.04629600000021, 34.522371999118405], [-118.04881100000033, 34.524156999118375], [-118.05251800000016, 34.525816999118355], [-118.05513800000021, 34.527339999118276], [-118.05701400000025, 34.527993999118344], [-118.05910963726399, 34.52822218830865], [-118.07150273880848, 34.52812121316139], [-118.07164420623832, 34.53425037870532], [-118.0731001403282, 34.53454491113389], [-118.07416546425925, 34.53511311055919], [-118.07186384586868, 34.535428451570134], [-118.06284925072644, 34.53546784079713], [-118.06273600000013, 34.53261399911832], [-118.05993300000031, 34.532917999118304], [-118.05866300000025, 34.532904999118294], [-118.05616800000028, 34.5323359991183], [-118.05539500000026, 34.53232699911814], [-118.0551500006471, 34.532388668225195], [-118.05515135018564, 34.53293391928594], [-118.05492600000024, 34.532930999118285], [-118.0548780000003, 34.53219099911832], [-118.0539760000003, 34.53191299911834], [-118.05372800000029, 34.53152799911834], [-118.05170400000033, 34.53105799911824], [-118.05085300000026, 34.5310389991183], [-118.04982400000034, 34.53127499911826], [-118.04979535170851, 34.53183395220228], [-118.04961556884778, 34.53183339133174], [-118.04962687590849, 34.53384875856745], [-118.05014318339192, 34.53384583295244], [-118.05014387623956, 34.53397196767794], [-118.04977600000028, 34.53400399911828], [-118.04963536361002, 34.53545789879191], [-118.0495092851139, 34.5354575175196], [-118.04988013968101, 34.536633915471754], [-118.04868800000018, 34.537770999118194], [-118.04958952753921, 34.53896733427525], [-118.04962498401963, 34.542708640276956], [-118.034292668264, 34.54270865257515], [-118.034288123994, 34.540829526382566], [-118.02771608208447, 34.540781348234084], [-118.02770154105546, 34.53550652252174], [-118.02020661317995, 34.53546062229386], [-118.01492300437202, 34.53163612329391], [-118.01385216857163, 34.530655459247605], [-118.01003176029782, 34.525038281526626], [-118.0100402605208, 34.52458574525863], [-118.0097779931879, 34.52458435652428], [-118.00834171749294, 34.52271835909609], [-118.00602682454135, 34.52160653220509], [-118.00417367912011, 34.5211049377857], [-118.00249782000294, 34.52101328191479], [-118.00249499706062, 34.51921271763977], [-118.00232900564802, 34.51921774959853], [-118.00232150085641, 34.514364116486426], [-118.00125875863344, 34.514500012558834], [-118.00112640929459, 34.51481150817285], [-117.999002018783, 34.516473563104896], [-117.99727228940442, 34.51737556736781], [-117.99196950161777, 34.517339033762134], [-117.98920298540844, 34.517674796954125], [-117.98775459738636, 34.517533365560205], [-117.98768256833937, 34.51769526095282], [-117.9873576454647, 34.51759682779726], [-117.98742801498548, 34.51743627929158], [-117.9857391659106, 34.51643689811021], [-117.98463409888498, 34.515561441693215], [-117.983859210004, 34.51510726188845], [-117.98344767468154, 34.5150937143725], [-117.97919660057109, 34.51680020643016], [-117.97884050321446, 34.51702450565392], [-117.97894595897041, 34.51720478157359], [-117.97864668747103, 34.51732480969022], [-117.97855606584187, 34.51716791970263], [-117.9774642499146, 34.51749023549079], [-117.97363194710334, 34.519019291692324], [-117.97337220910681, 34.51921498966608], [-117.97347271093973, 34.519388372607175], [-117.97317342413292, 34.519507013298174], [-117.9730729227806, 34.51933363011167], [-117.97273415431692, 34.51937798762481], [-117.96848433835889, 34.521073112172424], [-117.96848383108241, 34.52121249275931], [-117.9402046089326, 34.521186562687525], [-117.93752867125754, 34.52086489031915], [-117.93644353834657, 34.52025568291257], [-117.93440371264468, 34.51819141209493], [-117.92550593537369, 34.508066685356276], [-117.92405570236467, 34.50702732318508], [-117.92242784544091, 34.50658625661475], [-117.90250909090946, 34.506568527594276], [-117.90243031080759, 34.50638628321088], [-117.87500022345944, 34.5063587433702], [-117.85379765876804, 34.50607480320856], [-117.85384082799783, 34.50621212593462], [-117.83760000000036, 34.506213982139606], [-117.81812279075085, 34.50603201723331], [-117.81681276159348, 34.50584879176545], [-117.81605664485338, 34.5055320737923], [-117.80798827373847, 34.49934734588488], [-117.80733701924092, 34.498999632802104], [-117.80644656298851, 34.498777253313534], [-117.76520000000032, 34.49877761850334], [-117.75020906044566, 34.49855993464595], [-117.74104545454581, 34.49859580032175], [-117.73919150008909, 34.49848618022728], [-117.73829195710613, 34.49824512935656], [-117.66005387247745, 34.451960718322624], [-117.65952800000024, 34.45151199911918], [-117.6592240000004, 34.45089299911928], [-117.65833900000027, 34.440196999119344], [-117.65735300000041, 34.42799799911948], [-117.65736600000034, 34.425373999119586], [-117.65376900000024, 34.38227099912002], [-117.65260315823693, 34.366205628436106], [-117.65389005879656, 34.36642961779801], [-117.65671862716184, 34.367538919817534], [-117.65975996394677, 34.36791292002936], [-117.66252043218381, 34.36870938851503], [-117.66542170056613, 34.370378325474874], [-117.66705499079825, 34.37106619254485], [-117.67032082728633, 34.37127596257749], [-117.67573680898006, 34.373002556181234], [-117.67757941891347, 34.37334742379945], [-117.67938226352564, 34.374248010726554], [-117.68286084227513, 34.37448579529497], [-117.68410332742546, 34.374846070890605], [-117.68564223312197, 34.375774144050645], [-117.68928920034622, 34.378675160283485], [-117.69070460893266, 34.379141108143905], [-117.6919823381958, 34.37859340210638], [-117.69305848571844, 34.378423015299674], [-117.69481818181825, 34.37849580032316], [-117.69635520012305, 34.378332163959456], [-117.69769135443462, 34.37889346527191], [-117.698239400279, 34.37889782407848], [-117.6987069158676, 34.378530308490014], [-117.6994905860482, 34.37649723606292], [-117.70032298376476, 34.37573426335807], [-117.70071842060702, 34.37449704170479], [-117.701260085398, 34.37407430503297], [-117.70176109740676, 34.37397761850478], [-117.70217447407647, 34.37404196260199], [-117.70271134275069, 34.374639706657184], [-117.70258835203025, 34.37619955377676], [-117.70371574792786, 34.37822898059223], [-117.70436888133443, 34.37869216352571], [-117.70504930048418, 34.378710345344075], [-117.7058106861697, 34.37817566125684], [-117.70646672980088, 34.37648413247937], [-117.70736061334537, 34.37579063762945], [-117.70816967219565, 34.37443618944093], [-117.71008180394637, 34.37240624862507], [-117.71104349586776, 34.37205970552428], [-117.71180319721981, 34.372282104709264], [-117.71290994771407, 34.37356112072704], [-117.71375935803056, 34.37392175629509], [-117.71735256604197, 34.37394964173999], [-117.71958286619704, 34.37502694754011], [-117.72048642711448, 34.37518656268957], [-117.72149955465669, 34.37506619254488], [-117.72260184731397, 34.37463183741294], [-117.72318829000939, 34.37468936398913], [-117.72436059972141, 34.375670551351234], [-117.72589240252215, 34.37598230605845], [-117.72620255793836, 34.3762093320882], [-117.72639489802738, 34.376777940804075], [-117.72607707279475, 34.37770448109691], [-117.7263346548918, 34.3781206148291], [-117.72785521558846, 34.378345382352855], [-117.72903332699421, 34.37907964226038], [-117.72966363636391, 34.37925943668684], [-117.73048566412061, 34.379146708980315], [-117.7310484569501, 34.37879391061558], [-117.73123892069745, 34.37847228104952], [-117.73141041638355, 34.37738745504904], [-117.73182742717144, 34.376963004228735], [-117.73321336924265, 34.376776301749466], [-117.73421511338967, 34.37645967096876], [-117.73565882378809, 34.3765399381131], [-117.73749371384372, 34.37589591040183], [-117.73858709845048, 34.37600198369225], [-117.73943741165154, 34.37646331117641], [-117.7403967100895, 34.37674717678926], [-117.74103938665525, 34.37796336490215], [-117.74205026712143, 34.37869448356763], [-117.74267167925815, 34.37864512935804], [-117.74407551184119, 34.37786557028638], [-117.74530448197697, 34.37789565359853], [-117.74598077016711, 34.377736038449086], [-117.74636345820448, 34.377468989340166], [-117.74648671029398, 34.377081817301914], [-117.74611326643726, 34.37587934702387], [-117.74599626571464, 34.374448338186774], [-117.74610271779055, 34.373356453177934], [-117.7465169903614, 34.37283419914502], [-117.74718884859554, 34.37244881166539], [-117.74787755175325, 34.37238670941402], [-117.74898303550968, 34.37255748873709], [-117.75078196433023, 34.37352248677989], [-117.75336765207899, 34.37325943668687], [-117.75651832796652, 34.37424066859807], [-117.75893539668476, 34.37392334987945], [-117.76208181818217, 34.37435034577773], [-117.76315067115652, 34.37416033646264], [-117.76380797922648, 34.37336218778341], [-117.76514637874145, 34.372644394733065], [-117.76618882736942, 34.3725405707712], [-117.76669580365811, 34.37270689115987], [-117.76724505378843, 34.37314196680855], [-117.76742520411798, 34.374483103624065], [-117.76795499780508, 34.37543298062556], [-117.76884117621243, 34.37582175629486], [-117.7709315510609, 34.37587630174973], [-117.7725621369034, 34.37499601152122], [-117.77322101503219, 34.375065058933586], [-117.77424589988907, 34.37558437436298], [-117.77470800695292, 34.3755589673081], [-117.77620342174897, 34.37466806359041], [-117.7785165171424, 34.37463559100091], [-117.77923553790853, 34.375333791805886], [-117.77929519805397, 34.37707062699436], [-117.7799038535965, 34.37750076536735], [-117.78068162561677, 34.37755887863301], [-117.78288061655057, 34.38252696926119], [-117.87590644792355, 34.38105273044494], [-117.92231951502197, 34.38071149252826], [-117.93246546941081, 34.38086126956004], [-117.932578, 34.3811019991202], [-117.935442, 34.38246199912022], [-117.936066, 34.383901999120084], [-117.93645, 34.38422199912013], [-117.937122, 34.38393399912022], [-117.937602, 34.38402999912017], [-117.93869, 34.38466999912016], [-117.939314, 34.38479799912017], [-117.939746, 34.38516599912017], [-117.939778, 34.38607799912008], [-117.940306, 34.38626999912011], [-117.940338, 34.38668599912014], [-117.941554, 34.38684599912016], [-117.942274, 34.38666999912016], [-117.942658, 34.38674999912009], [-117.942946, 34.38705399912011], [-117.942818, 34.38732599912016], [-117.942914, 34.38758199912008], [-117.943378, 34.38782199912016], [-117.943426, 34.38799799912014], [-117.942978, 34.38857399912008], [-117.94253, 34.38871799912008], [-117.941762, 34.38943799912009], [-117.940338, 34.390253999120105], [-117.940226, 34.39065399912001], [-117.940562, 34.39127799912002], [-117.940354, 34.391661999120025], [-117.939954, 34.39182199912005], [-117.939298, 34.39174199912012], [-117.93821, 34.39292599912008], [-117.939682, 34.39438099911998], [-117.939602, 34.39494099912004], [-117.940467, 34.39730899912004], [-117.940835, 34.397756999119984], [-117.940915, 34.39830099912001], [-117.940579, 34.399804999119986], [-117.941315, 34.401868999119955], [-117.943363, 34.401852999119996], [-117.943571, 34.40202899911997], [-117.943699, 34.402156999119875], [-117.943379, 34.40350099911989], [-117.943875, 34.40407699911993], [-117.945171, 34.40463699911986], [-117.945427, 34.40494099911989], [-117.945827, 34.405100999119895], [-117.946083, 34.404860999119826], [-117.946819, 34.40537299911991], [-117.947843, 34.40550099911988], [-117.948355, 34.405404999119895], [-117.949283, 34.405692999119836], [-117.950515, 34.40652499911984], [-117.950899, 34.40633299911987], [-117.951715, 34.40628499911986], [-117.952115, 34.40575699911991], [-117.954595, 34.405804999119894], [-117.956035, 34.406444999119884], [-117.956579, 34.40641299911995], [-117.956995, 34.40692499911989], [-117.958019, 34.40710099911988], [-117.959363, 34.40663699911987], [-117.960675, 34.4056129991199], [-117.961027, 34.40554899911994], [-117.963091, 34.406508999119865], [-117.963411, 34.40705299911983], [-117.964243, 34.407100999119926], [-117.965091, 34.406668999119844], [-117.965459, 34.40674899911991], [-117.966131, 34.40748499911987], [-117.967075, 34.40759699911985], [-117.967859, 34.408508999119874], [-117.967955, 34.40921299911986], [-117.968292, 34.40956499911981], [-117.969092, 34.40998099911987], [-117.96866, 34.411116999119876], [-117.96874, 34.41138899911979], [-117.969332, 34.41198099911984], [-117.969444, 34.412412999119816], [-117.971188, 34.41354899911977], [-117.970884, 34.4142199991198], [-117.970948, 34.414603999119755], [-117.971412, 34.41508399911981], [-117.97226, 34.41557999911979], [-117.972644, 34.41553199911976], [-117.973092, 34.41588399911978], [-117.973188, 34.416379999119826], [-117.97306, 34.41717999911971], [-117.973284, 34.417579999119766], [-117.974052, 34.41788399911979], [-117.974564, 34.417275999119774], [-117.974916, 34.4174359991197], [-117.975108, 34.41788399911979], [-117.975092, 34.418363999119705], [-117.975764, 34.4193399991197], [-117.976564, 34.41943599911977], [-117.978004, 34.42029999911972], [-117.979172, 34.42039599911965], [-117.97978, 34.42098799911969], [-117.980484, 34.421179999119694], [-117.980356, 34.4215159991197], [-117.980644, 34.42201199911965], [-117.980644, 34.422395999119665], [-117.981252, 34.42295599911976], [-117.9821, 34.42485999911965], [-117.982548, 34.425179999119685], [-117.983252, 34.42511599911963], [-117.984004, 34.42529199911972], [-117.984228, 34.42548399911966], [-117.984196, 34.42612399911963], [-117.984324, 34.42633199911971], [-117.98482, 34.42663599911962], [-117.985924, 34.4267959991196], [-117.986324, 34.42713199911962], [-117.987428, 34.42725999911961], [-117.988068, 34.42791599911961], [-117.988676, 34.42818799911967], [-117.988836, 34.42844399911962], [-117.988836, 34.42892399911958], [-117.988564, 34.42929199911956], [-117.989316, 34.42962799911958], [-117.99018, 34.43034799911955], [-117.990228, 34.43127599911963], [-117.990628, 34.431131999119636], [-117.99098, 34.43137199911967], [-117.990548, 34.43193199911957], [-117.991012, 34.43220399911953], [-117.991636, 34.433467999119586], [-117.992325, 34.433851999119526], [-117.993797, 34.43407599911963], [-117.994357, 34.434331999119564], [-117.995013, 34.43468399911959], [-117.995173, 34.43522799911952], [-117.996005, 34.43521199911951], [-117.996421, 34.43554799911951], [-117.997109, 34.43569099911955], [-117.998229, 34.43727499911953], [-117.998677, 34.43709899911949], [-117.999221, 34.43721099911952], [-118.000325, 34.43693899911947], [-118.000645, 34.43714699911955], [-118.002053, 34.437258999119486], [-118.002949, 34.43764299911955], [-118.003493, 34.43807499911952], [-118.004341, 34.438330999119586], [-118.004645, 34.43825099911949], [-118.004997, 34.43860299911948], [-118.006421, 34.439066999119454], [-118.007141, 34.43964299911945], [-118.007429, 34.440442999119504], [-118.008517, 34.441098999119454], [-118.009765, 34.44330699911946], [-118.010533, 34.443162999119416], [-118.01110636074138, 34.442702572947034], [-118.01111992998806, 34.470137708399236], [-118.04492629305284, 34.47033813707821], [-118.07958590889226, 34.470140728368804], [-118.07985085316027, 34.48084042740588], [-118.07970439167389, 34.49536813309862], [-118.12099588531962, 34.49508309698031], [-118.12209634940832, 34.4965295572172], [-118.12209828447689, 34.49683022396537], [-118.12274394249323, 34.4972209172346], [-118.12246490434278, 34.497537010677036], [-118.12277940488678, 34.498399398663054], [-118.12242053861624, 34.49878438140744], [-118.12284845735702, 34.49878370216131], [-118.12342857629446, 34.500365923139725], [-118.1315149885402, 34.50797105874297], [-118.13292042712894, 34.5079196554126], [-118.14243635370282, 34.51687554873165], [-118.14300391540229, 34.51688741100935], [-118.14301598797277, 34.51742182339587], [-118.1478640542421, 34.521983357228365], [-118.14850638270086, 34.52199529568578], [-118.14850508010561, 34.52258602710374], [-118.15033449729292, 34.52430740894222], [-118.1506441823148, 34.524313334147], [-118.15063530637566, 34.52459083233748], [-118.15365520720269, 34.527429379780635], [-118.15402725922898, 34.527320039393956], [-118.1542679776641, 34.52778986108284], [-118.16298888279478, 34.52758691891819], [-118.16294026595283, 34.523716853632315], [-118.16702561365966, 34.52351227823281], [-118.17618930843811, 34.52380318562459], [-118.17601577983017, 34.531354702430015], [-118.18516440876347, 34.53124651970553], [-118.18512483634102, 34.53482956044709], [-118.18950400422953, 34.5349457732411], [-118.18946958918569, 34.5385546636616], [-118.20702192802953, 34.53901218566977], [-118.20700462090129, 34.540982193511866], [-118.19869300000035, 34.54099799911827], [-118.198685147727, 34.54112488629631], [-118.19842447138704, 34.541120285321895], [-118.19837467183665, 34.54521774112049], [-118.19449390410202, 34.54515644683802], [-118.19376700000022, 34.55623599911799], [-118.19415428833034, 34.55622642500451], [-118.19413274516116, 34.55692863742748], [-118.20002003023119, 34.557095414362415], [-118.20006170835204, 34.55830488627751], [-118.19583980550837, 34.558291888060275], [-118.18527600000027, 34.55777399911786], [-118.1852740000002, 34.55767199911803], [-118.1805880000003, 34.558010999118046], [-118.1785850000002, 34.55787399911796], [-118.17715800000028, 34.55813499911795], [-118.16819500000031, 34.558077999117955], [-118.16811600000017, 34.565965999117886], [-118.16671900000024, 34.56542899911789], [-118.16553900000018, 34.56434099911792], [-118.16459800000023, 34.563715999117946], [-118.16305800000025, 34.56296399911798], [-118.16137800000027, 34.562604999117966]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Southeast Antelope Valley", "metadata": {"sqmi": 192.960465064, "type": "unincorporated-area", "name": "Southeast Antelope Valley", "slug": "southeast-antelope-valley"}, "cases": 7.0, "population": 0.048661085273901554, "external_id": "southeast-antelope-valley", "slug": "southeast-antelope-valley-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/southeast-antelope-valley-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.06059900000015, 34.064402999123836], [-118.06062800000014, 34.06403599912383], [-118.06035800000016, 34.064044999123894], [-118.06037200000011, 34.063873999123885], [-118.06014600000016, 34.06387699912389], [-118.06014400000018, 34.06365599912389], [-118.05974900000017, 34.06366499912392], [-118.05965900000018, 34.0638129991239], [-118.05964500000015, 34.0636129991239], [-118.05924500000015, 34.06362299912391], [-118.05910300000022, 34.063807999123796], [-118.05736900000015, 34.06388299912387], [-118.057374, 34.06360799912387], [-118.05679400000017, 34.06360799912403], [-118.05678600000016, 34.06402999912381], [-118.05655200000015, 34.06403399912391], [-118.05654300000022, 34.06363399912385], [-118.05580700000013, 34.06370899912383], [-118.05580300000024, 34.06338199912385], [-118.05540500000025, 34.063390999123854], [-118.05534900000028, 34.06239299912382], [-118.05567100000013, 34.06241399912389], [-118.0556690000002, 34.06218899912384], [-118.0563920000001, 34.06218399912387], [-118.05640400000013, 34.06171299912395], [-118.05692500000018, 34.061690999123805], [-118.05689200000018, 34.06077799912393], [-118.05784800000016, 34.06070999912387], [-118.057843, 34.05949999912394], [-118.05813800000021, 34.05944599912396], [-118.05815700000014, 34.05859699912393], [-118.05785600000011, 34.05859699912393], [-118.05784100000017, 34.059088999123894], [-118.05655800000022, 34.0590249991239], [-118.05632700000018, 34.056760999123945], [-118.05564000000028, 34.056746999123995], [-118.05564000000028, 34.05603899912395], [-118.054793, 34.05599199912393], [-118.05486500000018, 34.05717899912397], [-118.05350000000017, 34.05730999912396], [-118.05359700000012, 34.05908799912389], [-118.05092800000013, 34.05910399912388], [-118.045163, 34.0590839991239], [-118.04393400000018, 34.058631999123946], [-118.0410550000002, 34.0586079991239], [-118.041029, 34.05803699912395], [-118.04010200000022, 34.05803699912395], [-118.0401200000003, 34.05860199912393], [-118.03814100000015, 34.05859599912385], [-118.03815200000017, 34.057411999124], [-118.03730000000019, 34.0574099991239], [-118.037299, 34.056789999123936], [-118.03619900000018, 34.056758999123986], [-118.03629800000012, 34.0560349991239], [-118.034604, 34.056025999123975], [-118.03440700000017, 34.053822999124016], [-118.033868, 34.05378599912396], [-118.03381400000015, 34.053199999123976], [-118.03427600000016, 34.05325499912397], [-118.034308, 34.052207999124064], [-118.03472000000022, 34.051856999124105], [-118.03426400000016, 34.05153599912398], [-118.03371800000029, 34.051903999124036], [-118.03122200000027, 34.04949899912402], [-118.02825700000012, 34.04704599912404], [-118.0278020000002, 34.0474149991241], [-118.026544, 34.04645799912405], [-118.02632300000026, 34.046650999124026], [-118.0258870000002, 34.04620999912398], [-118.02847800000013, 34.0445439991241], [-118.02877900000018, 34.04479799912405], [-118.030308, 34.04356999912407], [-118.03002500000012, 34.04328299912411], [-118.03156000000011, 34.041987999124096], [-118.02783900000023, 34.03874699912412], [-118.03805298198328, 34.0343190050345], [-118.04188428556975, 34.035369053588084], [-118.04339588260241, 34.03561408512836], [-118.0445884374089, 34.03525052768196], [-118.04432800000016, 34.03508299912424], [-118.04515978151133, 34.034638640127575], [-118.04572127026921, 34.03365625533586], [-118.04657070407677, 34.033305691240486], [-118.04876876994082, 34.03302019793961], [-118.04720000000012, 34.03391299912429], [-118.04742652701437, 34.03410322346579], [-118.04734506517593, 34.034271204419525], [-118.04535726361144, 34.036537200184505], [-118.04532865840494, 34.036919628339255], [-118.04557012490184, 34.03715537632347], [-118.0472460000001, 34.03615099912419], [-118.04763700000017, 34.0362409991242], [-118.0481983491889, 34.036704281197785], [-118.04889879883146, 34.03611206315977], [-118.05012790413367, 34.03712395280939], [-118.04946200000013, 34.037758999124236], [-118.04982221419176, 34.03805967378], [-118.053076, 34.035348999124224], [-118.05352700000014, 34.0358829991242], [-118.05439000000013, 34.03526299912429], [-118.0546703700573, 34.03615896430696], [-118.0555122715035, 34.03761452686348], [-118.05517089344349, 34.037758462953754], [-118.05510900000012, 34.038130999124164], [-118.05174341273393, 34.03913616964479], [-118.05143697086702, 34.0394089221453], [-118.04960730636338, 34.03928430879342], [-118.05049000000012, 34.03985599912411], [-118.0508284615072, 34.040253059414205], [-118.05070312899991, 34.04067313436358], [-118.05219900000012, 34.041916999124076], [-118.05168729850757, 34.04216844554718], [-118.05251247726333, 34.04257683208203], [-118.05251019161145, 34.042769189175466], [-118.05343427013571, 34.042762442439376], [-118.05343721146167, 34.04343963078359], [-118.05560713540156, 34.04347966949241], [-118.05562100000024, 34.04304999912412], [-118.0570070000002, 34.04311399912414], [-118.05679635024975, 34.04456975702355], [-118.05780240416996, 34.04456876287442], [-118.05783964602358, 34.045296164342915], [-118.06008195238762, 34.04529242113075], [-118.05993980505527, 34.04594357779363], [-118.06028000000013, 34.04599699912413], [-118.05998400000018, 34.046415999124086], [-118.05998757554434, 34.04679233514523], [-118.0606440815639, 34.04679060804789], [-118.06064446830175, 34.04709589989576], [-118.06107368660653, 34.04716115450024], [-118.06113894736998, 34.05030664566093], [-118.06217251052094, 34.05030442667766], [-118.06217360941062, 34.05075713528082], [-118.06420116492056, 34.050749297085716], [-118.06426784342109, 34.050546348133516], [-118.06504584473565, 34.05054502463829], [-118.06506700000018, 34.05154199912403], [-118.06621310247667, 34.05154237828154], [-118.06621500000014, 34.05110499912395], [-118.06653322341451, 34.05110175194644], [-118.06653206779386, 34.050858106046626], [-118.06694637620204, 34.05085696562916], [-118.06694728550677, 34.051090532841876], [-118.06757290642369, 34.05108914402368], [-118.06757426064024, 34.051785584915024], [-118.06872600000015, 34.05177999912398], [-118.068722, 34.05241599912394], [-118.06957879362679, 34.05309740416138], [-118.07021500000013, 34.05404599912397], [-118.07117700000019, 34.057210999124045], [-118.070673, 34.05974999912389], [-118.07024400000012, 34.0606019991239], [-118.0676110000002, 34.06268899912387], [-118.06895800000015, 34.06268899912387], [-118.06861400000032, 34.06411199912383], [-118.06834300000018, 34.06431799912383], [-118.0665270000002, 34.06419699912382], [-118.06553100000032, 34.063088999123885], [-118.06509600000017, 34.063417999123935], [-118.06475300000014, 34.06326799912388], [-118.06400100000019, 34.063305999123905], [-118.06397200000026, 34.06366499912392], [-118.06355200000017, 34.06371399912383], [-118.06354600000017, 34.06404899912394], [-118.06314900000018, 34.06409999912388], [-118.06315100000026, 34.06360699912392], [-118.06142600000021, 34.06359699912392], [-118.06143900000016, 34.064437999123925], [-118.06059900000015, 34.064402999123836]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "South El Monte", "metadata": {"sqmi": 2.927779691, "type": "standalone-city", "name": "South El Monte", "slug": "south-el-monte"}, "cases": 28.0, "population": 0.22679910862653307, "external_id": "south-el-monte", "slug": "south-el-monte-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/south-el-monte-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.189746, 33.95937799912517], [-118.18506400000011, 33.95563699912526], [-118.1785030000001, 33.95497399912516], [-118.1769380000003, 33.95663599912516], [-118.17967500000017, 33.95698199912524], [-118.17952200000026, 33.9579179991252], [-118.17733200000018, 33.957687999125206], [-118.17742700000016, 33.95700599912516], [-118.17262500000021, 33.95651499912527], [-118.17296500000016, 33.954301999125185], [-118.17038000000022, 33.95402799912513], [-118.17044900000022, 33.954373999125075], [-118.16396000000017, 33.95335999912523], [-118.15831700000022, 33.95199699912517], [-118.15611900000016, 33.95102599912522], [-118.15810500000016, 33.94844099912525], [-118.16210300000014, 33.94201399912535], [-118.1639420000001, 33.94086899912542], [-118.16446500000016, 33.94029599912544], [-118.164697, 33.93925499912548], [-118.1646480000002, 33.93877799912539], [-118.16588200000017, 33.93587299912546], [-118.16491600000016, 33.93319599912546], [-118.16377300000018, 33.93333399912542], [-118.162567, 33.93015699912553], [-118.16274300000028, 33.92919899912546], [-118.16178700000013, 33.928923999125516], [-118.16272000000014, 33.92662599912542], [-118.1642120000002, 33.926472999125465], [-118.16505300000017, 33.92685399912552], [-118.165349, 33.927455999125534], [-118.16631900000014, 33.926830999125556], [-118.16673300000025, 33.92743399912553], [-118.16688800000017, 33.927433999125554], [-118.16767400000029, 33.92695599912557], [-118.1676270000002, 33.92592799912558], [-118.167768, 33.92572199912562], [-118.17058400000016, 33.92368399912556], [-118.156126, 33.91699099912562], [-118.15841100000017, 33.913897999125645], [-118.15784900000021, 33.91361699912568], [-118.158072, 33.91279699912572], [-118.15837900000017, 33.9126139991257], [-118.15858800000011, 33.91122999912566], [-118.15900700000016, 33.9099639991257], [-118.16015000000017, 33.910469999125716], [-118.16020600000014, 33.91123799912566], [-118.16095800000022, 33.91169699912576], [-118.16238900000025, 33.91235099912571], [-118.163402, 33.9123439991257], [-118.16386300000012, 33.912601999125755], [-118.16386400000017, 33.91232399912575], [-118.1641080000002, 33.91234799912572], [-118.16814700000018, 33.91423199912569], [-118.16815200000022, 33.9140659991257], [-118.168386, 33.91404699912572], [-118.16819800000027, 33.91228299912573], [-118.1705510000002, 33.91226199912569], [-118.17051400000011, 33.91183999912574], [-118.17330600000011, 33.91182199912567], [-118.17330200000019, 33.912815999125684], [-118.17276400000016, 33.91282999912564], [-118.1728030000002, 33.91311499912572], [-118.17047000000017, 33.91311499912572], [-118.17047000000017, 33.913674999125654], [-118.17067000000014, 33.91381599912577], [-118.17035400000017, 33.914286999125714], [-118.16960800000014, 33.913954999125664], [-118.16966400000018, 33.91451699912572], [-118.169459, 33.91485499912573], [-118.17518800000015, 33.91749599912567], [-118.17665300000014, 33.918312999125654], [-118.17532900000022, 33.930476999125474], [-118.18007700000032, 33.9309419991256], [-118.18282400000024, 33.93079099912547], [-118.18189100000022, 33.933274999125445], [-118.18174000000013, 33.934362999125376], [-118.18235600000023, 33.93428599912552], [-118.18961100000016, 33.93508199912544], [-118.19850700000016, 33.935704999125484], [-118.19955600000011, 33.935920999125386], [-118.21086200000026, 33.9370149991254], [-118.21053200000023, 33.93982699912538], [-118.21370200000014, 33.94024499912532], [-118.21322400000017, 33.94418699912533], [-118.21291600000016, 33.945020999125326], [-118.21676800000016, 33.945440999125296], [-118.21683400000019, 33.945019999125286], [-118.21654900000016, 33.94498099912532], [-118.21623000000024, 33.94389599912535], [-118.21608, 33.943932999125344], [-118.21629700000013, 33.94251599912541], [-118.21540400000019, 33.94231499912535], [-118.215521, 33.94135099912539], [-118.21511400000011, 33.94120599912533], [-118.2150620000002, 33.940204999125314], [-118.214708, 33.940102999125415], [-118.21482, 33.939857999125415], [-118.21441900000016, 33.93885399912539], [-118.21452800000013, 33.93844399912543], [-118.214219, 33.93840499912537], [-118.21424100000017, 33.937414999125416], [-118.21401000000027, 33.93737499912542], [-118.21392200000022, 33.9368929991254], [-118.22324600000017, 33.9378419991254], [-118.22302200000013, 33.93975699912536], [-118.22690600000014, 33.94016699912537], [-118.23085697201141, 33.95857700567782], [-118.23150498589119, 33.961014001923964], [-118.2295429860847, 33.96138000283287], [-118.2278599860034, 33.96036000240228], [-118.22589098564556, 33.95962100233974], [-118.2229029720002, 33.95921800567679], [-118.22456397200169, 33.96163100568034], [-118.22543597200234, 33.96337800568265], [-118.2258159859686, 33.96553400136419], [-118.22519998609287, 33.96561700308991], [-118.22520298606265, 33.96635299924446], [-118.22451799278855, 33.966307003916704], [-118.22446297937418, 33.96577300051303], [-118.22412299262592, 33.965737004297495], [-118.22412297916645, 33.96541000101665], [-118.21187799047651, 33.964311003321804], [-118.212021, 33.963629999125246], [-118.19254100000023, 33.961596999125064], [-118.189746, 33.95937799912517]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "South Gate", "metadata": {"sqmi": 7.44837311533, "type": "standalone-city", "name": "South Gate", "slug": "south-gate"}, "cases": 254.0, "population": 0.9815666421919079, "external_id": "south-gate", "slug": "south-gate-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/south-gate-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.256407, 34.00381399912452], [-118.256506, 33.98921399912467], [-118.280507, 33.989013999124694], [-118.280507, 33.99501399912465], [-118.281107, 34.003712999124524], [-118.265207, 34.00381399912453], [-118.263907, 34.00371399912455], [-118.260707, 34.00391399912448], [-118.256407, 34.00381399912452]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "South Park", "metadata": {"sqmi": 1.4093517611, "type": "segment-of-a-city", "name": "South Park", "slug": "south-park"}, "cases": 121.0, "population": 0.3796078431372549, "external_id": "south-park", "slug": "south-park-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/south-park-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.14782200000013, 34.12505599912308], [-118.146058, 34.12363399912309], [-118.14575700000016, 34.12360499912312], [-118.14597300000023, 34.124487999123154], [-118.14434300000013, 34.12261699912307], [-118.1443480000002, 34.1218109991231], [-118.143702, 34.12158299912317], [-118.14384100000017, 34.1213089991232], [-118.14345400000013, 34.12149799912305], [-118.14370700000018, 34.120998999123195], [-118.14331200000014, 34.1202259991232], [-118.14216300000017, 34.11948399912316], [-118.14077400000025, 34.11642199912322], [-118.13990900000016, 34.11396499912327], [-118.13836800000013, 34.112559999123164], [-118.13953500000014, 34.11251999912313], [-118.13639600000022, 34.107791999123314], [-118.134478, 34.10544899912337], [-118.13448900000016, 34.10416299912345], [-118.13469400000025, 34.10408499912339], [-118.13469400000015, 34.10391999912342], [-118.13902900000019, 34.10387299912341], [-118.140045, 34.10407199912336], [-118.14183100000021, 34.103971999123424], [-118.141783, 34.09868199912348], [-118.17799400000028, 34.098594999123456], [-118.17799500000012, 34.110243999123284], [-118.17720700000014, 34.1103919991234], [-118.177333, 34.11084699912331], [-118.177021, 34.110927999123355], [-118.17688600000014, 34.11205699912329], [-118.17699300000021, 34.112197999123275], [-118.1755350000002, 34.11222399912324], [-118.17595000000016, 34.1125259991233], [-118.17563100000017, 34.11262699912328], [-118.17542200000015, 34.1132509991233], [-118.1727580000002, 34.11362699912321], [-118.16886600000014, 34.11784299912324], [-118.168833, 34.118667999123176], [-118.16899900000023, 34.1193409991232], [-118.16889000000016, 34.119923999123195], [-118.16828900000014, 34.12018299912317], [-118.16757, 34.1214559991232], [-118.16803900000012, 34.123111999123125], [-118.1680530000002, 34.12392299912321], [-118.16580200000016, 34.12404399912313], [-118.16546600000018, 34.12401099912314], [-118.16554000000016, 34.123694999123174], [-118.16321100000029, 34.123594999123135], [-118.163195, 34.124023999123125], [-118.15962600000015, 34.1240039991231], [-118.15993600000014, 34.1237529991231], [-118.15166400000015, 34.12387499912306], [-118.15027100000015, 34.1240369991231], [-118.14913800000015, 34.12574299912308], [-118.14782200000013, 34.12505599912308]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "South Pasadena", "metadata": {"sqmi": 3.41641890402, "type": "standalone-city", "name": "South Pasadena", "slug": "south-pasadena"}, "cases": 82.0, "population": 0.26053250301836434, "external_id": "south-pasadena", "slug": "south-pasadena-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/south-pasadena-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.09406098589538, 34.05448200244639], [-118.09107198542462, 34.0539880052196], [-118.09100598589608, 34.05302500245939], [-118.09254198589174, 34.05266700241822], [-118.09253198590737, 34.052148000730874], [-118.09049098546384, 34.0518650051545], [-118.09048798582909, 34.05161900112895], [-118.08839398595424, 34.05171900376655], [-118.08830298598055, 34.04989400047003], [-118.08616898590516, 34.04986300403631], [-118.08617198607453, 34.0483720002153], [-118.08419998570504, 34.048209004668934], [-118.08402997177821, 34.04697900575833], [-118.08436697177898, 34.04586500575687], [-118.08432798592496, 34.04441900064493], [-118.08309798585391, 34.044395004234026], [-118.08298598580487, 34.04368400131661], [-118.08182498597233, 34.04377100356113], [-118.08182798589176, 34.04317400408113], [-118.08378098635764, 34.04316999997349], [-118.08386698541628, 34.04286900492414], [-118.0843489858901, 34.042869000781316], [-118.08443600000037, 34.043166999124246], [-118.08430500000262, 34.04386400242946], [-118.08574998570847, 34.0438629999605], [-118.08563197178184, 34.04279100575307], [-118.08593598914487, 34.042510005404914], [-118.08901598589212, 34.04380399722184], [-118.09006197178836, 34.042086005753255], [-118.0897169717878, 34.04193600575292], [-118.09012598342397, 34.04120100687777], [-118.09026898678412, 34.041246997926336], [-118.09077898546549, 34.04045000284032], [-118.09104998603482, 34.040481000324185], [-118.09225400000025, 34.04201799912415], [-118.09380300000022, 34.04271999912423], [-118.09237900000029, 34.04521699912401], [-118.09452198639052, 34.046178997253115], [-118.09554897179507, 34.0447130057579], [-118.09399197179312, 34.04394500575661], [-118.09464798231316, 34.043084007143875], [-118.0968740000002, 34.04473099912417], [-118.09748198613262, 34.04485300172993], [-118.1002719907198, 34.04476199946909], [-118.10268100000029, 34.047397999124044], [-118.10255900003514, 34.04762699928014], [-118.10552898432874, 34.047076999888915], [-118.10620198745204, 34.04661100481472], [-118.10661798586473, 34.046525002249126], [-118.10667899306613, 34.04672400144924], [-118.10704798582945, 34.04666100200012], [-118.10757700000018, 34.04730899912406], [-118.10788100000026, 34.047410999124075], [-118.10798400000031, 34.04942499912406], [-118.10819000000029, 34.04989799912404], [-118.10803000000033, 34.051971999124014], [-118.10810400000025, 34.053357999124], [-118.10846500000021, 34.05350599912398], [-118.10837300000023, 34.05466699912402], [-118.10803299114495, 34.0553379995447], [-118.10599298589004, 34.05534100416489], [-118.10501298626875, 34.0543849998457], [-118.10474298553595, 34.05434700505094], [-118.10482597180444, 34.05420900577239], [-118.1043979718042, 34.05364500577161], [-118.10340199284231, 34.053410006281936], [-118.10300198700041, 34.05380999816018], [-118.10198099637634, 34.053587007142674], [-118.10142098705742, 34.05442999984995], [-118.1005249929206, 34.0544200033965], [-118.10049798593604, 34.05536600006729], [-118.0994569864457, 34.055373001217944], [-118.09406098589538, 34.05448200244639]]], [[[-118.07544000000026, 34.057725999123925], [-118.07149600000031, 34.057443999124], [-118.07121443745866, 34.05723831318806], [-118.07155688772028, 34.05723722056429], [-118.07204137648507, 34.056047383898324], [-118.07245105316235, 34.051741324222796], [-118.07201362464866, 34.047434586672786], [-118.07472435580435, 34.04077935567412], [-118.07529831351394, 34.03795974953298], [-118.0750896434646, 34.03715681561098], [-118.07343653753378, 34.03401461166383], [-118.07125729293914, 34.03105303963076], [-118.07102080108044, 34.03045587621798], [-118.07108202457052, 34.02983122479907], [-118.07279198688651, 34.030999419031765], [-118.07279057613013, 34.03089473931985], [-118.07789400000021, 34.03559999912432], [-118.08069800000018, 34.03932799912418], [-118.07935400000021, 34.03981799912416], [-118.07813200000017, 34.03951299912419], [-118.07783300000023, 34.04027199912422], [-118.07634600000036, 34.040512999124154], [-118.0783030000003, 34.04122299912422], [-118.07932600000031, 34.04234399912422], [-118.07936400000023, 34.04260099912415], [-118.07738500000029, 34.04198999912411], [-118.0773860000004, 34.042294999124145], [-118.07913200000023, 34.042585999124164], [-118.07920300000025, 34.04283199912417], [-118.07970100000028, 34.04291099912415], [-118.07968400000027, 34.04350599912413], [-118.08085900000029, 34.04358699912423], [-118.08091200000027, 34.044030999124175], [-118.0824520000003, 34.04407499912412], [-118.08235800000026, 34.04450999912418], [-118.08183100000026, 34.044473999124136], [-118.08185600000029, 34.049653999124125], [-118.08002100000026, 34.04988099912403], [-118.07999800000032, 34.05171699912406], [-118.07890000000023, 34.05441099912397], [-118.07562900000029, 34.054486999124094], [-118.07544000000026, 34.057725999123925]]], [[[-118.0733220000003, 34.09076799912354], [-118.0733220000003, 34.09055999912358], [-118.07333097787667, 34.09056297992054], [-118.07337559968194, 34.09355585507189], [-118.0733220000003, 34.09076799912354]]], [[[-118.07490289064728, 34.09108696527028], [-118.07483160034182, 34.09106288096245], [-118.08303100000025, 34.093763999123546], [-118.08354415113666, 34.093939693404046], [-118.07490289064728, 34.09108696527028]]], [[[-118.08470466789564, 34.09432592799567], [-118.08442519220833, 34.09423290475713], [-118.08657105537941, 34.09493552006718], [-118.08470466789564, 34.09432592799567]]], [[[-118.07729992168406, 34.10168962182256], [-118.07753228121126, 34.10168906984225], [-118.07752000000026, 34.10181699912349], [-118.07720726619993, 34.10180205961067], [-118.07729992168406, 34.10168962182256]]], [[[-118.07720955993246, 34.10303382829105], [-118.07720852700096, 34.10253510485674], [-118.07721100000019, 34.10315399912344], [-118.07720980048809, 34.10315401865949], [-118.07720955993246, 34.10303382829105]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "South San Gabriel", "metadata": {"sqmi": 1.41900252301, "type": "unincorporated-area", "name": "South San Gabriel", "slug": "south-san-gabriel"}, "cases": 10.0, "population": 0.08847991505928154, "external_id": "south-san-gabriel", "slug": "south-san-gabriel-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/south-san-gabriel-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.91112297154568, 34.02519800568951], [-117.91005497154777, 34.014970005675856], [-117.90957798575502, 34.013395000848696], [-117.90289398589704, 34.013709001752815], [-117.89799598567859, 34.01356300276345], [-117.88645698575785, 34.013610004032586], [-117.88682198594336, 34.01017200018053], [-117.88449898584817, 34.01008300321471], [-117.88012998539068, 34.01142500144456], [-117.88081398551842, 34.00416800514986], [-117.88274198567252, 34.004110001331135], [-117.88259899262506, 34.00725600401885], [-117.88716698601057, 34.007564999589285], [-117.88728898561666, 34.00652800449909], [-117.88951298457346, 34.00664299926485], [-117.89027898688002, 34.006192004291584], [-117.89067598588552, 34.00351200237293], [-117.90206198611608, 34.005334999840905], [-117.90201298586686, 34.00594700022027], [-117.90177400000027, 34.00595100239338], [-117.9017439928408, 34.006317003389114], [-117.90239998593799, 34.00632799976576], [-117.90248098528187, 34.00540200661036], [-117.90839498617939, 34.006355999737124], [-117.90840599233569, 34.00678500464753], [-117.90939298614252, 34.006924999803104], [-117.90918899980072, 34.00806900309971], [-117.91054898603936, 34.00813699946229], [-117.91070498525474, 34.00674300647132], [-117.91483398568612, 34.00736900163543], [-117.91462499954528, 34.00911000375116], [-117.91683998599609, 34.009320000108815], [-117.91664499257642, 34.01123400416888], [-117.91891798639203, 34.011542000718045], [-117.92355998570955, 34.01125100121225], [-117.91997600000029, 34.01691899912458], [-117.91937100000011, 34.01840899912447], [-117.91997000000032, 34.01857599912443], [-117.91741698165407, 34.025130000758644], [-117.91551598510048, 34.02470200557267], [-117.91403398625657, 34.02517600305539], [-117.91215498317881, 34.026381999284716], [-117.91112297154568, 34.02519800568951]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "South San Jose Hills", "metadata": {"sqmi": 1.48445028227, "type": "unincorporated-area", "name": "South San Jose Hills", "slug": "south-san-jose-hills"}, "cases": 23.0, "population": 0.20221557939159487, "external_id": "south-san-jose-hills", "slug": "south-san-jose-hills-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/south-san-jose-hills-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.03035697173607, 33.951176005621434], [-118.00336597170296, 33.93837900559843], [-118.00349698584557, 33.93654500077173], [-118.00324898585828, 33.936546003949914], [-118.00298598585523, 33.93522400234489], [-118.00082998586531, 33.93523700390813], [-118.00084398580172, 33.92933700217213], [-118.02322698585667, 33.92413100234448], [-118.01445897172502, 33.918615005575504], [-118.01485397172571, 33.918144005575016], [-118.01484198586847, 33.917115003937965], [-118.05030398581619, 33.91688200277041], [-118.05519698640258, 33.91704299954759], [-118.0552049858513, 33.93005400049897], [-118.05288898620674, 33.93003500187559], [-118.05189400072591, 33.92958702430062], [-118.05206298575733, 33.931735000001964], [-118.04881698587592, 33.931741004017226], [-118.04882098586631, 33.931395000826605], [-118.0477909859015, 33.93140700389881], [-118.0476989717667, 33.931213005599616], [-118.04811497176784, 33.929912005598055], [-118.04794697176868, 33.92665300559372], [-118.04641199899754, 33.92542802647703], [-118.04641599307834, 33.92680400203591], [-118.04725698579307, 33.92671600148906], [-118.04710998572291, 33.927826000603645], [-118.04642099305951, 33.92786900241515], [-118.04641399283972, 33.931739003552096], [-118.04714398587564, 33.931737000777524], [-118.04713099307209, 33.93235400223368], [-118.04759898579637, 33.93231300137052], [-118.04755499288491, 33.93265100339851], [-118.04881598592195, 33.932678000594365], [-118.04884498583374, 33.93568900157491], [-118.0464059929603, 33.9362260008329], [-118.04641298588626, 33.938841000110735], [-118.04574699297787, 33.93885200300215], [-118.04574399194, 33.93931100528991], [-118.04618898654807, 33.939408999338774], [-118.04587198086139, 33.93981099895785], [-118.04452298756563, 33.93887900467382], [-118.04233699188286, 33.940020998563526], [-118.04574298950087, 33.94220599771323], [-118.04768898729543, 33.941020004497176], [-118.04891998645014, 33.94172999947476], [-118.04985700000024, 33.942671999125366], [-118.05087799190824, 33.94332000533506], [-118.05145198583006, 33.94332400208349], [-118.05205500000021, 33.94414399912534], [-118.05139298151317, 33.94480099952739], [-118.05023898912148, 33.94405000572192], [-118.0490280000002, 33.94518899912539], [-118.04928300000027, 33.94536399912548], [-118.04886098147978, 33.945760999823065], [-118.0482979870153, 33.9454350042761], [-118.047998987359, 33.94561300307882], [-118.04640600000026, 33.94715999912536], [-118.0460480000002, 33.94795499912534], [-118.04741898705514, 33.94877899616525], [-118.04821098930222, 33.94799500610565], [-118.0484859965002, 33.949520988543526], [-118.05065499030309, 33.94719300542264], [-118.05365300000027, 33.949297999125356], [-118.04940398309536, 33.95348700223427], [-118.04538498929877, 33.95066800609871], [-118.04273500000025, 33.95333799912525], [-118.04588600000024, 33.95550999912525], [-118.03638097174355, 33.953809005626205], [-118.03471497174145, 33.953227005625074], [-118.03035697173607, 33.951176005621434]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "South Whittier", "metadata": {"sqmi": 5.37231811994, "type": "unincorporated-area", "name": "South Whittier", "slug": "south-whittier"}, "cases": 67.0, "population": 0.5922390170600195, "external_id": "south-whittier", "slug": "south-whittier-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/south-whittier-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.59086420151291, 34.3734646404554], [-118.59127390816597, 34.37221102563942], [-118.5916622339331, 34.37191073561773], [-118.59215897500728, 34.37180421979235], [-118.59241084948545, 34.37044892954441], [-118.5939604143744, 34.37062031845195], [-118.59404745169368, 34.37750353883773], [-118.59281460785274, 34.377533809824925], [-118.59154647644138, 34.377107840885714], [-118.59015816185685, 34.37687498988339], [-118.58767179067, 34.37703152596522], [-118.58615524800594, 34.37753667888219], [-118.58409073440455, 34.378669519317775], [-118.5834721362097, 34.379097998628886], [-118.58383754681991, 34.3796110855955], [-118.5841471691019, 34.37950532575828], [-118.5850239961181, 34.37964613150865], [-118.5854654407727, 34.37931279556391], [-118.5855363673524, 34.380039384423284], [-118.58660379285523, 34.38013064783861], [-118.58758917037221, 34.38104636946716], [-118.58747908192608, 34.38133526842904], [-118.58809365783792, 34.381531264564586], [-118.58849913563132, 34.381910679075304], [-118.58911212934991, 34.38163810482651], [-118.58915902358783, 34.38180148701896], [-118.5901811387616, 34.38169220545479], [-118.59019247816167, 34.38263341800558], [-118.59140195618227, 34.382928805193494], [-118.59239929453214, 34.38352880513721], [-118.59308681198556, 34.38276460345944], [-118.59335848577409, 34.38273516316536], [-118.5936789564591, 34.38294880960359], [-118.59388174224344, 34.382610428635836], [-118.59399336516556, 34.38280940755585], [-118.5943312982324, 34.38274339572596], [-118.59607294727908, 34.38397761353512], [-118.597287433113, 34.38428160032209], [-118.59931981863544, 34.384406218032076], [-118.6004427608482, 34.385052805352835], [-118.6009088625023, 34.38476058166862], [-118.60257421495716, 34.387346671178584], [-118.60362746935837, 34.38737872077135], [-118.60356795601975, 34.38795311038857], [-118.60383383792548, 34.38817920336465], [-118.60407430286658, 34.388232248676424], [-118.60435114806654, 34.387995346452584], [-118.60453385262885, 34.3883837587154], [-118.60422459160327, 34.38885428637249], [-118.60408040105709, 34.38962669916295], [-118.60433024186274, 34.389760788323436], [-118.60379796315794, 34.390188513621624], [-118.60443746858677, 34.39064667392931], [-118.60496202861597, 34.39013995399278], [-118.60556355179186, 34.39007130453382], [-118.6056451700131, 34.392060958385386], [-118.60513405198799, 34.39194851842929], [-118.60465509843428, 34.392987712413785], [-118.60391162469237, 34.3934148973157], [-118.60311705078172, 34.39372620592861], [-118.60168005927719, 34.393791407886035], [-118.60034774635442, 34.39452802098293], [-118.5997868279493, 34.39531958305173], [-118.60001519172971, 34.39565078510308], [-118.5996235490632, 34.39588827281826], [-118.59960506530395, 34.39622193206107], [-118.59906997072294, 34.39609861339837], [-118.59812891510316, 34.39632451990987], [-118.59805905913814, 34.39601388388899], [-118.59727935904745, 34.3958167182695], [-118.59711952907213, 34.39564128989272], [-118.59637699612414, 34.396090206811195], [-118.59515854961545, 34.39495372436187], [-118.59396830608938, 34.39598318275962], [-118.59349848997391, 34.39572448686451], [-118.59203317908243, 34.396755217068694], [-118.59141339437832, 34.39623034114174], [-118.59111899631309, 34.39616088122544], [-118.59057111065142, 34.3962187558536], [-118.59038497615435, 34.39649497499788], [-118.59037590546109, 34.396239381655924], [-118.58959921811604, 34.39644705507831], [-118.58885224593665, 34.39607078695429], [-118.58846465891253, 34.39614579074984], [-118.58808185272133, 34.39643782612406], [-118.58805840993517, 34.39663433249044], [-118.58758289913791, 34.3964168598447], [-118.58684024050048, 34.39663270433587], [-118.58655672122251, 34.3963283174771], [-118.58543796455992, 34.39679745969139], [-118.58816713888662, 34.40130653227246], [-118.59150831785676, 34.40329759665122], [-118.59170096520964, 34.40357876145572], [-118.59223464267981, 34.403440130240284], [-118.5925671685505, 34.40409982329909], [-118.59277127796817, 34.404049686383345], [-118.59757938049118, 34.4068938010981], [-118.58176145572929, 34.41775204343758], [-118.5801302953008, 34.41555650808925], [-118.57913147314474, 34.412968446206065], [-118.57912872369486, 34.411790736966275], [-118.57999310593652, 34.408305841531416], [-118.57985368563646, 34.40689110485275], [-118.57931545915318, 34.405816899179726], [-118.57752012028281, 34.40395988479255], [-118.57687820197141, 34.402832646373966], [-118.57637287143226, 34.400452454335564], [-118.5751704372149, 34.39778720354482], [-118.57525960876411, 34.395112357297194], [-118.57513928500266, 34.394263387238304], [-118.5748583404144, 34.39351281099583], [-118.57453298798063, 34.393118710027885], [-118.57189183179464, 34.384490005285144], [-118.57398489895425, 34.3839644146573], [-118.57493979889975, 34.38348359594917], [-118.57554517541223, 34.38268548029189], [-118.5755824287125, 34.38167166339599], [-118.57344727524999, 34.38158279579113], [-118.57099668498373, 34.380944537606446], [-118.57093185944511, 34.379900007948194], [-118.57056237832155, 34.37913980885302], [-118.56967401723135, 34.37840782303804], [-118.5680180540356, 34.37784482647147], [-118.56838687872, 34.37742442656025], [-118.56666877453239, 34.37573610710823], [-118.56601981915371, 34.37468534527684], [-118.56553945698154, 34.37443895651873], [-118.56564700271065, 34.37408293104512], [-118.56525207315751, 34.37326347985541], [-118.56434635753075, 34.37319237950469], [-118.56426114680836, 34.37293700169004], [-118.56388698872723, 34.37273572732318], [-118.56279068667354, 34.373252976665825], [-118.56261930884287, 34.37298675820877], [-118.56280775205538, 34.372516569063116], [-118.56214729457609, 34.37183771411645], [-118.56211392352155, 34.37142991514537], [-118.56321588225794, 34.37141433070245], [-118.56353238788049, 34.37088309154003], [-118.563812377232, 34.370877062825855], [-118.5645302519005, 34.371352433960624], [-118.56537081620435, 34.37131436075301], [-118.56562512009725, 34.3715276204837], [-118.56585450776225, 34.37151209643016], [-118.56582224746795, 34.371207146461394], [-118.56596626634351, 34.37115742488169], [-118.56655454547973, 34.37120850791298], [-118.56765304670593, 34.37176060343934], [-118.56823609297281, 34.371427888792994], [-118.56851480536218, 34.371555129198654], [-118.56880199221177, 34.37204505182798], [-118.5689806441693, 34.371947157971306], [-118.56940867388354, 34.372140056969926], [-118.57021717456256, 34.37182252822445], [-118.57117761625702, 34.37192097079748], [-118.57042216467035, 34.372542009158124], [-118.57062342424524, 34.37282742132793], [-118.57050012748834, 34.373173824885015], [-118.57103748130778, 34.37394491309124], [-118.57031798194765, 34.37438867886929], [-118.57055158570311, 34.374678115823855], [-118.57208402379509, 34.37431984878814], [-118.57213891189532, 34.37450897569719], [-118.57251087905304, 34.374575422125986], [-118.57251693833514, 34.37500401163837], [-118.57436259915221, 34.37446883758834], [-118.5750221244258, 34.37500468512957], [-118.57487841983924, 34.37575370310087], [-118.575026427, 34.37681951864098], [-118.57534972715082, 34.376882065393296], [-118.5754542264437, 34.37896544320371], [-118.58118477558315, 34.378805875477525], [-118.58109862402358, 34.37595283730581], [-118.58192549946408, 34.3757380245958], [-118.5819341025249, 34.37538954900948], [-118.5827413972625, 34.3754042193721], [-118.58276603668905, 34.37506520132606], [-118.58214006211585, 34.37467105435587], [-118.5821473313626, 34.374539917192735], [-118.58286337586506, 34.37458228389441], [-118.58265533351717, 34.374442508184096], [-118.58270726304717, 34.37407719981763], [-118.5831701800443, 34.373769983868925], [-118.58372342583993, 34.373092379740115], [-118.58413534514904, 34.37366687955808], [-118.5845061460102, 34.373518875619695], [-118.58537154620322, 34.373994979419656], [-118.58589474594807, 34.37323170249076], [-118.58648375086962, 34.37315254326661], [-118.58681560327905, 34.37265572997183], [-118.58767692946387, 34.37273246637654], [-118.58782086196695, 34.37289656057932], [-118.58840941964287, 34.37299983570359], [-118.58840151446823, 34.373387542763666], [-118.58816890653166, 34.373706648309806], [-118.58856014269273, 34.37421778392951], [-118.58947381299234, 34.374213646585915], [-118.58994466011755, 34.37460895081959], [-118.5905924435263, 34.37413277171852], [-118.59086420151291, 34.3734646404554]], [[-118.59086420151291, 34.3734646404554], [-118.5908643043516, 34.373465190016795], [-118.59086444575132, 34.373465710539655], [-118.59086420151291, 34.3734646404554]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Stevenson Ranch", "metadata": {"sqmi": 3.11369076044, "type": "unincorporated-area", "name": "Stevenson Ranch", "slug": "stevenson-ranch"}, "cases": 16.0, "population": 0.20967107849561, "external_id": "stevenson-ranch", "slug": "stevenson-ranch-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/stevenson-ranch-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.40830000000012, 34.1566719991227], [-118.40285500000014, 34.156599999122676], [-118.4017780000001, 34.15620399912274], [-118.39951800000016, 34.15481999912266], [-118.398833, 34.15462999912277], [-118.378247, 34.15460599912273], [-118.377796, 34.153480999122635], [-118.37679300000012, 34.15306799912265], [-118.36760900000012, 34.15302299912265], [-118.362911, 34.14510699912275], [-118.360915, 34.142037999122856], [-118.36099400000016, 34.14103999912287], [-118.362342, 34.13869599912297], [-118.36184900000012, 34.13859199912296], [-118.358605, 34.13949599912288], [-118.35234439933073, 34.13433066911443], [-118.352584, 34.13419199912297], [-118.353613, 34.13219699912287], [-118.354411, 34.13250699912291], [-118.35601100000017, 34.13280699912298], [-118.35651100000013, 34.13200699912296], [-118.35721100000012, 34.13270699912295], [-118.35821100000011, 34.133206999122976], [-118.358811, 34.13270699912302], [-118.359611, 34.133006999123054], [-118.360711, 34.13240699912296], [-118.361911, 34.13100699912297], [-118.363311, 34.13180699912287], [-118.361911, 34.13000699912289], [-118.360511, 34.130406999123096], [-118.361211, 34.129906999122866], [-118.362411, 34.12950699912294], [-118.363111, 34.12990699912297], [-118.36271100000013, 34.129206999122935], [-118.361211, 34.129206999122935], [-118.35991100000011, 34.12830699912296], [-118.360511, 34.127306999122986], [-118.361011, 34.12800699912292], [-118.361811, 34.128206999122945], [-118.363111, 34.12810699912294], [-118.36711100000011, 34.12890699912307], [-118.36791100000013, 34.12930699912297], [-118.36981100000014, 34.12930699912292], [-118.370111, 34.12990699912297], [-118.371311, 34.13010699912303], [-118.372611, 34.131106999123], [-118.373612, 34.13090699912306], [-118.372811, 34.129406999123084], [-118.372011, 34.12840699912318], [-118.371511, 34.126906999122994], [-118.37171100000015, 34.126406999123034], [-118.37301100000015, 34.126406999123034], [-118.373611, 34.12670699912286], [-118.374911, 34.12460699912307], [-118.374911, 34.12400699912312], [-118.37541100000013, 34.12340699912316], [-118.37571100000014, 34.12330699912309], [-118.37571100000014, 34.12180699912313], [-118.38101200000011, 34.12300699912299], [-118.38161200000012, 34.122306999123055], [-118.38261200000012, 34.122606999123036], [-118.38321200000011, 34.122006999123116], [-118.385012, 34.122006999123116], [-118.385812, 34.121406999123025], [-118.386912, 34.12180699912304], [-118.38761200000013, 34.12340699912316], [-118.39141200000014, 34.122006999123165], [-118.39351200000013, 34.12000699912309], [-118.394412, 34.11990699912323], [-118.395112, 34.11960699912314], [-118.397412, 34.1191069991231], [-118.398112, 34.11960699912314], [-118.3982120000001, 34.12070699912301], [-118.398912, 34.122306999123076], [-118.4030120000001, 34.125206999122994], [-118.40351200000012, 34.12720699912302], [-118.403912, 34.127906999123056], [-118.40611300000015, 34.12740699912298], [-118.4071710000001, 34.129574999122994], [-118.40837600000012, 34.129853999123], [-118.408441, 34.13088699912291], [-118.408698, 34.131143999122955], [-118.40878700000015, 34.131575999122944], [-118.40907900000012, 34.13178199912291], [-118.409195, 34.13236099912301], [-118.4098070000001, 34.13250099912293], [-118.41036500000013, 34.133152999123006], [-118.41063100000011, 34.133028999123034], [-118.41102100000018, 34.13212699912291], [-118.41148600000015, 34.13218499912287], [-118.411805, 34.13247099912309], [-118.412257, 34.1339959991229], [-118.41222200000013, 34.13452399912297], [-118.41248800000012, 34.1346049991229], [-118.412993, 34.1344439991229], [-118.41391300000014, 34.13360699912287], [-118.414359, 34.133717999122986], [-118.414368, 34.134010999122836], [-118.41231300000014, 34.13620599912284], [-118.41214600000013, 34.136727999123], [-118.41321300000016, 34.1383059991228], [-118.41351, 34.139185999122915], [-118.413713, 34.14060599912274], [-118.414913, 34.143105999122824], [-118.415913, 34.143605999122734], [-118.41691300000011, 34.14360599912279], [-118.4189130000001, 34.14420599912277], [-118.4186250000001, 34.145875999122815], [-118.42261400000014, 34.14650099912281], [-118.42261200000014, 34.1499089991227], [-118.419317, 34.14810699912278], [-118.41811300000015, 34.14790599912288], [-118.41821300000014, 34.154005999122596], [-118.413813, 34.154005999122596], [-118.413808, 34.15667699912267], [-118.40830000000012, 34.1566719991227]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Studio City", "metadata": {"sqmi": 6.30792524254, "type": "segment-of-a-city", "name": "Studio City", "slug": "studio-city"}, "cases": 40.0, "population": 0.2244039270687237, "external_id": "studio-city", "slug": "studio-city-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/studio-city-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.286307, 34.29207499912098], [-118.28741, 34.29150099912099], [-118.29011, 34.28920099912104], [-118.29161000000013, 34.28560099912108], [-118.29321000000013, 34.283200999121256], [-118.29581, 34.281000999121105], [-118.29731, 34.27830099912115], [-118.299011, 34.27670099912115], [-118.299511, 34.27540099912129], [-118.299811, 34.275200999121125], [-118.3011110000001, 34.27490099912131], [-118.302411, 34.27420099912127], [-118.303411, 34.27390099912123], [-118.30321100000013, 34.27330099912117], [-118.302311, 34.2728009991212], [-118.302911, 34.272501999121204], [-118.30261100000016, 34.26610199912149], [-118.302711, 34.25240199912149], [-118.304111, 34.25240199912149], [-118.306111, 34.252101999121464], [-118.305511, 34.251001999121506], [-118.30641100000017, 34.2514019991215], [-118.30641100000017, 34.24970199912165], [-118.305311, 34.24850199912149], [-118.306011, 34.24860199912146], [-118.30691100000011, 34.2482029991216], [-118.312311, 34.248901999121486], [-118.31671100000011, 34.24860199912146], [-118.324811, 34.2501019991216], [-118.325206, 34.251490999121465], [-118.3261590000001, 34.253384999121465], [-118.329352, 34.25807399912148], [-118.33431200000015, 34.264201999121376], [-118.333512, 34.264501999121336], [-118.33301200000011, 34.265101999121256], [-118.335106, 34.26646399912126], [-118.335876, 34.26715499912135], [-118.336437, 34.26817399912149], [-118.33775900000015, 34.271464999121264], [-118.33650200000014, 34.271100999121245], [-118.33455800000011, 34.2716349991212], [-118.331248, 34.2719699991212], [-118.330812, 34.2723019991213], [-118.329012, 34.272801999121334], [-118.32771200000012, 34.27380099912115], [-118.32661200000014, 34.27390099912123], [-118.3234110000001, 34.27290099912125], [-118.318474, 34.27309799912121], [-118.315411, 34.274300999121266], [-118.31708100000014, 34.27406799912126], [-118.316998, 34.27446299912122], [-118.316411, 34.27530099912117], [-118.31658100000013, 34.27556199912125], [-118.31778200000012, 34.27529599912127], [-118.318729, 34.275660999121214], [-118.319329, 34.27828099912124], [-118.319411, 34.278900999121205], [-118.31901100000012, 34.27930099912126], [-118.317311, 34.27950099912119], [-118.31701100000012, 34.28030099912117], [-118.316111, 34.280600999121205], [-118.315919, 34.28110499912111], [-118.317455, 34.28372899912106], [-118.31714360651196, 34.28608209854985], [-118.29947800000011, 34.28609599912122], [-118.299395, 34.29325899912108], [-118.290608, 34.29322799912129], [-118.29062000000012, 34.29271899912114], [-118.286286, 34.2926489991209], [-118.286307, 34.29207499912098]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Sunland", "metadata": {"sqmi": 4.00411735528, "type": "segment-of-a-city", "name": "Sunland", "slug": "sunland"}, "cases": 99.0, "population": 0.2040816326530612, "external_id": "sunland", "slug": "sunland-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/sunland-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.342812, 34.207403999122086], [-118.34131942576883, 34.20652653043827], [-118.3629870000001, 34.20681799912205], [-118.362171, 34.20141899912221], [-118.362372, 34.20119699912223], [-118.394278, 34.20110899912203], [-118.39471200000015, 34.20093299912205], [-118.413926, 34.20469399912215], [-118.413927, 34.20449499912204], [-118.42731500000016, 34.20700399912202], [-118.4220150000001, 34.22410299912182], [-118.420515, 34.225602999121904], [-118.407114, 34.23520299912159], [-118.403914, 34.23770299912169], [-118.398714, 34.24410299912155], [-118.39001400000011, 34.2523019991214], [-118.38381400000011, 34.246602999121585], [-118.366614, 34.23003099912181], [-118.361613, 34.2250029991218], [-118.35901200000015, 34.22210599912174], [-118.358619, 34.22186299912187], [-118.357687, 34.22167799912188], [-118.35461200000017, 34.21840399912194], [-118.351212, 34.215703999122056], [-118.346974, 34.211814999121984], [-118.342812, 34.207403999122086]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Sun Valley", "metadata": {"sqmi": 9.42392419761, "type": "segment-of-a-city", "name": "Sun Valley", "slug": "sun-valley"}, "cases": 135.0, "population": 0.5248221436068887, "external_id": "sun-valley", "slug": "sun-valley-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/sun-valley-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.94288549712603, 34.587222455455056], [-117.94293913422159, 34.58318758759581], [-117.94280623803996, 34.5831899159376], [-117.94281954663191, 34.582824544862376], [-117.94295244222839, 34.58282221740767], [-117.94312679093368, 34.5780521824562], [-117.94299282239419, 34.57805398112628], [-117.94305867764295, 34.57621680773874], [-117.93395544857538, 34.57632157955379], [-117.91644371892811, 34.57611534831157], [-117.9162753534237, 34.558105258292585], [-117.91817574662934, 34.557965314537164], [-117.91817500650063, 34.55810952028969], [-117.92296413276286, 34.55809929620305], [-117.92317805176253, 34.55782264418524], [-117.9231494330535, 34.55644464854932], [-117.9242470903966, 34.55644415601838], [-117.92425265863356, 34.556712071583355], [-117.93193453338232, 34.55670293397731], [-117.93194160895118, 34.55702464658875], [-117.93380298204336, 34.55702309888124], [-117.93435933286653, 34.556775464431134], [-117.93545861809412, 34.556909680344894], [-117.93881211191355, 34.5569087228953], [-117.93875449509805, 34.553773262586525], [-117.93840276983565, 34.5537715471362], [-117.9383450506126, 34.55049759715506], [-117.93874341171623, 34.54994364376247], [-117.9384581481104, 34.549803224659016], [-117.93831208363703, 34.549406776913244], [-117.93826879832281, 34.543025509589704], [-117.94645392276608, 34.543027909446444], [-117.94887170545987, 34.54330062829034], [-117.94920893056201, 34.543577672646656], [-117.95150240968196, 34.54383907164991], [-117.95359464593317, 34.543873261574596], [-117.95800510239246, 34.543240819278786], [-117.95826656880179, 34.5428011203135], [-117.95827236826389, 34.52831400859094], [-117.99679768207069, 34.52817092930965], [-117.99692128784555, 34.53546059085963], [-117.99473901109047, 34.535471839191096], [-117.99474719230197, 34.53737107963609], [-117.99256403614956, 34.53738154489764], [-117.99256697947776, 34.53788437015701], [-117.99125710759817, 34.53829151034286], [-117.99049706097925, 34.53945301506767], [-117.98951010909086, 34.540479246514074], [-117.98856639956497, 34.54103298502218], [-117.98806712696519, 34.541036047236986], [-117.98814906910494, 34.54466548753067], [-117.98593427197572, 34.54467577556491], [-117.9859207479447, 34.546490491893366], [-117.9837108168266, 34.54650073995974], [-117.98369910384757, 34.54831548389702], [-117.9814866321343, 34.54832577320131], [-117.98145150336615, 34.55395534202726], [-117.97924462834742, 34.553964382440405], [-117.97922368161878, 34.55777937133976], [-117.97827549978615, 34.557783217236214], [-117.97830985470026, 34.561428426812654], [-117.97505232420936, 34.561434479137894], [-117.97508119363488, 34.565073559518815], [-117.97393691911883, 34.565073374455515], [-117.97409586406702, 34.57220303335683], [-117.973547220202, 34.58711414907378], [-117.94288549712603, 34.587222455455056]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Sun Village", "metadata": {"sqmi": 10.2290764366, "type": "unincorporated-area", "name": "Sun Village", "slug": "sun-village"}, "cases": 6.0, "population": 0.060362173038229376, "external_id": "sun-village", "slug": "sun-village-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/sun-village-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.4362838207196, 34.32989899914581], [-118.41998299985605, 34.32987899915675], [-118.41998499976465, 34.329163999008024], [-118.41946399976666, 34.32916299908672], [-118.41946199993683, 34.32987999902711], [-118.4190099998884, 34.329880999283844], [-118.4186370000701, 34.32943299907969], [-118.4182129998899, 34.329489998986915], [-118.41945600026196, 34.32792599930385], [-118.42074100005104, 34.32772299928926], [-118.42075100009882, 34.32557299898474], [-118.4190509997857, 34.32565599912163], [-118.41589400023113, 34.32448699925774], [-118.41434999993285, 34.32444099931936], [-118.41434899990155, 34.32469199897632], [-118.41359099982436, 34.32468999910854], [-118.41359099980166, 34.32510299920556], [-118.41220700007383, 34.325903999037564], [-118.41358500010786, 34.32740799897797], [-118.41357900011018, 34.32988099930787], [-118.405202, 34.329810999120674], [-118.404912, 34.32207699912088], [-118.40272, 34.32129899912073], [-118.400663, 34.3195419991207], [-118.39626, 34.31985999912074], [-118.39627800000014, 34.318069999120716], [-118.396524, 34.318070999120856], [-118.39653, 34.31741899912073], [-118.397279, 34.31711499912065], [-118.39753800000011, 34.31828999912089], [-118.39866, 34.31810999912079], [-118.399716, 34.317593999120916], [-118.40076, 34.31757699912088], [-118.40090400000014, 34.31002699912082], [-118.401079, 34.30972199912073], [-118.401836, 34.309876999120846], [-118.402446, 34.309607999120914], [-118.402479, 34.309428999120875], [-118.403016, 34.309388999120976], [-118.403324, 34.310023999120936], [-118.403881, 34.310049999120935], [-118.404114, 34.309037999120946], [-118.403566, 34.308969999120784], [-118.403751, 34.30791699912087], [-118.405469, 34.30791199912088], [-118.4056, 34.300725999120964], [-118.401052, 34.30066999912094], [-118.401205, 34.297064999120856], [-118.40346, 34.29710599912108], [-118.403508, 34.29351299912106], [-118.409072, 34.29365899912113], [-118.40896, 34.291807999120984], [-118.410217, 34.29184299912106], [-118.41034800000016, 34.29196799912106], [-118.41019269089901, 34.290837665060394], [-118.41042300000012, 34.29093699912096], [-118.411615, 34.290000999120984], [-118.41582319720133, 34.29381818342135], [-118.415667, 34.29393199912115], [-118.41843700000011, 34.29654099912097], [-118.42140100000015, 34.29437499912103], [-118.429321, 34.30183699912096], [-118.4325690000001, 34.30468699912098], [-118.442473, 34.295855999121066], [-118.443473, 34.29515599912099], [-118.4435720000001, 34.29487499912094], [-118.444697, 34.29387099912113], [-118.44478100000015, 34.293802999120935], [-118.44550000000012, 34.294405999121096], [-118.44926, 34.29106599912113], [-118.45000200000013, 34.29040399912106], [-118.449441, 34.28969899912104], [-118.45631000000012, 34.28466999912117], [-118.455491, 34.28441599912126], [-118.45232934689139, 34.28143687637829], [-118.45441600000014, 34.27990099912114], [-118.4552160000001, 34.27950099912121], [-118.456964, 34.282206999121144], [-118.457826, 34.283147999121226], [-118.462966, 34.2859019991212], [-118.46420300000015, 34.28694999912104], [-118.46554200000016, 34.288344999121065], [-118.466989, 34.29067399912097], [-118.46819000000016, 34.29214099912104], [-118.472817, 34.295800999121], [-118.48141700000012, 34.30479999912089], [-118.49015600000016, 34.31499299912082], [-118.4923500000001, 34.31552199912069], [-118.49467600000014, 34.31867699912072], [-118.4974160000001, 34.31978799912066], [-118.503347, 34.323789999120535], [-118.5036960000001, 34.32429999912059], [-118.50375100000015, 34.32471399912053], [-118.50333000000013, 34.325946999120646], [-118.50343600000012, 34.32671799912063], [-118.50637, 34.33303499912057], [-118.50784013232494, 34.33426630318251], [-118.50380937790983, 34.3373067180371], [-118.49292925136501, 34.330770499236905], [-118.48440213799347, 34.330281885533125], [-118.4362838207196, 34.32989899914581]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Sylmar", "metadata": {"sqmi": 12.4563875325, "type": "segment-of-a-city", "name": "Sylmar", "slug": "sylmar"}, "cases": 337.0, "population": 0.823981026430964, "external_id": "sylmar", "slug": "sylmar-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/sylmar-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.558518, 34.186503999122344], [-118.527317, 34.186492999122315], [-118.527317, 34.15850499912255], [-118.528717, 34.15450499912269], [-118.5258970000001, 34.15445599912262], [-118.525504, 34.15416999912268], [-118.525207, 34.153526999122704], [-118.52571500000012, 34.15230599912272], [-118.52574400000012, 34.15113999912266], [-118.526484, 34.1505059991227], [-118.52654500000014, 34.148284999122794], [-118.526717, 34.147892999122654], [-118.527117, 34.147704999122745], [-118.52738100000015, 34.14831299912267], [-118.527745, 34.14859299912272], [-118.527559, 34.149349999122734], [-118.527968, 34.1498259991227], [-118.52974, 34.14992799912278], [-118.530286, 34.14980499912269], [-118.53045600000011, 34.149606999122724], [-118.530477, 34.148912999122736], [-118.53022900000013, 34.14858599912274], [-118.53045400000013, 34.14825199912279], [-118.53030600000011, 34.14540999912273], [-118.530017, 34.14480599912281], [-118.52815300000012, 34.14415199912272], [-118.528302, 34.143476999122775], [-118.52961400000015, 34.14345399912275], [-118.528283, 34.14201399912289], [-118.527879, 34.14217999912288], [-118.527131, 34.14320899912283], [-118.5271510000001, 34.14415599912281], [-118.526317, 34.14420599912277], [-118.526325, 34.14478199912276], [-118.526148, 34.14515799912282], [-118.52581800000014, 34.145491999122775], [-118.52413600000011, 34.146400999122775], [-118.523808, 34.14730799912282], [-118.523512, 34.14756899912277], [-118.522825, 34.14767299912274], [-118.52145900000014, 34.14699899912286], [-118.52126, 34.14544199912285], [-118.52135700000017, 34.14316999912286], [-118.525955, 34.13381899912295], [-118.526381, 34.13256099912293], [-118.52711600000013, 34.12910599912314], [-118.52978000000012, 34.12947799912296], [-118.531636, 34.12896599912297], [-118.53243600000013, 34.12894999912295], [-118.534196, 34.12824599912297], [-118.53482, 34.12834199912302], [-118.536277, 34.12912599912299], [-118.53686900000012, 34.129189999122886], [-118.538469, 34.127973999123], [-118.53987700000012, 34.128293999123], [-118.54301700000013, 34.127105999123145], [-118.54931700000012, 34.1264059991231], [-118.554717, 34.12700599912304], [-118.55351700000011, 34.12860599912305], [-118.55551700000011, 34.128205999123004], [-118.55641700000012, 34.12660599912295], [-118.55731700000013, 34.126805999122936], [-118.559917, 34.12990599912287], [-118.561017, 34.130505999122995], [-118.563517, 34.13090599912291], [-118.5652170000001, 34.13440599912281], [-118.56631700000014, 34.13770599912282], [-118.567918, 34.13790599912288], [-118.5675180000001, 34.14390499912275], [-118.56791800000015, 34.14500499912283], [-118.567299, 34.14820799912272], [-118.567299, 34.14953899912274], [-118.56682300000013, 34.15071099912267], [-118.566836, 34.152329999122685], [-118.566024, 34.15358699912274], [-118.565033, 34.155695999122656], [-118.563165, 34.15714399912263], [-118.56314, 34.15791099912272], [-118.56369500000018, 34.1587729991226], [-118.563197, 34.159702999122544], [-118.56306900000014, 34.16086799912264], [-118.562459, 34.1613009991226], [-118.562281, 34.16181899912252], [-118.5622800000001, 34.162910999122566], [-118.56375500000016, 34.16357799912253], [-118.56591800000015, 34.16360499912251], [-118.5659220000001, 34.17045999912247], [-118.56313100000013, 34.170536999122454], [-118.562318, 34.17040499912242], [-118.5623180000001, 34.18650399912217], [-118.558518, 34.186503999122344]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Tarzana", "metadata": {"sqmi": 8.79090161634, "type": "segment-of-a-city", "name": "Tarzana", "slug": "tarzana"}, "cases": 77.0, "population": 0.30876573903280136, "external_id": "tarzana", "slug": "tarzana-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/tarzana-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.063067, 34.117565999123336], [-118.0630370000002, 34.11741399912313], [-118.05657600000019, 34.11833699912317], [-118.055682, 34.113860999123276], [-118.054696, 34.11399299912325], [-118.05463100000019, 34.11363599912327], [-118.054209, 34.11369399912324], [-118.054027, 34.112801999123306], [-118.0541780000001, 34.112780999123224], [-118.054067, 34.11223299912332], [-118.05417500000014, 34.11221799912326], [-118.054012, 34.11141299912331], [-118.053701, 34.111456999123284], [-118.053293, 34.1095679991232], [-118.05259700000013, 34.10966399912342], [-118.052472, 34.109032999123315], [-118.05315800000017, 34.10894199912329], [-118.053044, 34.1084059991232], [-118.052843, 34.10843299912339], [-118.05273500000013, 34.10794299912328], [-118.05367100000011, 34.10767999912329], [-118.053496, 34.10678799912326], [-118.052778, 34.1068879991233], [-118.052244, 34.10420199912337], [-118.03893800000017, 34.10615199912335], [-118.03874100000013, 34.10517899912334], [-118.037972, 34.10528999912339], [-118.03807500000012, 34.10577899912332], [-118.036213, 34.10604799912332], [-118.03621900000012, 34.10660599912335], [-118.034824, 34.106804999123256], [-118.0346990000001, 34.10620699912329], [-118.0337320000001, 34.1063449991234], [-118.033622, 34.105813999123384], [-118.032748, 34.10593799912336], [-118.03282700000015, 34.10632999912328], [-118.03269100000013, 34.10615799912335], [-118.031018, 34.10640099912339], [-118.0312040000001, 34.107260999123326], [-118.030813, 34.107315999123195], [-118.03022000000013, 34.105557999123334], [-118.0297560000002, 34.103368999123326], [-118.02854970765776, 34.10352501459612], [-118.02842053188208, 34.10304215332902], [-118.02963451391138, 34.10285753229248], [-118.02854502972912, 34.097089231202155], [-118.03322100000021, 34.096399999123356], [-118.03290100000017, 34.09407699912349], [-118.03344300000018, 34.094122999123485], [-118.03428800000016, 34.09389699912351], [-118.03491400000021, 34.09399299912354], [-118.0347680000002, 34.093597999123524], [-118.03624900000013, 34.0933409991235], [-118.03621900000012, 34.09254899912353], [-118.0386440000002, 34.092189999123505], [-118.03870400000014, 34.09248599912351], [-118.04001400000023, 34.09231999912351], [-118.03996000000016, 34.0920009991235], [-118.04221000000021, 34.09166199912352], [-118.042423, 34.092536999123475], [-118.04297300000017, 34.0924239991234], [-118.04278, 34.09157599912347], [-118.05170600000022, 34.090336999123615], [-118.05184200000028, 34.09101699912355], [-118.05210500000015, 34.09098199912354], [-118.051951, 34.090302999123544], [-118.05679100000023, 34.08955599912358], [-118.05657600000012, 34.089155999123626], [-118.05581500000011, 34.089302999123646], [-118.055562, 34.08963699912356], [-118.05502500000017, 34.08945499912353], [-118.05594200000023, 34.08721399912358], [-118.056189, 34.08707099912355], [-118.0561780000002, 34.0866719991236], [-118.05665700000013, 34.085358999123706], [-118.05836100000018, 34.08619499912359], [-118.05864600000011, 34.08571699912358], [-118.0733220000002, 34.09055999912355], [-118.07344500000016, 34.097096999123494], [-118.07503900000025, 34.09800999912351], [-118.07534200000015, 34.09842699912341], [-118.0756890000003, 34.09842199912363], [-118.075773, 34.10022999912339], [-118.07629000000018, 34.103168999123426], [-118.0772110000001, 34.1031539991234], [-118.07722000000015, 34.10495999912331], [-118.07781900000018, 34.105596999123414], [-118.0812730000002, 34.10560399912331], [-118.08137799058365, 34.11351300136584], [-118.08046398588424, 34.11351900412583], [-118.0804749858574, 34.11377600230534], [-118.07988598590045, 34.113906002599386], [-118.07992598536968, 34.11403300013007], [-118.07946000004755, 34.11404000227076], [-118.07937898587453, 34.11352400080333], [-118.0735869858706, 34.11354900416235], [-118.07312698595761, 34.11692000304783], [-118.07387798584752, 34.11675700238245], [-118.07415998536727, 34.11744000079973], [-118.07392098595625, 34.117458003627576], [-118.07412598725415, 34.11785700457206], [-118.0728779858922, 34.11866400204578], [-118.06832398592017, 34.11956300276049], [-118.06804697924493, 34.120399002448224], [-118.06374900000021, 34.1209959991231], [-118.063067, 34.117565999123336]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Temple City", "metadata": {"sqmi": 3.9799922816, "type": "standalone-city", "name": "Temple City", "slug": "temple-city"}, "cases": 51.0, "population": 0.3645461043602573, "external_id": "temple-city", "slug": "temple-city-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/temple-city-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.35715792241231, 34.16480619022097], [-118.35715100000014, 34.16128699912271], [-118.353103, 34.16128899912271], [-118.345949, 34.14457299912282], [-118.34566500000014, 34.142366999122856], [-118.347522, 34.14217999912288], [-118.35416000000014, 34.1432109991228], [-118.35796700000013, 34.14334799912287], [-118.36133973253521, 34.14266944146496], [-118.365011, 34.14880599912272], [-118.366612, 34.151205999122666], [-118.370237, 34.15761299912263], [-118.361601, 34.15761299912263], [-118.361612, 34.16480599912259], [-118.35715792241231, 34.16480619022097]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Toluca Lake", "metadata": {"sqmi": 1.21722776833, "type": "segment-of-a-city", "name": "Toluca Lake", "slug": "toluca-lake"}, "cases": 13.0, "population": 0.10562023054123248, "external_id": "toluca-lake", "slug": "toluca-lake-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/toluca-lake-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.60023833051604, 34.14366473498124], [-118.56475200000023, 34.130167999123096], [-118.59920399648777, 34.07433699810346], [-118.57039478100278, 34.069346496438435], [-118.57010700000036, 34.047116999124114], [-118.56707066298713, 34.041327315655536], [-118.56945410872031, 34.041602655318925], [-118.5717257792163, 34.04156023747734], [-118.57360435688392, 34.04090288509785], [-118.57547098330424, 34.039613975176195], [-118.57600515265837, 34.039513173038344], [-118.57827267351553, 34.03968892465534], [-118.57971169173022, 34.03952501344745], [-118.58060409030715, 34.03924870152832], [-118.5813313794412, 34.03850035188154], [-118.58218221445298, 34.03830361380712], [-118.58282209210321, 34.037853767530535], [-118.58442457361313, 34.037837306390045], [-118.58773400000024, 34.04557999912414], [-118.59587006070798, 34.045545692816766], [-118.59567163868823, 34.04559803151119], [-118.60201209870043, 34.054024585652726], [-118.60276946564643, 34.05455431527332], [-118.60331117068169, 34.05471452455955], [-118.60415804361593, 34.054230062818604], [-118.6048218142155, 34.05405840040738], [-118.60681315719592, 34.05495863264803], [-118.60706494487059, 34.05543545679007], [-118.60936913968361, 34.05806370442283], [-118.6098498053315, 34.05813236398256], [-118.61230652425154, 34.05775088513277], [-118.61341281487948, 34.05775469127182], [-118.61390874812719, 34.05817429504756], [-118.6156101497249, 34.05833831062431], [-118.61590008682566, 34.05890287062284], [-118.61621290535794, 34.05914700347119], [-118.61679275666508, 34.05926906604175], [-118.61696824468787, 34.0595856774226], [-118.61686906620812, 34.0598832177297], [-118.61754811843137, 34.06070716878385], [-118.61750236227648, 34.06167226556288], [-118.61681572461389, 34.062778507669684], [-118.61665553611729, 34.064247134177506], [-118.61645717359673, 34.06455611898255], [-118.61714386222472, 34.065731014081614], [-118.6175406415846, 34.06754295105894], [-118.61802895705455, 34.068523302345234], [-118.61766274987798, 34.069072609036645], [-118.61780010917708, 34.07026276632473], [-118.61858597268193, 34.071006610087935], [-118.61895982603612, 34.07112486093532], [-118.61966937524133, 34.07103712039528], [-118.62134026995768, 34.07167033412169], [-118.62156918105188, 34.07272316559453], [-118.62192015477288, 34.07327246736539], [-118.62320958077852, 34.074428285935895], [-118.62388098942748, 34.07464189955389], [-118.62674971154482, 34.07443589221415], [-118.62752030544546, 34.07468383644721], [-118.62855792864727, 34.07466094247816], [-118.62880207849116, 34.07479445195646], [-118.62890126977922, 34.07505766024675], [-118.62873343529523, 34.075812954705206], [-118.6289699595722, 34.076148638254324], [-118.62906152943776, 34.0767971220853], [-118.62977109216978, 34.07725105675113], [-118.63001525224374, 34.07788046636002], [-118.63038147749224, 34.078097896485986], [-118.63072481241595, 34.07824666428433], [-118.63254827357694, 34.077750753549395], [-118.63282294305723, 34.07793003796994], [-118.63324259228496, 34.07890276182482], [-118.63337233700504, 34.08077573720824], [-118.63344863686878, 34.080962652306425], [-118.63456257068711, 34.081553910958], [-118.63488304834713, 34.08310264169285], [-118.63572231268239, 34.08352987407452], [-118.6362945470571, 34.08423175899757], [-118.63681336388498, 34.084418672762986], [-118.63773654000364, 34.084258452814105], [-118.6383469156412, 34.084597950247854], [-118.63849952330372, 34.08534561324932], [-118.63830117074376, 34.0860589482564], [-118.63740091726791, 34.087794602643704], [-118.63719494063305, 34.088786403434526], [-118.63602768459872, 34.09194872603298], [-118.63814876712672, 34.09446254522686], [-118.63912536379783, 34.09488977678234], [-118.63962129852507, 34.09539330342545], [-118.63980442089924, 34.095942606666135], [-118.64024694914852, 34.09648809393924], [-118.64296310474714, 34.097422660774484], [-118.64391683309516, 34.09876158617443], [-118.64564877241664, 34.099741932899455], [-118.64729677775435, 34.1003904095606], [-118.64830387608195, 34.10001657196739], [-118.64874639431241, 34.100123378770135], [-118.65044784350646, 34.10240069670721], [-118.65047076561636, 34.103854066089006], [-118.65024909205688, 34.1048699588269], [-118.65025727588143, 34.10905353298402], [-118.6515009000933, 34.11009477541991], [-118.65179846448977, 34.110583045068054], [-118.65208843315027, 34.112555200747195], [-118.65109660219858, 34.11326090918519], [-118.65144758303143, 34.114107753300885], [-118.65193593859836, 34.11688097829783], [-118.65149345428064, 34.118292388191385], [-118.65136378612567, 34.11986019652832], [-118.65094418079713, 34.12083674087978], [-118.65020531404731, 34.12153142579457], [-118.6500617613452, 34.1290705368508], [-118.64495519704705, 34.12905448796758], [-118.64483221289659, 34.125322329703714], [-118.61062967278795, 34.12533058044356], [-118.61060906154145, 34.12902239431138], [-118.60624564505909, 34.129001104152685], [-118.60620347078773, 34.139658624116656], [-118.61277600000032, 34.13977299912293], [-118.61280500000024, 34.14064499912296], [-118.61363300000026, 34.141381999122906], [-118.61509400000023, 34.14147899912295], [-118.61531000000029, 34.142832999122966], [-118.61424080146264, 34.143656412310726], [-118.61139440905704, 34.14365265032882], [-118.61102000000025, 34.14524799912292], [-118.6108020000003, 34.14744099912297], [-118.61014600000028, 34.14742999912279], [-118.60023833051604, 34.14366473498124]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Topanga", "metadata": {"sqmi": 19.2379682469, "type": "unincorporated-area", "name": "Topanga", "slug": "topanga"}, "cases": null, "population": null, "external_id": "topanga", "slug": "topanga-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/topanga-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.313269, 33.88376799912613], [-118.31311900000017, 33.87301499912619], [-118.30912100000019, 33.87305299912622], [-118.30891700000018, 33.87133999912624], [-118.30895300000012, 33.86569099912635], [-118.30885000000029, 33.86569099912633], [-118.309148, 33.865607999126354], [-118.30915000000023, 33.85834799912637], [-118.3092790000001, 33.85834799912637], [-118.30941200000025, 33.85743899912639], [-118.30921600000016, 33.83810999912672], [-118.30894400000018, 33.830112999126676], [-118.30880400000014, 33.812385999126946], [-118.30863900000013, 33.81086599912693], [-118.30812700000018, 33.809044999127046], [-118.30929600000023, 33.80880499912696], [-118.30882900000022, 33.80679499912706], [-118.30879000000013, 33.80221699912707], [-118.31177100000016, 33.80213199912711], [-118.311705, 33.807515999127055], [-118.31991600000016, 33.807660999127016], [-118.31991900000014, 33.80692199912707], [-118.32794100000015, 33.8068489991271], [-118.32792400000017, 33.80341499912713], [-118.32598300000012, 33.80350299912711], [-118.32612100000019, 33.80108599912704], [-118.328175, 33.80097199912706], [-118.32832100000013, 33.79823999912714], [-118.32807600000021, 33.79678799912713], [-118.32801100000013, 33.79388799912723], [-118.32950500000015, 33.792341999127224], [-118.3294980000001, 33.79201399912721], [-118.32909500000014, 33.79095299912726], [-118.32775, 33.79100099912724], [-118.32819000000012, 33.790302999127185], [-118.32680500000019, 33.79031599912721], [-118.32676100000023, 33.78954599912722], [-118.32622900000025, 33.78954599912722], [-118.32616600000019, 33.7889099991273], [-118.32785100000015, 33.788933999127316], [-118.32780900000024, 33.78923899912725], [-118.328721, 33.78912499912725], [-118.328726, 33.78766299912727], [-118.32890400000015, 33.78719499912737], [-118.32790300000016, 33.787286999127254], [-118.32781700000021, 33.78612799912734], [-118.3280050000002, 33.78611599912734], [-118.3280050000002, 33.7852159991272], [-118.32990500000011, 33.7852159991273], [-118.3300050000002, 33.78041699912738], [-118.33272, 33.78021699912735], [-118.33415000000025, 33.780799999127375], [-118.34048000000026, 33.78613299912744], [-118.340491, 33.78663499912738], [-118.34192200000022, 33.78765099912729], [-118.34565700000022, 33.790951999127365], [-118.35303800000018, 33.79655799912716], [-118.35537200000014, 33.79869299912713], [-118.36104900000018, 33.80339899912706], [-118.36228900000015, 33.8040769991272], [-118.3664750000002, 33.80412599912705], [-118.3675650000002, 33.80399799912696], [-118.37441700000014, 33.80421299912709], [-118.37813800000018, 33.8041179991271], [-118.3940910000001, 33.80428599912713], [-118.3946450000002, 33.803516999127176], [-118.39529476230058, 33.80342630980687], [-118.39498902010992, 33.8035359819217], [-118.39463799229117, 33.80397797603228], [-118.39362699850136, 33.80604200066654], [-118.39327602329453, 33.80716900409966], [-118.39159269545188, 33.81532606283313], [-118.39041600000012, 33.81543699912692], [-118.38903900000025, 33.814856999126974], [-118.38862500000012, 33.8153219991269], [-118.38844100000017, 33.81506299912698], [-118.388117, 33.815257999126906], [-118.3879070000002, 33.81461499912696], [-118.38756100000026, 33.814860999126935], [-118.38642200000015, 33.8150709991269], [-118.38554200000019, 33.816083999126896], [-118.38602600000021, 33.81649299912688], [-118.3849390000003, 33.81753399912697], [-118.38544400000018, 33.818035999126906], [-118.38538000000018, 33.81892099912691], [-118.38458500000014, 33.81887899912694], [-118.38442900000011, 33.81901799912686], [-118.38300500000015, 33.81837999912697], [-118.380452, 33.81675899912696], [-118.37961400000017, 33.81638599912691], [-118.37449200000026, 33.81558199912702], [-118.37434700000011, 33.8163589991269], [-118.37450100000017, 33.81961199912684], [-118.37450700000011, 33.82731499912681], [-118.37445100000019, 33.827557999126846], [-118.37269800000018, 33.82756499912682], [-118.37431500000014, 33.83319499912669], [-118.37493200000021, 33.83610899912668], [-118.37477100000024, 33.83723899912662], [-118.37540600000025, 33.83891399912665], [-118.375439, 33.839873999126624], [-118.37665200000032, 33.84589299912657], [-118.37821900000013, 33.854992999126395], [-118.37537300000018, 33.85589899912636], [-118.3753980000002, 33.85825599912639], [-118.35885400000024, 33.858287999126354], [-118.35349500000028, 33.858129999126334], [-118.353065, 33.8587859991264], [-118.35755800000017, 33.86216099912633], [-118.3581440000002, 33.862837999126384], [-118.35871400000019, 33.864012999126345], [-118.35883200000022, 33.86554499912623], [-118.35246100000016, 33.86552599912633], [-118.35234800000018, 33.87442799912626], [-118.34986, 33.87537599912625], [-118.3264919904622, 33.88291600056766], [-118.31781800000032, 33.88552299912604], [-118.31347600000032, 33.88706099912601], [-118.313269, 33.88376799912613]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Torrance", "metadata": {"sqmi": 20.5832400164, "type": "standalone-city", "name": "Torrance", "slug": "torrance"}, "cases": 270.0, "population": 1.492702344095533, "external_id": "torrance", "slug": "torrance-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/torrance-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.39986218182021, 34.29330168093823], [-118.39987534021171, 34.29327563829819], [-118.399874, 34.293280999121194], [-118.39986218182021, 34.29330168093823]]], [[[-118.25562510291037, 34.50167983601259], [-118.25554467213598, 34.49588389204682], [-118.25991860605343, 34.49590310105854], [-118.25773760650775, 34.48183679264869], [-118.24597834271935, 34.48170943206675], [-118.24607830998299, 34.47811289528655], [-118.24503150669833, 34.47810800546601], [-118.24533641525986, 34.46732248905014], [-118.23702088651507, 34.46740281844628], [-118.23702710197351, 34.46339814249998], [-118.21966646863281, 34.46266753820351], [-118.2196822619058, 34.465710534571], [-118.20799261212717, 34.46605746521052], [-118.20789867089195, 34.46403864877573], [-118.20800446863116, 34.463656896194394], [-118.2078463648407, 34.46286485199525], [-118.20660896333821, 34.462886925156575], [-118.20630231208393, 34.45613571872994], [-118.19810239462436, 34.45584428851268], [-118.19756307757581, 34.45630908760043], [-118.19753094645864, 34.45567158380637], [-118.19726145537918, 34.455802353469466], [-118.19752455957536, 34.45552458355188], [-118.19719472198943, 34.45580246193274], [-118.1847435105529, 34.45570100985002], [-118.18470858752102, 34.45195843862283], [-118.14960678145502, 34.45200987113323], [-118.1496201698695, 34.46643908081293], [-118.1404854110729, 34.466422355307934], [-118.13164148693322, 34.466174605450966], [-118.11872970749987, 34.46616923814347], [-118.11866052023461, 34.47642461898611], [-118.1178503709481, 34.476425875279766], [-118.11823562296836, 34.4770468157905], [-118.11862411128782, 34.47704643673872], [-118.11862856604758, 34.480677896362835], [-118.11786602693842, 34.480711990993775], [-118.11838612402333, 34.478245307516296], [-118.1183298297883, 34.47743680809908], [-118.11794788843623, 34.47658919946509], [-118.11651937850999, 34.4749054939267], [-118.11565520479101, 34.47344878391756], [-118.11111164797006, 34.455682262644764], [-118.11025934740091, 34.45360209851779], [-118.10834518396388, 34.45126665850144], [-118.09247981210001, 34.43840154308602], [-118.08998245773273, 34.436204630770135], [-118.08968563395416, 34.43555132155726], [-118.08971956608714, 34.43489573161883], [-118.09162694841982, 34.430798951104556], [-118.09173201811481, 34.429786426233676], [-118.0913705522311, 34.42864241702248], [-118.08924685215595, 34.42502346329009], [-118.0891411610652, 34.423959803138445], [-118.08932307393053, 34.42228181730144], [-118.08920615923056, 34.42186820142752], [-118.08883027513195, 34.42134245126087], [-118.08822517332898, 34.4208770153552], [-118.08582333959784, 34.42002690418971], [-118.08506723099848, 34.41910902875265], [-118.08478173615985, 34.41860049107133], [-118.08470517161278, 34.41791350646616], [-118.08491953331468, 34.41725858809053], [-118.08582852804209, 34.41615839051276], [-118.08588612402343, 34.41570014526785], [-118.0857069158674, 34.41517878065911], [-118.08502622471246, 34.41462759615451], [-118.08295597132066, 34.41407390066697], [-118.08190217130651, 34.41321545894575], [-118.08054327950391, 34.41003332611371], [-118.07969030547603, 34.40900854650804], [-118.07937055223108, 34.407215144295556], [-118.07810891274983, 34.40541282708168], [-118.07633426423799, 34.40358610626452], [-118.07459928358783, 34.40328282351454], [-118.07434169631996, 34.40265998885327], [-118.07437630262949, 34.40144117533204], [-118.07410606789064, 34.40101845152], [-118.0733433551472, 34.40033156081001], [-118.07095548023099, 34.39921451751962], [-118.07062338043623, 34.39874649122676], [-118.07077281720436, 34.398188398680844], [-118.07121254077994, 34.397919699326145], [-118.0730089447611, 34.39797703223432], [-118.07411515879991, 34.39751791035644], [-118.07464513023808, 34.396544405650424], [-118.07479428083307, 34.39572932632163], [-118.07562709456805, 34.39508717115804], [-118.07588773493691, 34.394269960603246], [-118.07739782495841, 34.392466672126126], [-118.07750357535663, 34.391941175332114], [-118.07711319311247, 34.39082386799923], [-118.0776609126637, 34.39017853239058], [-118.07843389380804, 34.389986486281906], [-118.07895161763768, 34.39008886662922], [-118.08218391758061, 34.39259571015741], [-118.08273188165977, 34.392759289961994], [-118.08334973287883, 34.392703574476634], [-118.08389982184077, 34.39232353479443], [-118.08482703675884, 34.39077146408389], [-118.08463536261235, 34.38928655336052], [-118.08495255387297, 34.38894435914714], [-118.08610882032744, 34.388278794283536], [-118.08690322178673, 34.387312399284035], [-118.08811645858746, 34.3863091159601], [-118.08972097777657, 34.38636437790049], [-118.09084374580071, 34.38740243301062], [-118.09138630015875, 34.38749565359815], [-118.0937474135909, 34.38612135521733], [-118.09492682738393, 34.38606619254468], [-118.09637816768672, 34.38535918380704], [-118.0971933364053, 34.38544601176044], [-118.09774374580078, 34.38595697846529], [-118.09831369984158, 34.38615019905301], [-118.09900497596738, 34.38596955633128], [-118.09941389285565, 34.385552445176124], [-118.09943534938537, 34.38502671252471], [-118.09829517476147, 34.38297391328167], [-118.09697836175113, 34.381557298861466], [-118.09657515005064, 34.38060751130057], [-118.09636014260859, 34.37931165949508], [-118.09731600677674, 34.37831212667155], [-118.09747510110806, 34.377359958577145], [-118.0979728481868, 34.37594382668351], [-118.09858364270605, 34.374906300785035], [-118.10156791469707, 34.37443993811336], [-118.10190243389069, 34.37421988968316], [-118.10207703311437, 34.37365439842655], [-118.10200480194644, 34.3733020985188], [-118.10092635412308, 34.372483800822394], [-118.10059444924836, 34.37198449027034], [-118.10052307393035, 34.371096285048495], [-118.10066783622618, 34.37067278210705], [-118.10329063850935, 34.36892424882926], [-118.10621515879978, 34.36582700126591], [-118.107538472878, 34.3622941542485], [-118.10936663876825, 34.3606575469793], [-118.10980357535678, 34.35994064109011], [-118.10963221952393, 34.35803048653472], [-118.10995871305934, 34.35484723987315], [-118.11061925005396, 34.35348620685588], [-118.1108321648394, 34.352418180938635], [-118.11063892069737, 34.35107317173675], [-118.10988632942788, 34.34890629335588], [-118.1099369483889, 34.34844353390261], [-118.11039580120318, 34.34739999912043], [-118.10981437495627, 34.345668594862616], [-118.11006067827364, 34.34497792516787], [-118.11067964314027, 34.3440393993995], [-118.11082307393038, 34.34347272639326], [-118.11063892069737, 34.34207317173688], [-118.11008428070147, 34.34054390043776], [-118.10979346615196, 34.33858226264617], [-118.10947055223112, 34.337633326114585], [-118.10884125574854, 34.33678757253824], [-118.10929016831486, 34.33616225025201], [-118.11065449054477, 34.33546663377653], [-118.11257808112931, 34.335108911870385], [-118.11413306119537, 34.333118397279726], [-118.11596970425435, 34.331999728539], [-118.11628149387451, 34.33156258746932], [-118.11656169738654, 34.330432249617445], [-118.11705428917656, 34.329967455047125], [-118.11848035053413, 34.32949386497784], [-118.12037167925791, 34.32919058390429], [-118.12589063850928, 34.32635152155702], [-118.12622175717507, 34.3259224592722], [-118.12621849001272, 34.32471905836461], [-118.12739073093157, 34.32402353479536], [-118.12773218248773, 34.32291807920114], [-118.12846607025426, 34.322228980593096], [-118.12888113116723, 34.32125580036169], [-118.13074442084044, 34.31993371761111], [-118.13143174093639, 34.31832922802453], [-118.13270208707578, 34.3174474867761], [-118.13496349021571, 34.31765885041692], [-118.1356006936573, 34.317366734708656], [-118.13593446321536, 34.31702568816384], [-118.13604110902385, 34.316659153507786], [-118.13578671029393, 34.3138406291863], [-118.13599003459447, 34.31283107104667], [-118.13620696795758, 34.31255573254728], [-118.13778717203839, 34.31196345732534], [-118.13839926548985, 34.31095006495728], [-118.14007576391545, 34.310270551352126], [-118.14102284156432, 34.30962883186765], [-118.14219394573357, 34.309306914988355], [-118.1430293952951, 34.30847580702946], [-118.14434849118811, 34.30802509680647], [-118.14596338710241, 34.30711182643584], [-118.14752090838041, 34.30714929537506], [-118.14937733620533, 34.307868380871895], [-118.1503173942329, 34.307714245173806], [-118.15163175470423, 34.3080047445083], [-118.15243936604084, 34.307748456070875], [-118.15328873404928, 34.306593944854384], [-118.15353993899316, 34.30607700472715], [-118.15349058478347, 34.305682865317934], [-118.1514800881067, 34.303656231943904], [-118.15017433392663, 34.30193336184561], [-118.14959697698151, 34.300418451521125], [-118.14853447548627, 34.29967232052743], [-118.14838528096706, 34.29911031936107], [-118.14879129822488, 34.29861258622387], [-118.14935570930436, 34.298460086321185], [-118.15136033918355, 34.29882019813926], [-118.15339230936802, 34.300177119173846], [-118.15517560418304, 34.301064038141064], [-118.15641006478018, 34.300987072276754], [-118.15765499079818, 34.301475283454735], [-118.15835839139312, 34.30148307261774], [-118.15959318335955, 34.30049321170228], [-118.16093426423808, 34.299950255613034], [-118.16128662012822, 34.29957971790435], [-118.16124327950388, 34.29873332611505], [-118.16045862238022, 34.2979215190658], [-118.16045705363699, 34.29756542883566], [-118.16072023995844, 34.2971935976839], [-118.16208230951993, 34.29671140839148], [-118.16296665381712, 34.29658670941497], [-118.16435026712136, 34.297021756295806], [-118.16513111866576, 34.296973981708625], [-118.16562970661796, 34.29657443513864], [-118.16580882880793, 34.295675593163466], [-118.16615856868769, 34.29535309683651], [-118.16784440653055, 34.295217856631915], [-118.16967245669107, 34.29402424882991], [-118.17000876660184, 34.29353531474271], [-118.17010474538766, 34.2929136989627], [-118.1696105354091, 34.29198452169203], [-118.16958617238248, 34.29162295104361], [-118.16996782536532, 34.29111607603198], [-118.17058022082425, 34.29102241989692], [-118.17266363636384, 34.29158670941511], [-118.17500384593869, 34.29110125443593], [-118.17546061334514, 34.29076336490319], [-118.17614665345981, 34.28981770860225], [-118.17723426423795, 34.28946843743136], [-118.17838925286377, 34.288558756282036], [-118.17962121846074, 34.28852509680673], [-118.18069073093166, 34.287723534795916], [-118.18081164797024, 34.28680953537392], [-118.18029704611455, 34.28613766546645], [-118.18015979877593, 34.28554311196212], [-118.18049346615192, 34.28474500832335], [-118.18049346615192, 34.284218626283106], [-118.17972709456812, 34.28304919071938], [-118.1793380723815, 34.28270665613967], [-118.17880000000015, 34.282567834281984], [-118.1773882139543, 34.282726579842596], [-118.17708739883327, 34.282507869822204], [-118.17647443601783, 34.28150665613972], [-118.17487228192937, 34.28099744206051], [-118.17236349021563, 34.28055932964342], [-118.17108375316016, 34.280594618052355], [-118.17053409351979, 34.280457563807744], [-118.1694979006017, 34.27912246990236], [-118.16882712657929, 34.27891387509801], [-118.1678274202215, 34.27892258027725], [-118.16721220386235, 34.27861380826053], [-118.16702195023615, 34.27825934009244], [-118.16686489167849, 34.27674160772852], [-118.16633426423806, 34.27604974262956], [-118.16559955465662, 34.27573380569704], [-118.16443913705227, 34.27565032138294], [-118.1636840152501, 34.2754015476203], [-118.1620979006016, 34.274086106266175], [-118.15974182555173, 34.273294148256845], [-118.15720804289417, 34.27141850524725], [-118.15620460893263, 34.27134070827969], [-118.15510622600294, 34.27161416872128], [-118.15443262299563, 34.27154433551612], [-118.15399596237471, 34.271297673944105], [-118.15344870099253, 34.27024545083419], [-118.15446445793103, 34.269856809106535], [-118.15554996343003, 34.26967756339259], [-118.15753870735062, 34.2696504441573], [-118.15904930048414, 34.269828527163426], [-118.15943027513187, 34.269612092435075], [-118.16035239884782, 34.2685077501139], [-118.16186945146576, 34.26758690352627], [-118.16242235450206, 34.267688458385834], [-118.16367043301264, 34.26864363918635], [-118.1651692211004, 34.268965442278905], [-118.16630524497086, 34.269573981708895], [-118.16799046374747, 34.26972073800076], [-118.16877716542872, 34.26938232968881], [-118.17098194688303, 34.26751757744041], [-118.17273155106079, 34.26746721084165], [-118.17365427487293, 34.26703333973926], [-118.17404902990219, 34.26638609563669], [-118.17425198586045, 34.26395993047393], [-118.17448037913901, 34.26370478923921], [-118.17550699984983, 34.26322750066336], [-118.1762678551221, 34.26303228060039], [-118.17686992293363, 34.26309275842028], [-118.17886888133457, 34.26427398170896], [-118.18023870698119, 34.26453960692404], [-118.18159135443462, 34.26503891981886], [-118.18212246015169, 34.26505811993271], [-118.18274716329047, 34.26478425119393], [-118.18292982978829, 34.2645086446872], [-118.18296721172055, 34.2641229935154], [-118.18268689999239, 34.2630514188748], [-118.18279515106245, 34.26181003548097], [-118.183023320097, 34.26104372584576], [-118.18343598330874, 34.26072747814485], [-118.18402895591694, 34.260650345779084], [-118.1844924387518, 34.26080040872976], [-118.1851638145233, 34.26192353479607], [-118.18607881577746, 34.262884819707814], [-118.18644160860732, 34.263128527163616], [-118.18690448197707, 34.263159289963376], [-118.18749790060158, 34.26294116470424], [-118.18815697934522, 34.26240170786644], [-118.18837747266025, 34.26193175382563], [-118.18829374092749, 34.26089229656988], [-118.18865120324467, 34.260424722965766], [-118.18904657267147, 34.2603323675579], [-118.19153175470426, 34.26059565359971], [-118.19230535385668, 34.26028163914393], [-118.1925224876598, 34.2598998529734], [-118.192507320399, 34.258639485245205], [-118.19311425367376, 34.25809232601585], [-118.19401631709646, 34.258195048299505], [-118.19470302301873, 34.25923609217623], [-118.195291957106, 34.259590583905066], [-118.19585902743144, 34.25967747178181], [-118.19665989931121, 34.259481639143964], [-118.19696146132213, 34.25922121758223], [-118.19713216483949, 34.258536362757944], [-118.19694670986038, 34.257714335001324], [-118.19656009791831, 34.25693783014357], [-118.1966228142201, 34.25657293668463], [-118.19685185438144, 34.256342960918396], [-118.19804073271354, 34.25610965354131], [-118.19910606789068, 34.25503609217638], [-118.19918656356928, 34.25476824441761], [-118.1991411655827, 34.254493007611075], [-118.19875080840212, 34.25406381364472], [-118.19798470010473, 34.253829083753665], [-118.19756507618258, 34.25350418988412], [-118.19749580120323, 34.253082247206144], [-118.19765885129615, 34.25238196345164], [-118.1973906385094, 34.25197574941302], [-118.1969499365225, 34.251758890097996], [-118.19574091086494, 34.25186448677588], [-118.19550100000026, 34.2373909991218], [-118.1976330000003, 34.23757599912185], [-118.1978190000002, 34.23728899912173], [-118.21331100000027, 34.23711899912185], [-118.2174030000003, 34.23728299912193], [-118.21752200000029, 34.233798999121795], [-118.22186700000024, 34.233730999121775], [-118.22247000000016, 34.240050999121785], [-118.22245300000012, 34.2409189991218], [-118.22199500000016, 34.243237999121746], [-118.22269798153613, 34.24323100041292], [-118.22266297190454, 34.24350700604524], [-118.22190597190335, 34.24403300604584], [-118.22161097190047, 34.25156000605537], [-118.23880799072303, 34.25220200343299], [-118.23890300000018, 34.26708399912151], [-118.23878900000018, 34.28158899912135], [-118.27353700000018, 34.28166099912124], [-118.27368000000025, 34.27806699912147], [-118.28669400000027, 34.278336999121315], [-118.28628600000026, 34.29264899912101], [-118.29062000000032, 34.29271899912123], [-118.29060800000019, 34.29322799912136], [-118.29939500000026, 34.29325899912116], [-118.2994780000003, 34.286095999121336], [-118.3269140000002, 34.28605999912132], [-118.32683100000027, 34.28243499912123], [-118.35172900000025, 34.282474999121284], [-118.35173500000022, 34.278832999121384], [-118.35470800000027, 34.27884799912132], [-118.3605160000001, 34.27995999912122], [-118.3613140000002, 34.27972799912125], [-118.36427900000018, 34.280764999121324], [-118.36728100000016, 34.2805889991214], [-118.36740700000028, 34.28036899912119], [-118.36810500000021, 34.282051999121364], [-118.36890000000025, 34.283257999121304], [-118.36951500000025, 34.28346199912122], [-118.37017600000024, 34.28189799912112], [-118.37135000000022, 34.282342999121276], [-118.37053100000033, 34.28360799912131], [-118.37047400000012, 34.28450999912121], [-118.36983800000023, 34.28612699912125], [-118.37351700000019, 34.28614599912126], [-118.37368875452431, 34.28589589133254], [-118.37392, 34.28627199912131], [-118.373775, 34.287457999121315], [-118.373891, 34.288753999121305], [-118.371858, 34.28993699912133], [-118.37147, 34.29044999912129], [-118.371005, 34.29180899912122], [-118.370833, 34.29284899912121], [-118.371025, 34.295072999121174], [-118.370913, 34.295776999121166], [-118.370609, 34.29676899912111], [-118.369665, 34.29868799912116], [-118.368897, 34.29868799912112], [-118.366993, 34.29975999912119], [-118.36657699999988, 34.30028799912119], [-118.366113, 34.30159999912119], [-118.365201, 34.30108799912117], [-118.364385, 34.29995199912116], [-118.363777, 34.29982399912111], [-118.362977, 34.299375999121146], [-118.362833, 34.29879999912114], [-118.362369, 34.298079999121185], [-118.360811, 34.297090999121174], [-118.360913, 34.29760099912118], [-118.360769, 34.298351999121145], [-118.360865, 34.29907199912119], [-118.361265, 34.29971199912108], [-118.361617, 34.300927999121136], [-118.362097, 34.301631999121135], [-118.362097, 34.30204799912107], [-118.361713, 34.30228799912113], [-118.361985, 34.30337599912111], [-118.363473, 34.306639999121124], [-118.363793, 34.30783999912111], [-118.363697, 34.30905599912103], [-118.36350499999989, 34.30959999912104], [-118.365297, 34.31023999912102], [-118.366673, 34.311039999121036], [-118.367633, 34.31014399912103], [-118.368961, 34.310031999121094], [-118.369873, 34.30977599912106], [-118.371825, 34.30983999912099], [-118.371809, 34.31036799912107], [-118.371249, 34.311519999120975], [-118.371441, 34.31190399912099], [-118.371825, 34.31156799912106], [-118.371601, 34.315247999120956], [-118.37044899999987, 34.31718399912094], [-118.370801, 34.31774399912088], [-118.371793, 34.31862399912097], [-118.37364899999987, 34.31862399912097], [-118.373979, 34.31874299912094], [-118.374737, 34.31839999912093], [-118.375281, 34.31849599912095], [-118.375585, 34.31881599912095], [-118.376657, 34.318751999120884], [-118.377906, 34.31814399912093], [-118.3787059999999, 34.31695999912098], [-118.379282, 34.316831999120964], [-118.379826, 34.31718399912094], [-118.380754, 34.3161759991209], [-118.381362, 34.31590399912093], [-118.381506, 34.315519999120966], [-118.382386, 34.31446399912098], [-118.38261, 34.31577599912097], [-118.382898, 34.315183999120926], [-118.385538, 34.31372799912089], [-118.388178, 34.311007999120946], [-118.390658, 34.31262399912098], [-118.391346, 34.31281599912098], [-118.39205, 34.31255999912106], [-118.394706, 34.31076799912101], [-118.39509, 34.311407999121016], [-118.395362, 34.31155199912105], [-118.39581, 34.311471999121], [-118.396306, 34.31110399912101], [-118.396587, 34.311255999120974], [-118.396434, 34.311823999120975], [-118.397042, 34.31227199912102], [-118.39709, 34.31252799912096], [-118.39675399999989, 34.312735999121045], [-118.396866, 34.31342399912099], [-118.3965939999999, 34.31417599912097], [-118.397154, 34.31444799912103], [-118.397581, 34.31440699912099], [-118.397593, 34.31491199912102], [-118.396867, 34.31497199912095], [-118.39687872689846, 34.31727729876774], [-118.3965300000003, 34.3174189991208], [-118.39652400000027, 34.31807099912103], [-118.39627800000032, 34.318069999120794], [-118.39626000000028, 34.3198599991208], [-118.40066300000025, 34.31954199912081], [-118.40272000000014, 34.32129899912086], [-118.40491200000021, 34.32207699912093], [-118.40520200000029, 34.32981099912073], [-118.41357900011039, 34.329880999307946], [-118.41358500010807, 34.327407998978025], [-118.41220700007406, 34.32590399903763], [-118.41359099980184, 34.32510299920567], [-118.41359099982456, 34.32468999910865], [-118.41434899990178, 34.3246919989764], [-118.41434999993305, 34.32444099931942], [-118.41589400023133, 34.32448699925778], [-118.4190509997859, 34.3256559991217], [-118.42075100009902, 34.325572998984825], [-118.42074100005122, 34.32772299928936], [-118.41945600026216, 34.32792599930396], [-118.41821299989009, 34.329489998987015], [-118.4186370000703, 34.32943299907977], [-118.41900999988863, 34.32988099928395], [-118.41946199993703, 34.32987999902718], [-118.41946399976688, 34.32916299908681], [-118.41998499976484, 34.329163999008124], [-118.41998299985624, 34.32987899915683], [-118.47681961362112, 34.330189213779164], [-118.48440213799365, 34.330281885533296], [-118.49292925136521, 34.33077049923694], [-118.50380937791004, 34.3373067180372], [-118.5040379731292, 34.337133651373506], [-118.50611356963583, 34.341095897097695], [-118.50556799987186, 34.34192499914375], [-118.50419200024992, 34.345378999246094], [-118.50387000025317, 34.346336999144164], [-118.5037009999426, 34.34813099901927], [-118.50399599981809, 34.350151999168766], [-118.50625500007249, 34.35706299894676], [-118.50623800014995, 34.35914299906479], [-118.50582699985884, 34.36052099908649], [-118.50025700007193, 34.36046299919286], [-118.50017699994558, 34.359901999021474], [-118.49017499978929, 34.35950299898768], [-118.49004599991632, 34.35699699924781], [-118.47467300010211, 34.35607599895383], [-118.47493099988296, 34.366071999213034], [-118.48299300014406, 34.36622599914385], [-118.48299900004152, 34.36663699903548], [-118.48335900004562, 34.366643998929625], [-118.48333299973295, 34.37048199898691], [-118.48998599990243, 34.370481999227565], [-118.48999300002855, 34.36949599890269], [-118.4934730000646, 34.369514999075136], [-118.49347300004413, 34.3675219992237], [-118.49794100004603, 34.36753199913021], [-118.49795299992047, 34.37009599893807], [-118.50060899988343, 34.37011599915025], [-118.4990450001744, 34.372585999332884], [-118.4977839999435, 34.37386099895679], [-118.48814499987854, 34.382258999342866], [-118.48617900017248, 34.38378099929707], [-118.48233000008557, 34.38587999894602], [-118.4777119997534, 34.38950799923276], [-118.47675800022394, 34.39006699897996], [-118.46657300023985, 34.39135299926404], [-118.46299100022878, 34.39137299915365], [-118.46303099996457, 34.38398199894758], [-118.44679700008253, 34.383809999225974], [-118.44686199998644, 34.38073499897328], [-118.44251000004792, 34.38047299921586], [-118.44254899990634, 34.378152998907865], [-118.44064000025634, 34.37825299899653], [-118.44070900022287, 34.373860999267905], [-118.43882700025038, 34.37381299899844], [-118.43882999987709, 34.37676399896189], [-118.4356460001785, 34.3766809989596], [-118.43562299988359, 34.37584799892865], [-118.43360899980293, 34.37580599898551], [-118.43363399983849, 34.37464399902598], [-118.43218300005094, 34.374641998998996], [-118.4321370000646, 34.37378899925462], [-118.4299360000085, 34.373764999230346], [-118.42992999988981, 34.37640546315205], [-118.42646400686881, 34.37645901028029], [-118.42486023586574, 34.37683940048887], [-118.41998429179641, 34.37997007132582], [-118.41747613065863, 34.38106199999808], [-118.41718850351516, 34.38109676225244], [-118.41690000024572, 34.380894998917135], [-118.41677899998312, 34.381097999285785], [-118.41334799983103, 34.38118399895422], [-118.41306099977076, 34.379879998948255], [-118.41272400016237, 34.37943099934421], [-118.41217499979952, 34.379246998995846], [-118.41090300013809, 34.37932499914338], [-118.40954800013887, 34.37972199928686], [-118.40837399980421, 34.380468998944856], [-118.40597299995771, 34.3808669993053], [-118.40527500000015, 34.38062099912003], [-118.4052960000002, 34.384180999119984], [-118.39720400000037, 34.3842579991199], [-118.39710200000027, 34.39457699911993], [-118.40309900000024, 34.39458099911997], [-118.4031130000002, 34.396218999119895], [-118.4022460000002, 34.39698499911988], [-118.40383300000022, 34.397791999119995], [-118.40335100000014, 34.398581999120005], [-118.40262900000029, 34.39822399911976], [-118.4019740000002, 34.399143999119744], [-118.40350700000027, 34.399564999119946], [-118.40321300000026, 34.40064099911977], [-118.40487500000022, 34.40054299911985], [-118.40726500000025, 34.40270499911978], [-118.40849400000027, 34.40349699911972], [-118.40772100000012, 34.40501299911992], [-118.4077990000002, 34.40542399911979], [-118.40633100000022, 34.407147999119914], [-118.40381300000021, 34.40833199911976], [-118.40058400000025, 34.404103999119755], [-118.40063800000023, 34.40358799911972], [-118.4000960000003, 34.40313799912001], [-118.40001000000017, 34.401655999119896], [-118.3990460000002, 34.399454999119726], [-118.3970670000002, 34.398031999120086], [-118.39733400000037, 34.40757099911976], [-118.39777900000027, 34.416187999119735], [-118.4017550000002, 34.41640399911964], [-118.4019870000002, 34.42128999911952], [-118.40356500000023, 34.42077199911971], [-118.40421800000031, 34.423192999119635], [-118.40376800000027, 34.4234189991196], [-118.4051080000002, 34.423607999119504], [-118.40419600000033, 34.42416499911957], [-118.40396900000025, 34.42482399911952], [-118.41521900000028, 34.42490699911964], [-118.41516800000028, 34.42709299911959], [-118.40663800000021, 34.427048999119364], [-118.40567000000026, 34.42803199911951], [-118.40245600000024, 34.42893899911964], [-118.39234800000013, 34.43342899911946], [-118.39054700000023, 34.433826999119404], [-118.39057200000025, 34.435522999119485], [-118.38879900000019, 34.43543599911948], [-118.38746300000028, 34.435019999119554], [-118.38644600000022, 34.434395999119516], [-118.38609400000033, 34.43451299911941], [-118.38470700000029, 34.434131999119515], [-118.38415900000021, 34.43413799911958], [-118.3813460000002, 34.434810999119364], [-118.37218658491987, 34.43756537018774], [-118.36603596329746, 34.44159713021213], [-118.36517428248405, 34.4425849005869], [-118.36389697678037, 34.4445270010848], [-118.3626653449881, 34.44561152377869], [-118.35417979177228, 34.45016843227362], [-118.35303537961144, 34.45094315367841], [-118.35211740484357, 34.451869906595405], [-118.35135858840404, 34.452935863343164], [-118.35017964296584, 34.45565758126997], [-118.34963974012848, 34.456457169825434], [-118.34846534484105, 34.45753879669202], [-118.34440649867803, 34.45999905271218], [-118.3433097734245, 34.4612423989712], [-118.34330556155025, 34.46022096779477], [-118.34410936041725, 34.45949199096732], [-118.34334431384156, 34.45946599242291], [-118.3434326032265, 34.45164343078068], [-118.33449350049823, 34.45260819866622], [-118.32457920571778, 34.451549965843114], [-118.32479403220262, 34.45872952237763], [-118.32557364264049, 34.4667337008158], [-118.32405069951635, 34.46710783471354], [-118.32306573576233, 34.46755883353657], [-118.31941321756912, 34.47041800624682], [-118.31828825871858, 34.47111098814261], [-118.3169902682283, 34.4716158087797], [-118.31238632140938, 34.472414667854395], [-118.31100104801514, 34.47287305069936], [-118.29783723634789, 34.47934581114602], [-118.29584490977795, 34.47987753494308], [-118.29153076154049, 34.48036033704529], [-118.28941119030785, 34.48122246989989], [-118.28786479733525, 34.48254794021084], [-118.28684555746976, 34.48432886084255], [-118.28651406230853, 34.48823496406879], [-118.28614845568582, 34.489385898025276], [-118.28513411870637, 34.49070523086307], [-118.283360042033, 34.49195690010686], [-118.27131614903509, 34.496814196224356], [-118.2622637825119, 34.49801387509556], [-118.26040524497088, 34.498407834712985], [-118.25811647307349, 34.499479383410105], [-118.25562510291037, 34.50167983601259]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Tujunga Canyons", "metadata": {"sqmi": 229.89337376, "type": "unincorporated-area", "name": "Tujunga Canyons", "slug": "tujunga-canyons"}, "cases": 0.0, "population": 0, "external_id": "tujunga-canyons", "slug": "tujunga-canyons-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/tujunga-canyons-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.279608, 34.278189999121345], [-118.27368, 34.278066999121364], [-118.273537, 34.28166099912115], [-118.238789, 34.28158899912125], [-118.238903, 34.26708399912142], [-118.25669, 34.26718999912136], [-118.2565, 34.25226599912151], [-118.265264, 34.2523799991216], [-118.265297, 34.250264999121526], [-118.266672, 34.25077899912161], [-118.26669100000015, 34.2477719991216], [-118.266044, 34.24776799912163], [-118.265999, 34.24389199912163], [-118.266024, 34.24035599912163], [-118.266733, 34.24079599912165], [-118.26680734947294, 34.23062818193326], [-118.272018, 34.23159299912171], [-118.27060900000012, 34.23280299912177], [-118.271693, 34.23347499912174], [-118.271809, 34.23380299912176], [-118.278402, 34.233313999121606], [-118.280011, 34.23333699912169], [-118.28264900000018, 34.233722999121674], [-118.286987, 34.233718999121685], [-118.291206, 34.23393999912167], [-118.29482100000011, 34.23336799912179], [-118.30283800000011, 34.2326339991218], [-118.304638, 34.23264999912175], [-118.306801, 34.23296299912164], [-118.30859400000013, 34.233532999121685], [-118.309275, 34.233902999121646], [-118.311857, 34.23647399912166], [-118.313731, 34.23783099912165], [-118.314707, 34.23830599912177], [-118.31823600000013, 34.23938399912177], [-118.32040200000012, 34.24030099912171], [-118.322176, 34.24141899912162], [-118.322947, 34.24218799912148], [-118.323718, 34.24348699912155], [-118.324811, 34.2501019991216], [-118.31671100000011, 34.24860199912146], [-118.312311, 34.248901999121486], [-118.30691100000011, 34.2482029991216], [-118.306011, 34.24860199912146], [-118.305311, 34.24850199912149], [-118.30641100000017, 34.24970199912165], [-118.30641100000017, 34.2514019991215], [-118.305511, 34.251001999121506], [-118.306111, 34.252101999121464], [-118.304111, 34.25240199912149], [-118.302711, 34.25240199912149], [-118.30261100000016, 34.26610199912149], [-118.302911, 34.272501999121204], [-118.302311, 34.2728009991212], [-118.30321100000013, 34.27330099912117], [-118.303411, 34.27390099912123], [-118.302411, 34.27420099912127], [-118.3011110000001, 34.27490099912131], [-118.299811, 34.275200999121125], [-118.299511, 34.27540099912129], [-118.299011, 34.27670099912115], [-118.29731, 34.27830099912115], [-118.29581, 34.281000999121105], [-118.29321000000013, 34.283200999121256], [-118.29161000000013, 34.28560099912108], [-118.29011, 34.28920099912104], [-118.28741, 34.29150099912099], [-118.28630781880415, 34.29205199819598], [-118.286694, 34.27833699912118], [-118.279608, 34.278189999121345]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Tujunga", "metadata": {"sqmi": 10.0158177057, "type": "segment-of-a-city", "name": "Tujunga", "slug": "tujunga"}, "cases": 72.0, "population": 0.27809965237543455, "external_id": "tujunga", "slug": "tujunga-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/tujunga-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.60443198843403, 33.47870998015493], [-118.60380401060958, 33.477981986760426], [-118.60210900712653, 33.47794999861377], [-118.60193301970844, 33.47778800600988], [-118.60191397413438, 33.477431980043086], [-118.60111700629862, 33.47719701447972], [-118.60073399033321, 33.47722500410805], [-118.59927800354411, 33.478003978611135], [-118.59890798276328, 33.47793000602219], [-118.5984859812443, 33.478068007516434], [-118.59798101047012, 33.47752699746524], [-118.5975470133961, 33.47756198450052], [-118.59681502148321, 33.477168025221886], [-118.59503599650338, 33.47677001481278], [-118.59428801051725, 33.47598898843841], [-118.5938430175179, 33.47586997990631], [-118.59342201562833, 33.475395997649144], [-118.59243501294841, 33.475526002106655], [-118.59140197469573, 33.47523900319305], [-118.58816101776131, 33.47503702540575], [-118.58767898585538, 33.47482000056275], [-118.58719700656157, 33.474334022750604], [-118.58621000388165, 33.47386198714056], [-118.58490701303015, 33.47409900457526], [-118.58418801630182, 33.474003987153], [-118.58370998291431, 33.474417991635356], [-118.58297399248308, 33.47468199906864], [-118.58251700392879, 33.474406995710055], [-118.58209700166898, 33.47438500385922], [-118.58078501415129, 33.47476502093588], [-118.5797319833068, 33.4753169743003], [-118.579123998074, 33.47541399098157], [-118.57843299097374, 33.47530897726356], [-118.57774198387366, 33.474809004637464], [-118.57663902416225, 33.47439100163667], [-118.57601599187359, 33.47449701498436], [-118.57515599476228, 33.475094004291876], [-118.57451802064212, 33.47457398646194], [-118.57374998945207, 33.47485598722772], [-118.57314100458953, 33.47449501572523], [-118.57241900897253, 33.4744720242448], [-118.57176598779631, 33.47462901870095], [-118.57099501032978, 33.4751219939201], [-118.56992198689386, 33.47532302468988], [-118.56955101909558, 33.475841990278205], [-118.56904899459803, 33.47508200873687], [-118.56830200824145, 33.47473198054765], [-118.56789500116615, 33.474237006069394], [-118.56742301816817, 33.47396100308108], [-118.56681398069351, 33.47415998197959], [-118.56647999918968, 33.473829998994056], [-118.56596298024856, 33.473681001574576], [-118.56444901494362, 33.47394001085992], [-118.56343102374657, 33.47382400121655], [-118.56110499093815, 33.47413799012896], [-118.5603120216209, 33.473788014551836], [-118.55907900484023, 33.47387498232515], [-118.55832102255809, 33.473403998956776], [-118.55797399325768, 33.47335301784828], [-118.55737600432042, 33.47350901267474], [-118.55739999543044, 33.47368699935202], [-118.55698499131849, 33.473918019009176], [-118.55589802568043, 33.474214014589045], [-118.55587798047684, 33.474421990153736], [-118.556216013111, 33.474645012774246], [-118.55592501567905, 33.47477501723169], [-118.55548402119814, 33.47443198644948], [-118.55331598247547, 33.474122995685114], [-118.55304897615338, 33.473496017490206], [-118.55224501091074, 33.47358098600446], [-118.55168000974972, 33.47317098004046], [-118.55136602083755, 33.47313199448681], [-118.55025201258866, 33.47332197671914], [-118.54914800063578, 33.47378001751507], [-118.54831499352314, 33.47372298601699], [-118.54804398868283, 33.47383999528987], [-118.54776898532435, 33.4744219901537], [-118.5468530089565, 33.474231008291895], [-118.54648798632358, 33.47460797386765], [-118.54571900811615, 33.47488997463341], [-118.54532099770711, 33.47476901945416], [-118.54498801583271, 33.47430298162158], [-118.54428001502977, 33.47412699420346], [-118.54386301165869, 33.47425499940183], [-118.54350798532153, 33.47470499054897], [-118.54280698192566, 33.474604974978924], [-118.54209098408602, 33.474960001316184], [-118.54175400369331, 33.47547202210939], [-118.53990700390206, 33.475369007650464], [-118.5387780012096, 33.47625199624215], [-118.53869198045369, 33.47742698189517], [-118.53850399748055, 33.477611018962044], [-118.53803901188972, 33.4774229833768], [-118.53794199520824, 33.476940004453546], [-118.53774101705064, 33.47673397553595], [-118.53725698588568, 33.476588976634694], [-118.53631301988966, 33.475835992500535], [-118.53612098578617, 33.475453976164935], [-118.53587302503823, 33.47534301728138], [-118.53531802017301, 33.4742320079215], [-118.53378900781244, 33.47387098380691], [-118.53295999921814, 33.47330798190506], [-118.532561988809, 33.47253500517929], [-118.53204602210955, 33.47235801813161], [-118.5320810091448, 33.47190597511305], [-118.53175102615921, 33.47174798102745], [-118.53193301135494, 33.47123001506878], [-118.53145997611524, 33.4702530086846], [-118.53113499127763, 33.47011700644953], [-118.53082999903147, 33.47030398979322], [-118.53033802344198, 33.469897982347405], [-118.53012699637637, 33.469481978606], [-118.53089497495439, 33.46939701009175], [-118.53108401016905, 33.46897800746139], [-118.53087198347392, 33.4681899836799], [-118.53027899268464, 33.46767101809179], [-118.52784599951131, 33.466329988704075], [-118.52582701082012, 33.4656549756773], [-118.52559699079266, 33.46538902159695], [-118.52461398663087, 33.465281008990274], [-118.52387099879269, 33.46564797827019], [-118.5229269801846, 33.4657669868023], [-118.52215500308849, 33.46553002197975], [-118.52206698307339, 33.464324994827216], [-118.52292198203665, 33.46361399513547], [-118.52314000650937, 33.463079982491436], [-118.52306498167863, 33.462342992430585], [-118.52286500315063, 33.461992017223885], [-118.52190698972841, 33.461276019384314], [-118.5202930088536, 33.46128801493918], [-118.51855702055775, 33.4607060200754], [-118.51824097977412, 33.46035299299737], [-118.5184719994313, 33.4597360110982], [-118.51834299460344, 33.459089987329136], [-118.51800001643332, 33.45884702472913], [-118.51650399184878, 33.45880898619303], [-118.51631201035732, 33.4582739739195], [-118.5158269795629, 33.45771202425927], [-118.51585602143278, 33.45711698159873], [-118.51557601992616, 33.45702701493665], [-118.51501001913564, 33.45716101791235], [-118.51294499487173, 33.456566974881525], [-118.51254498520346, 33.45631201672648], [-118.51207600109434, 33.45542097848633], [-118.51092600618063, 33.455715974436465], [-118.51004801573696, 33.45512298364719], [-118.50982099459812, 33.45525898588221], [-118.50947401790971, 33.455192010700316], [-118.50881799784483, 33.45550899850132], [-118.50855199115243, 33.45474002029391], [-118.50762102034102, 33.45422600024151], [-118.50718302474874, 33.454372998401844], [-118.5065779857924, 33.4540660068966], [-118.50585499054579, 33.4540109746577], [-118.50542999013803, 33.45374801946602], [-118.50540799828715, 33.45344097534887], [-118.50517397974136, 33.4533260179471], [-118.50374998109874, 33.45294100272258], [-118.50277497397364, 33.453245994968576], [-118.50210401207714, 33.45295399790707], [-118.50186099686496, 33.453156975324], [-118.50150202462174, 33.45306201051379], [-118.5013740194233, 33.45269198973302], [-118.50161298350513, 33.45248001565007], [-118.50227200245874, 33.452378000820694], [-118.50295301326298, 33.45197499226377], [-118.5031300003108, 33.45138100184496], [-118.5035250118312, 33.45105901589607], [-118.50355300145934, 33.450710986965916], [-118.50329699106277, 33.45036401027763], [-118.50107302569559, 33.44936001389479], [-118.4999780104089, 33.449553994645335], [-118.49959399481396, 33.449003987928094], [-118.49962398370137, 33.44789197893843], [-118.50107702421394, 33.447604980024764], [-118.50126300792797, 33.447447985568814], [-118.50132098644364, 33.447080016659235], [-118.50105597938077, 33.44684099996532], [-118.49999100559356, 33.44679301774553], [-118.4983109965542, 33.44577497393646], [-118.49830100025834, 33.44521302427631], [-118.4986650232618, 33.4444479919751], [-118.49937502332394, 33.443962014163105], [-118.4998080207682, 33.44338901596541], [-118.49910301885403, 33.44237102476846], [-118.49774699502278, 33.44146099356617], [-118.4964410052825, 33.441112017618636], [-118.4933609887106, 33.44110002206365], [-118.49252698196823, 33.44165597394627], [-118.49108199110437, 33.44185400582739], [-118.4907650033035, 33.44217899066493], [-118.4912049981549, 33.44278797552747], [-118.4909140007229, 33.4432929989137], [-118.49031301289716, 33.443244017064316], [-118.48950999467179, 33.44420097824485], [-118.48836999605406, 33.4438989848874], [-118.4880859960293, 33.44404798230698], [-118.48822799604174, 33.444403008644116], [-118.48797798342241, 33.44458599346927], [-118.48656498070515, 33.44413200380375], [-118.48635300662217, 33.443869995629605], [-118.48613798103831, 33.4439540171264], [-118.48572497618557, 33.443576998938426], [-118.48513398465539, 33.44349297744172], [-118.4843989938538, 33.4438679963704], [-118.48391401567117, 33.444455989011864], [-118.48386298195064, 33.44474798607339], [-118.48346302489438, 33.44493502202893], [-118.48351200674378, 33.44507402315267], [-118.48466200165748, 33.445286996865185], [-118.4853440120914, 33.44617798249335], [-118.48515897539494, 33.44644198992672], [-118.48393900641082, 33.44697400331156], [-118.4840970004965, 33.44711700295361], [-118.48313998670378, 33.447185977394646], [-118.48247102406651, 33.44752900817682], [-118.48075797463903, 33.447830001904485], [-118.48012199977786, 33.4478629896807], [-118.47984599678949, 33.447602980765716], [-118.47940300304937, 33.447508015955606], [-118.47849802260711, 33.4479859967311], [-118.47745798694723, 33.448231011202296], [-118.47712000692512, 33.448012986729715], [-118.47701299394785, 33.447662011523114], [-118.47647298352655, 33.4473580189065], [-118.47654600909789, 33.44620802399292], [-118.47619897979733, 33.44608701620176], [-118.47620297831564, 33.4457629783815], [-118.4758879897738, 33.4455490050393], [-118.47572499754017, 33.44468500940979], [-118.47440201409715, 33.44399800082789], [-118.47385300700948, 33.44322097297181], [-118.4726810202451, 33.44219098621984], [-118.47139102457828, 33.44186500175276], [-118.4694440092168, 33.44227500771675], [-118.46757001942709, 33.44166702248378], [-118.46506100179343, 33.44040001829723], [-118.46267998935812, 33.440216980859944], [-118.46220200858261, 33.43961899192281], [-118.46144502593033, 33.43797202327186], [-118.46048701250814, 33.437076986513084], [-118.45930397720615, 33.43658301166437], [-118.45795700265339, 33.43636998533978], [-118.45636801251788, 33.43498097373228], [-118.45545498242679, 33.434460008884955], [-118.45427999677355, 33.433306015453056], [-118.45160298875847, 33.43268898094186], [-118.44943900116634, 33.432496999450315], [-118.44773500101701, 33.43015502518086], [-118.44483702225267, 33.42844397501258], [-118.44269197501036, 33.42789602016645], [-118.43885597541538, 33.428713980223264], [-118.43689401822245, 33.42845102503158], [-118.43625799074918, 33.42824099759564], [-118.43513198694566, 33.42741898640844], [-118.43471698283358, 33.42653000003936], [-118.43426399279758, 33.426287984456884], [-118.43249601635533, 33.42633801854796], [-118.43050201840369, 33.427295979358135], [-118.42899299863458, 33.4277480223765], [-118.4272570103389, 33.42739099678023], [-118.42581601799328, 33.4266290159799], [-118.42515499978059, 33.42667699819972], [-118.42414900413853, 33.42707001046099], [-118.42182102468318, 33.42653199929857], [-118.4208830038526, 33.42671098560537], [-118.420267021583, 33.42623000594118], [-118.41802700953058, 33.42551600736079], [-118.41701501611107, 33.424749975430025], [-118.41667498421758, 33.42415598501124], [-118.41551699226734, 33.42386198869054], [-118.41520300335506, 33.423137993814194], [-118.41400197472092, 33.42310300677909], [-118.41329097502907, 33.42250501784175], [-118.4116739952654, 33.42229698966506], [-118.41032702071243, 33.42158598997338], [-118.40910699911616, 33.42164302147139], [-118.40801898123644, 33.42118398104591], [-118.4054279939774, 33.42171599443074], [-118.40518197987653, 33.42134297476119], [-118.40508201691856, 33.42031798615714], [-118.4041290016443, 33.41958099609636], [-118.40219398183778, 33.4188450056652], [-118.40119298434377, 33.418897986032846], [-118.40014900277767, 33.41853201638236], [-118.39817299815856, 33.418213976339786], [-118.3981170189021, 33.41744399850273], [-118.39736798067422, 33.41701300031751], [-118.39716700251662, 33.41631499581048], [-118.39687100693668, 33.41612101505973], [-118.39610902613643, 33.41598901134312], [-118.39508298529064, 33.41605998504329], [-118.39450398931562, 33.41625901655384], [-118.39388800704596, 33.41680097362239], [-118.39079699454852, 33.41738102183928], [-118.38965199778285, 33.417742992971334], [-118.3891049899542, 33.417680016307784], [-118.38875201548834, 33.41746998887182], [-118.38583299189077, 33.41383002189879], [-118.38410799952034, 33.41248199510423], [-118.38272398606091, 33.41022598897857], [-118.38207701527429, 33.40982697893995], [-118.38089397997253, 33.409591013746955], [-118.3792190216932, 33.40959301300607], [-118.37558599951504, 33.41019699972076], [-118.37274100111846, 33.409967979322786], [-118.37035499053533, 33.409202999633685], [-118.36955002566303, 33.40852898623642], [-118.3691790052526, 33.40755597837053], [-118.36878799225062, 33.407093991668376], [-118.36649000168245, 33.40640298456831], [-118.3661500224011, 33.40598798045634], [-118.36677999948489, 33.40590900971945], [-118.36715801730233, 33.40541498225863], [-118.36817101035138, 33.405071004459046], [-118.36860600705492, 33.404456021819], [-118.36860600705499, 33.403888021769234], [-118.36747900362174, 33.40219801643417], [-118.36716501470944, 33.400860985564925], [-118.36684397577793, 33.40028298921941], [-118.36728502287109, 33.39984699288633], [-118.3673100136105, 33.39922201395052], [-118.36942002120557, 33.39740100452851], [-118.36994898308963, 33.396186980709565], [-118.36996097864449, 33.395744986599006], [-118.36965198788015, 33.39490098356107], [-118.36987301124144, 33.39311101526804], [-118.36941902157604, 33.39110302250231], [-118.36902301042602, 33.39080097653284], [-118.36858801372246, 33.39084801173522], [-118.36831101110465, 33.39071200950026], [-118.36805899922635, 33.38934798863241], [-118.36722799137297, 33.388511982631165], [-118.36652298945859, 33.38815700890598], [-118.36520600379306, 33.388125020759496], [-118.36438799112415, 33.387798983680135], [-118.3615579871713, 33.384585016744474], [-118.35939799809728, 33.3827570099152], [-118.35821301614843, 33.38130802053307], [-118.35614099447744, 33.37830497543868], [-118.3559009781541, 33.37741498944013], [-118.35462197841264, 33.37670998752581], [-118.35444599099448, 33.37565501003437], [-118.3541180072681, 33.3749759984892], [-118.35235297710241, 33.373730986153355], [-118.35092198105278, 33.37337701205791], [-118.34982601874849, 33.37215599083203], [-118.34962998612669, 33.370925972939965], [-118.34921498201473, 33.370503024403526], [-118.34805499080537, 33.36980801878507], [-118.34708398219858, 33.369896985817725], [-118.3420610013955, 33.36492398649382], [-118.33944902191536, 33.363402024152236], [-118.33700797909307, 33.36149499397419], [-118.33418902367768, 33.36021999275108], [-118.33321901470063, 33.359545979353655], [-118.33191902273788, 33.35839198592185], [-118.33067101151326, 33.3564059850068], [-118.33063258886266, 33.35549326754746], [-118.33089300000026, 33.355495999132806], [-118.3308710000003, 33.355701999132805], [-118.33142200000032, 33.3559769991328], [-118.33197900000032, 33.355693999132924], [-118.33209800000029, 33.35480899913284], [-118.33325900000024, 33.3548969991328], [-118.3333190000002, 33.35550199913283], [-118.3342530000002, 33.35547299913287], [-118.33417000000023, 33.354880999132845], [-118.33506400000032, 33.35500499913297], [-118.33502800000026, 33.35543499913279], [-118.3353960000004, 33.35529899913287], [-118.33543300000026, 33.35415199913273], [-118.33526300000015, 33.35394799913287], [-118.3346640000002, 33.35392799913288], [-118.3346910000002, 33.35356699913281], [-118.33445800000023, 33.35336799913292], [-118.33257900000028, 33.35363699913286], [-118.33175300000028, 33.35360899913284], [-118.33108400000022, 33.352859999132974], [-118.33572200000019, 33.34731599913291], [-118.33928000000026, 33.34379799913299], [-118.34249500000028, 33.34034099913301], [-118.34687300000026, 33.32127399913322], [-118.34705100000028, 33.31868299913333], [-118.32709300000026, 33.31793199913347], [-118.32698800000023, 33.33032599913321], [-118.31828400000029, 33.33901099913304], [-118.31831100000016, 33.330598999133265], [-118.31693800000023, 33.327727999133096], [-118.31397600000018, 33.329253999133215], [-118.3110860000003, 33.330342999133116], [-118.30761346955137, 33.33029922693022], [-118.30743598984161, 33.3299969815828], [-118.30721501909227, 33.32723200616473], [-118.30608601639989, 33.32459198444414], [-118.30590897674013, 33.32291597392313], [-118.3035600050635, 33.320318988886534], [-118.30336402505371, 33.31985400329563], [-118.30365402285608, 33.317862004603334], [-118.30347098541867, 33.31683801562876], [-118.30396401325007, 33.314383977622114], [-118.3046470233135, 33.30902601568579], [-118.30488098924742, 33.30832601191945], [-118.30538601263345, 33.307823987422005], [-118.30707301907992, 33.30685297881525], [-118.3097209852251, 33.30600997540684], [-118.31138400056159, 33.305196013868354], [-118.31329897516429, 33.30338700000124], [-118.31424699229059, 33.30207501248359], [-118.31625098653792, 33.30110500350644], [-118.31695298956352, 33.30058198678782], [-118.3204490098772, 33.30019097378584], [-118.32142201774295, 33.29961997484732], [-118.32571600552188, 33.29819197768648], [-118.3274040115977, 33.298318983255214], [-118.32840400946218, 33.298652017741595], [-118.33272198835103, 33.30081000755623], [-118.33523900302126, 33.301145988319234], [-118.33712498836607, 33.3020760121132], [-118.33826898550217, 33.302279989159665], [-118.34011098714555, 33.3029590007047], [-118.34168598246683, 33.30318102369558], [-118.34676999328636, 33.307363000349284], [-118.34734199185438, 33.30763100630107], [-118.34942600908036, 33.307980981878096], [-118.35235297710254, 33.31097897621244], [-118.35546698108023, 33.31350998569682], [-118.35618097966075, 33.31392099129039], [-118.35896000250511, 33.31457501209602], [-118.36028798409592, 33.315042996575755], [-118.36450400076765, 33.3152530240117], [-118.36567498790237, 33.31595697368437], [-118.37000601458767, 33.31736297899453], [-118.37248499072182, 33.318724000973596], [-118.3744499994156, 33.319436000294964], [-118.37971599543063, 33.320245016297704], [-118.3828659860733, 33.320245016297704], [-118.38441699028466, 33.32055500669157], [-118.38594600264544, 33.320137003690874], [-118.38787502467436, 33.31986299996188], [-118.3897270226134, 33.32023402037231], [-118.39146301090923, 33.3202039788728], [-118.39230601431764, 33.31945199436828], [-118.39331200995963, 33.3191320076785], [-118.39514201604798, 33.319872996257615], [-118.39626302170379, 33.31982501403774], [-118.39724902475419, 33.319338983613584], [-118.39813501223458, 33.31967601661842], [-118.39899201045704, 33.31944599659079], [-118.40118598693665, 33.32016899183746], [-118.40669499816391, 33.32071899855483], [-118.40995999882028, 33.32038101853267], [-118.41085998111483, 33.32001299701097], [-118.41250300385971, 33.31986699848022], [-118.41363200655204, 33.31946398992321], [-118.41613297453696, 33.3191719928617], [-118.41716801204888, 33.31837402539648], [-118.42068302532452, 33.31730300121976], [-118.42158300761885, 33.31667602302485], [-118.42251197917109, 33.31652902486445], [-118.42466202456146, 33.317577004948866], [-118.426649025106, 33.31765497605609], [-118.4271989792111, 33.31815600092387], [-118.4280419826195, 33.31853801725968], [-118.42975098091668, 33.31858899836825], [-118.4312440066125, 33.31842200761636], [-118.43337900494691, 33.31907497618049], [-118.43515797731459, 33.318940973204526], [-118.43895199246712, 33.31806698127923], [-118.44120999785203, 33.31811101759283], [-118.44190300421138, 33.3184100120614], [-118.44353197952996, 33.31986899773938], [-118.44441102221538, 33.320287000740024], [-118.44526102303084, 33.32033498295979], [-118.44767502324216, 33.31985700218443], [-118.45069001127955, 33.320187984799475], [-118.45153301468795, 33.32066002040956], [-118.45258299403143, 33.32070800262944], [-118.45737900630782, 33.32180901569363], [-118.4597720142979, 33.323391008421986], [-118.46037899990127, 33.32345098619669], [-118.46119401368156, 33.32395800884208], [-118.46218701413888, 33.32414899070406], [-118.46411598355569, 33.32516398301219], [-118.46552398812508, 33.32557598823537], [-118.46567998295166, 33.32582100270657], [-118.4654009810748, 33.326663006485475], [-118.46543202220373, 33.32718202468584], [-118.46566698776716, 33.32748601730218], [-118.46733899976986, 33.32849501183292], [-118.46714601864875, 33.329510004141234], [-118.46745400978357, 33.33013098455863], [-118.46926102439177, 33.331448022836284], [-118.47029101114352, 33.33169798284335], [-118.47136997974495, 33.332225997709855], [-118.47165597902902, 33.33302001926882], [-118.47281302396176, 33.33359901524401], [-118.47287100247732, 33.33416101751615], [-118.47257000874976, 33.33505900055146], [-118.47305698619132, 33.33648299919413], [-118.47444299891005, 33.33762299781198], [-118.47540101233213, 33.33877799087342], [-118.47640200982627, 33.33901100978969], [-118.47668700948067, 33.33897602275446], [-118.47686599578756, 33.33865898234132], [-118.47757399659072, 33.338865011258974], [-118.47733098137846, 33.3392329801686], [-118.47737401806256, 33.339644985391715], [-118.47815998997281, 33.3414180125941], [-118.47924600859324, 33.34193797781182], [-118.48137600877988, 33.34340701239774], [-118.48229898255471, 33.344726996952055], [-118.48342798524715, 33.34686799306382], [-118.48405701531328, 33.347294992730724], [-118.4840780075344, 33.34899399473213], [-118.48553699321242, 33.350549997091335], [-118.48572297692628, 33.35115298417631], [-118.48620200994357, 33.35188197720057], [-118.48600197880337, 33.35229998020121], [-118.48666699553439, 33.352690993203154], [-118.48671697701343, 33.353366006230075], [-118.48764000340032, 33.35489801747944], [-118.48826198344732, 33.356588022814705], [-118.48826998048403, 33.357513995478115], [-118.48779799748603, 33.35887501745729], [-118.48724699113907, 33.35958901603771], [-118.48679699999185, 33.3607000253977], [-118.48519501467187, 33.36163499472737], [-118.4846729975828, 33.362406024806084], [-118.48463701091791, 33.362732009273195], [-118.48483698944594, 33.36307798633212], [-118.48591001288194, 33.363294011545456], [-118.48588902066078, 33.36381297713378], [-118.48387897602395, 33.3661759962365], [-118.48261302407893, 33.367036992977376], [-118.48216997772663, 33.367654974506166], [-118.48209100698993, 33.36848598235952], [-118.48235501442309, 33.36921697464292], [-118.48299898632104, 33.37020897547082], [-118.48489502057375, 33.37244698826394], [-118.48494500205278, 33.37297500313051], [-118.48478001056009, 33.37310600721759], [-118.48357798229611, 33.37320802204683], [-118.48234701738657, 33.374008988400774], [-118.48115298615944, 33.374221015095856], [-118.48024400719858, 33.37469299809386], [-118.47962802492906, 33.37538000667583], [-118.47937101490278, 33.37592401561552], [-118.47944898601017, 33.376387001947336], [-118.48033702536162, 33.37713398830387], [-118.48123100987863, 33.378809998824906], [-118.48112399690159, 33.37943697701997], [-118.48064501649657, 33.37972097704468], [-118.48048702241081, 33.38034800785172], [-118.4796360219658, 33.38068898676269], [-118.47784800031967, 33.38082698825682], [-118.47723901545723, 33.38114997383524], [-118.47603698719332, 33.3810250201377], [-118.47533598379734, 33.381180015334785], [-118.47381002293757, 33.382161020237206], [-118.47361698920452, 33.38273801695321], [-118.47386700182359, 33.383651994061786], [-118.47437602372818, 33.384494997470085], [-118.47461198892107, 33.38464499451929], [-118.475120011196, 33.38440597782558], [-118.47539201566588, 33.384512990802634], [-118.47520597933998, 33.38508099085238], [-118.47434698185823, 33.38534399865599], [-118.47441800817042, 33.385709021288875], [-118.4748630011698, 33.38617500650941], [-118.47586499829355, 33.38640197503613], [-118.47677397725424, 33.385666984234526], [-118.47731798619402, 33.38547500274301], [-118.4786430215083, 33.3862079942856], [-118.47869300298734, 33.38722998400082], [-118.47985999160372, 33.388727008215014], [-118.48001698605992, 33.38936598196495], [-118.48051101352075, 33.389769990151365], [-118.48071099204874, 33.39039202281051], [-118.48125500098861, 33.39089999247337], [-118.481254001359, 33.39122597694059], [-118.4807970128047, 33.39186600293216], [-118.48088997835569, 33.392404014094524], [-118.4807690231764, 33.39321097822606], [-118.48096200429752, 33.39423501981249], [-118.4814449832208, 33.395045982462214], [-118.48177201992969, 33.39602598773516], [-118.48207901143498, 33.3964499885133], [-118.48283899297608, 33.396772974091746], [-118.48351900415099, 33.39798399902183], [-118.48369799045778, 33.39849202129676], [-118.4837269797156, 33.39951401101201], [-118.48490901538797, 33.40025200070243], [-118.48579600249785, 33.401095004110914], [-118.4857460210188, 33.40158498044124], [-118.48497998908799, 33.401877977132344], [-118.48475102130224, 33.40224299976524], [-118.48508800169473, 33.40273397572522], [-118.48543897690156, 33.40367199655585], [-118.48540299023662, 33.40395999509898], [-118.48417102569746, 33.404945998149365], [-118.48396299752058, 33.40594399675474], [-118.48362701675764, 33.40625498677828], [-118.48362701675762, 33.40656597680176], [-118.48450700646055, 33.40744202059848], [-118.48566799729952, 33.40748400504082], [-118.48659202331591, 33.40783098172916], [-118.48654898663195, 33.40829701956173], [-118.48528798022286, 33.409229989632365], [-118.48530197503696, 33.41035999195431], [-118.48489402094421, 33.41146700279601], [-118.48494900057102, 33.4121310198975], [-118.48549600839966, 33.413276016663126], [-118.4867940011032, 33.41391798930189], [-118.48669298590345, 33.41498501496036], [-118.48727398113776, 33.41601400208263], [-118.48769698228624, 33.417583999256074], [-118.48810498899122, 33.41813100708461], [-118.48814097565608, 33.41885500196087], [-118.48871397385375, 33.41917198976188], [-118.48913697500238, 33.41973899018197], [-118.49001201916934, 33.41993802169263], [-118.49159401189773, 33.420919973612506], [-118.49285901682511, 33.42128499624549], [-118.49474300291081, 33.421265003653915], [-118.49593598189631, 33.421690004061695], [-118.49751097721763, 33.421259005876415], [-118.49940401258179, 33.421577992936555], [-118.49981701743461, 33.42233397595963], [-118.50052501823747, 33.42283200193861], [-118.50143899534602, 33.42285199453029], [-118.50463602119115, 33.42446497577565], [-118.50517697863016, 33.425627018856275], [-118.50626699576885, 33.426449977060955], [-118.50668000062173, 33.42695400081749], [-118.50681500322709, 33.42754499234773], [-118.50669599469495, 33.42794300275668], [-118.50573398275439, 33.42886597653145], [-118.5060199820385, 33.430105990719284], [-118.50579801165962, 33.43071697484099], [-118.50548002422909, 33.43109499265845], [-118.50509201011582, 33.43102501858783], [-118.5050419760247, 33.430802995596984], [-118.50547197458035, 33.429840983656476], [-118.5052330104987, 33.42960801735233], [-118.50496300528793, 33.42965499994263], [-118.50467600637423, 33.42999997737174], [-118.50424001004113, 33.43109499265845], [-118.50275997952991, 33.4317520123529], [-118.50262497692457, 33.431950991251384], [-118.5027689761961, 33.432833979843075], [-118.50259298877793, 33.433516989906536], [-118.50111501013794, 33.43517600672458], [-118.50104298419613, 33.43581997862235], [-118.5014250005319, 33.43610497827695], [-118.50179901983107, 33.43615801125672], [-118.50250602100454, 33.43518900190911], [-118.50494001380756, 33.434233987375734], [-118.50613299279308, 33.43274101429209], [-118.50647502394575, 33.43208399459763], [-118.50914598157125, 33.431970983843016], [-118.50968699162229, 33.43175201235303], [-118.50971897976882, 33.429952994781516], [-118.5103390131689, 33.4293490080669], [-118.51074502061464, 33.42864600541182], [-118.51169898290627, 33.42802802388311], [-118.51247900965127, 33.4272120104733], [-118.51251799520492, 33.426734976715395], [-118.5122879751772, 33.42584499071673], [-118.5124229777826, 33.42548002069584], [-118.51183398551173, 33.42484299359313], [-118.5123440070459, 33.42370799312308], [-118.51208099924219, 33.42240000412388], [-118.51245501854126, 33.42177602481772], [-118.5129479937604, 33.42158399071405], [-118.51410198719232, 33.422154989652604], [-118.51522299284817, 33.421962008531544], [-118.51555697435194, 33.42204897630505], [-118.51632100702358, 33.422819006754075], [-118.51619300182523, 33.42346897642939], [-118.51639198072382, 33.4246969950623], [-118.5162800222108, 33.42561902181955], [-118.51680498557654, 33.4264890152266], [-118.5195380254603, 33.427468020869924], [-118.5211150200408, 33.42907600396741], [-118.52212201531232, 33.429681989941116], [-118.52339801616505, 33.43075201448839], [-118.52399600510213, 33.430802995596984], [-118.52595001787066, 33.43032301556231], [-118.52686299534957, 33.43056397890316], [-118.52791397432271, 33.43062101040126], [-118.52847097844703, 33.430421978890664], [-118.52877102515724, 33.43004601294463], [-118.52934702224366, 33.430134979977005], [-118.53034102233079, 33.4297540158831], [-118.53071698827688, 33.42982698884239], [-118.53113599090726, 33.43040698444714], [-118.53134201982483, 33.43045901779725], [-118.53255599103151, 33.429024023229225], [-118.53306301367688, 33.42874202246352], [-118.5333130262961, 33.429196012129154], [-118.53361202076469, 33.42934001140062], [-118.53394500263894, 33.42900297839593], [-118.53423899895951, 33.42895599580567], [-118.53464600603485, 33.429786004029594], [-118.53521500571424, 33.43008899701649], [-118.536310021001, 33.42968698808912], [-118.53634100951787, 33.4300310185008], [-118.53568398982347, 33.4310959922881], [-118.5357840053936, 33.431978980879705], [-118.53553399277446, 33.43334200211787], [-118.535670994639, 33.433946988462075], [-118.5362719824649, 33.434380985536], [-118.53664100361605, 33.434380985536], [-118.53689801364236, 33.43417700848967], [-118.53743602480469, 33.434489997772374], [-118.54003300984121, 33.43450599184563], [-118.54099002363392, 33.43431301072458], [-118.54271801489311, 33.43359801251444], [-118.54376299608872, 33.4334670084275], [-118.54413301686938, 33.43358201844123], [-118.54499001509191, 33.43447000518073], [-118.5467429970907, 33.435134022282284], [-118.54716299935045, 33.43505000078553], [-118.54841500909339, 33.434255979226435], [-118.54988599032627, 33.43574000825598], [-118.55036802223205, 33.43547400156358], [-118.55107502340559, 33.43540097599212], [-118.55211500645325, 33.4345810166762], [-118.55282200762677, 33.43424598293065], [-118.55409301033163, 33.43392099809304], [-118.5543500203579, 33.433272975064845], [-118.55471299111949, 33.4330590017226], [-118.5554079967379, 33.433419973225156], [-118.55651100906125, 33.43298097800326], [-118.55766300323408, 33.43328902175026], [-118.55998598454157, 33.433236988399926], [-118.56061801349654, 33.433779997710154], [-118.56284697701153, 33.43432900479789], [-118.56370497486365, 33.4340210136631], [-118.56370497486365, 33.43438698331351], [-118.5642129971385, 33.4352970145158], [-118.56426897639513, 33.43589200456422], [-118.56451299123675, 33.43629901163955], [-118.56444501642518, 33.437006012813015], [-118.56472001978399, 33.437267021357535], [-118.56532800501677, 33.43749099099555], [-118.56783302413216, 33.437852015109996], [-118.56935498647374, 33.43871601073965], [-118.57124602257859, 33.439231977439206], [-118.57187899855093, 33.43877698814406], [-118.57265497416537, 33.43875599592291], [-118.57301799753913, 33.43920098892223], [-118.57412700764002, 33.4398280197292], [-118.5744839806242, 33.4406690238784], [-118.57418898467391, 33.44150497726763], [-118.57415799615694, 33.4427909744163], [-118.57150897777016, 33.444321986036016], [-118.5718470104044, 33.44468800829851], [-118.57285500530553, 33.444850000902534], [-118.57316199681074, 33.44514299759367], [-118.57321197828978, 33.44578602247395], [-118.57268501566499, 33.4463900091885], [-118.57317199310663, 33.446542005496774], [-118.57305298457449, 33.44755699780505], [-118.57432598653841, 33.447954008584446], [-118.57493002586531, 33.44785599227359], [-118.57538801404901, 33.44812699711389], [-118.57599400002296, 33.44823301046147], [-118.57688598528058, 33.4480119871002], [-118.57740800236984, 33.44752500965847], [-118.57771599350448, 33.44765001596802], [-118.57803498056472, 33.44865001383254], [-118.57845798171326, 33.449053022389464], [-118.57889197878728, 33.449155984236285], [-118.57911899992605, 33.44986898318722], [-118.57950601440972, 33.450162979507915], [-118.57951101255766, 33.45035101509299], [-118.58003897481208, 33.45060597324813], [-118.58086698377669, 33.45059697658181], [-118.58095500379198, 33.451149982187864], [-118.58074197746721, 33.45146202445305], [-118.58083199674135, 33.45235001119251], [-118.58176401979462, 33.45264800603158], [-118.58213898611118, 33.45293400531549], [-118.58255698911196, 33.45278600752557], [-118.58272797838221, 33.453090000142026], [-118.58320501214001, 33.45317202237962], [-118.58334401326378, 33.45356798091752], [-118.58318302028937, 33.45417202024419], [-118.58352999697776, 33.454719975090384], [-118.58467099522521, 33.45486597362094], [-118.58470198374218, 33.45558802185026], [-118.58493800154714, 33.455895013355395], [-118.58498698339665, 33.45654598266039], [-118.58639498796603, 33.45827297428994], [-118.58650899835014, 33.459010016962715], [-118.58706600247459, 33.45950099292279], [-118.5872359921152, 33.46019799780039], [-118.58920899784562, 33.461432014210786], [-118.59110697874544, 33.46123798084808], [-118.59117400653935, 33.462002013519665], [-118.59151198656156, 33.46228701317415], [-118.59152198285743, 33.4628350206323], [-118.59182497584425, 33.46340202105244], [-118.59259400666369, 33.46413801148378], [-118.59308898114205, 33.46405698887559], [-118.59321798597, 33.464190991851424], [-118.59311502412315, 33.46500400637235], [-118.5927959844509, 33.46542001011392], [-118.59303000299673, 33.46636197685079], [-118.59356601490005, 33.46711901211519], [-118.59540001950674, 33.467846005880205], [-118.59601900066498, 33.46819798071653], [-118.59680202629872, 33.46893202450065], [-118.59884400647003, 33.46880301967285], [-118.59989098692478, 33.469545007881514], [-118.60063802589367, 33.46966601567275], [-118.60086199553166, 33.47002098939781], [-118.60126000594062, 33.470258006832495], [-118.60168000820045, 33.470745983903676], [-118.60182400747216, 33.47133597580416], [-118.60230398750659, 33.47179401660013], [-118.60255499975541, 33.47264001889728], [-118.60211800379274, 33.47293001669957], [-118.60221102195572, 33.47346397673147], [-118.60189298191314, 33.473827999734986], [-118.60205397488745, 33.47444598126355], [-118.60318597646877, 33.475422987647775], [-118.60357698947082, 33.47551900469958], [-118.60370099615078, 33.47581999842729], [-118.60347697390067, 33.476146982524156], [-118.60383999727435, 33.476676996649786], [-118.60401398543334, 33.47685298406795], [-118.60448002326595, 33.47676701592413], [-118.60465501105466, 33.47688702408573], [-118.60530498072985, 33.47777501082529], [-118.60537800630125, 33.47839299235395], [-118.60586098522462, 33.47850800236776], [-118.60595700227644, 33.47874901832069], [-118.60573098076716, 33.47891900796138], [-118.60534801741393, 33.47866299756468], [-118.60494001070903, 33.4790129731419], [-118.60443198843403, 33.47870998015493]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Santa Catalina Island", "metadata": {"sqmi": 72.5020030275, "type": "unincorporated-area", "name": "Unincorporated Catalina Island", "slug": "unincorporated-catalina-island"}, "cases": 2.0, "population": 0.0026700130830641074, "external_id": "unincorporated-catalina-island", "slug": "unincorporated-catalina-island-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/unincorporated-catalina-island-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.74118600000018, 34.13361599912307], [-118.73835200000023, 34.13220299912307], [-118.73637200000029, 34.13073199912313], [-118.73442300000029, 34.13226999912306], [-118.72846759502661, 34.132395345385426], [-118.72846054601439, 34.13150954269168], [-118.72634135743868, 34.131521377044365], [-118.72501700000025, 34.1312139991231], [-118.7239020000002, 34.131221999123085], [-118.7239055221511, 34.128967103621584], [-118.72411632723248, 34.128958985951876], [-118.72409926147985, 34.12532999249395], [-118.72388228247476, 34.1253306210157], [-118.72389300000032, 34.1249579991232], [-118.70641900000022, 34.124980999123174], [-118.70840900000016, 34.11752199912327], [-118.71096900000033, 34.11105699912333], [-118.71131800000023, 34.10979999912332], [-118.71144000000022, 34.1089209991233], [-118.71135900000016, 34.10700699912345], [-118.7117740000003, 34.10542199912341], [-118.71173100000028, 34.10483399912343], [-118.71134300000026, 34.103911999123376], [-118.71077200000026, 34.10420399912337], [-118.71073849722522, 34.10718476072532], [-118.70669000000028, 34.10712099912333], [-118.70638300000029, 34.11426699912329], [-118.68868400000031, 34.11426799912331], [-118.68858400000026, 34.11746599912324], [-118.67693200000019, 34.11770399912323], [-118.6605280000003, 34.117070999123285], [-118.65180461149353, 34.11729987862501], [-118.65193593859836, 34.11688097829783], [-118.65182146910705, 34.11575566635144], [-118.65146285430309, 34.114683760372436], [-118.65144758303143, 34.114107753300885], [-118.65109660219858, 34.11326090918519], [-118.65208843315027, 34.112555200747195], [-118.65179846448977, 34.110583045068054], [-118.6515009000933, 34.11009477541991], [-118.65025727588143, 34.10905353298402], [-118.65024909205688, 34.1048699588269], [-118.65047076561636, 34.103854066089006], [-118.65044784350646, 34.10240069670721], [-118.64874639431241, 34.100123378770135], [-118.64830387608195, 34.10001657196739], [-118.64729677775435, 34.1003904095606], [-118.64564877241664, 34.099741932899455], [-118.64391683309516, 34.09876158617443], [-118.64296310474714, 34.097422660774484], [-118.64024694914852, 34.09648809393924], [-118.63980442089924, 34.095942606666135], [-118.63962129852507, 34.09539330342545], [-118.63912536379783, 34.09488977678234], [-118.63814876712672, 34.09446254522686], [-118.63602768459872, 34.09194872603298], [-118.63719494063305, 34.088786403434526], [-118.63740091726791, 34.087794602643704], [-118.63830117074376, 34.0860589482564], [-118.63849952330372, 34.08534561324932], [-118.6383469156412, 34.084597950247854], [-118.63773654000364, 34.084258452814105], [-118.63681336388498, 34.084418672762986], [-118.6362945470571, 34.08423175899757], [-118.63572231268239, 34.08352987407452], [-118.63488304834713, 34.08310264169285], [-118.63456257068711, 34.081553910958], [-118.63344863686878, 34.080962652306425], [-118.63337233700504, 34.08077573720824], [-118.63324259228496, 34.07890276182482], [-118.63282294305723, 34.07793003796994], [-118.63254827357694, 34.077750753549395], [-118.63072481241595, 34.07824666428433], [-118.63001525224374, 34.07788046636002], [-118.62977109216978, 34.07725105675113], [-118.62906152943776, 34.0767971220853], [-118.6289699595722, 34.076148638254324], [-118.62873343529523, 34.075812954705206], [-118.62890126977922, 34.07505766024675], [-118.62880207849116, 34.07479445195646], [-118.62855792864727, 34.07466094247816], [-118.62752030544546, 34.07468383644721], [-118.62674971154482, 34.07443589221415], [-118.62388098942748, 34.07464189955389], [-118.62320958077852, 34.074428285935895], [-118.62192015477288, 34.07327246736539], [-118.62156918105188, 34.07272316559453], [-118.62134026995768, 34.07167033412169], [-118.61966937524133, 34.07103712039528], [-118.61895982603612, 34.07112486093532], [-118.61858597268193, 34.071006610087935], [-118.61780010917708, 34.07026276632473], [-118.61766274987798, 34.069072609036645], [-118.61802895705455, 34.068523302345234], [-118.6175406415846, 34.06754295105894], [-118.61714386222472, 34.065731014081614], [-118.61645717359673, 34.06455611898255], [-118.61665553611729, 34.064247134177506], [-118.61681572461389, 34.062778507669684], [-118.61750236227648, 34.06167226556288], [-118.61754811843137, 34.06070716878385], [-118.61686906620812, 34.0598832177297], [-118.61696824468787, 34.0595856774226], [-118.61679275666508, 34.05926906604175], [-118.61621290535794, 34.05914700347119], [-118.61590008682566, 34.05890287062284], [-118.6156101497249, 34.05833831062431], [-118.61390874812719, 34.05817429504756], [-118.61341281487948, 34.05775469127182], [-118.61230652425154, 34.05775088513277], [-118.6098498053315, 34.05813236398256], [-118.60936913968361, 34.05806370442283], [-118.60706494487059, 34.05543545679007], [-118.60681315719592, 34.05495863264803], [-118.6048218142155, 34.05405840040738], [-118.60415804361593, 34.054230062818604], [-118.60331117068169, 34.05471452455955], [-118.60276946564643, 34.05455431527332], [-118.60201209870043, 34.054024585652726], [-118.59567163868823, 34.04559803151119], [-118.62545500000026, 34.04586499912413], [-118.62633137747709, 34.04562007922924], [-118.63825947313427, 34.0456325309224], [-118.63878700000025, 34.045739999124166], [-118.63951700000024, 34.04663699912396], [-118.64364881702092, 34.04665635567473], [-118.6540701976362, 34.04748572850905], [-118.6822475718327, 34.04752530189201], [-118.6873456203929, 34.045664642174], [-118.69835983548167, 34.044998393070436], [-118.69847663774374, 34.04478947686182], [-118.69897129691219, 34.044709700638975], [-118.69927013404244, 34.043622814091904], [-118.69903759103488, 34.04237951498047], [-118.69766557091971, 34.040451179321614], [-118.70101438422029, 34.039460611358905], [-118.70224973030973, 34.038760244549124], [-118.70290968044968, 34.03807398427781], [-118.703385580935, 34.03703625835646], [-118.70351067504723, 34.03615633390349], [-118.70335005192813, 34.03473733345708], [-118.70396024946446, 34.03467453187546], [-118.70937943126039, 34.034301495815676], [-118.70908600000026, 34.035679999124255], [-118.70869400000024, 34.03601499912431], [-118.70881817375007, 34.03676640614678], [-118.7109136097173, 34.03866389628701], [-118.71191470087106, 34.03926259919578], [-118.71293200000025, 34.04097399912425], [-118.71382700000025, 34.04069999912423], [-118.71451500000023, 34.042022999124256], [-118.71537800000023, 34.04143899912431], [-118.71512500000024, 34.04111199912423], [-118.71550100000039, 34.041359999124175], [-118.71590600000016, 34.041033999124174], [-118.7155190000003, 34.03931899912427], [-118.71601500000025, 34.03861899912426], [-118.71522353822328, 34.037515056512426], [-118.71570244844193, 34.03693337564995], [-118.71510920757949, 34.03604573450447], [-118.71417619873569, 34.03542728269739], [-118.71439600000026, 34.035405999124265], [-118.71802300000013, 34.03708299912417], [-118.7183906282378, 34.03922168600848], [-118.71833806742893, 34.040347138173146], [-118.7193128327079, 34.04218739173226], [-118.71958888341723, 34.04371365135578], [-118.72058400000023, 34.043734999124204], [-118.73345100000031, 34.04289399912421], [-118.74029500000029, 34.04290599912415], [-118.74159500199342, 34.04276907460502], [-118.74867934743578, 34.04267237002942], [-118.7557940000003, 34.0427379991242], [-118.78022307642809, 34.04223617181106], [-118.79070524289925, 34.03920611996027], [-118.79462000000025, 34.038336999124176], [-118.79424257244469, 34.03812571949048], [-118.79413799052085, 34.037391840273635], [-118.79316938215261, 34.03663278429422], [-118.79322280133431, 34.036269657232765], [-118.79958032122724, 34.03746569303747], [-118.7992728450805, 34.03780716626862], [-118.79838900000036, 34.037629999124235], [-118.79783400000034, 34.03826399912417], [-118.7981764031123, 34.038305058169755], [-118.798114925973, 34.03840909376656], [-118.81842878835815, 34.03993786523514], [-118.84613659253725, 34.04447555463992], [-118.8588750307123, 34.048549685105826], [-118.8593127280271, 34.04672228521411], [-118.86068245181532, 34.04767148327074], [-118.8611802546422, 34.04576851371293], [-118.86157174386757, 34.0456718803083], [-118.8615655661241, 34.04284410658416], [-118.86927576759224, 34.04283307171072], [-118.8692190000003, 34.04871299912403], [-118.8697120830481, 34.04873930588039], [-118.86971544875112, 34.04913058792276], [-118.86993378001306, 34.049130219734735], [-118.86981800000014, 34.05182999912407], [-118.8705862552878, 34.05206845124183], [-118.8705877894078, 34.05230408041802], [-118.91769600000019, 34.067374999123835], [-118.91845400000024, 34.06524199912385], [-118.91977600000013, 34.063102999123885], [-118.91973900000029, 34.055980999124024], [-118.92408300000028, 34.04691299912412], [-118.92377428960246, 34.04565333661199], [-118.92582799805568, 34.04607300278884], [-118.93074501812309, 34.04581399350351], [-118.9325299882683, 34.04536600161545], [-118.93406000025865, 34.043884024457135], [-118.9361900004453, 34.043586976635545], [-118.9369479827273, 34.043317024036924], [-118.93756401760882, 34.04337600218209], [-118.94486418867146, 34.04553445340273], [-118.94328100000027, 34.05770299912412], [-118.94196900000034, 34.065622999123775], [-118.94080100000023, 34.07496699912387], [-118.92160200000045, 34.08686999912359], [-118.92088100000035, 34.08781399912363], [-118.9073160000004, 34.09623699912346], [-118.89580800000026, 34.10333399912339], [-118.89222400000024, 34.1050939991234], [-118.87366100000027, 34.11706099912325], [-118.85658000000026, 34.1271549991232], [-118.85615500000027, 34.126135999123164], [-118.85616100000018, 34.12540899912313], [-118.85573100000029, 34.12461199912318], [-118.85619100000025, 34.123549999123185], [-118.85488100000026, 34.12253499912321], [-118.85463000000028, 34.12173999912312], [-118.85324067874598, 34.120969663395584], [-118.85253200000024, 34.11999099912328], [-118.85198933483589, 34.1198863634804], [-118.85106893366437, 34.11876794179958], [-118.85079504737296, 34.117841167804315], [-118.85098406187677, 34.1175126394916], [-118.8507281350947, 34.117107135558086], [-118.85068750480865, 34.116666372141495], [-118.85115323884885, 34.116449878921976], [-118.85132000000026, 34.11614999912329], [-118.85171300000023, 34.11610599912326], [-118.85204542966189, 34.11581999871595], [-118.8520920000002, 34.115092999123306], [-118.85305498241821, 34.11472649280289], [-118.85288100000037, 34.1142539991233], [-118.85234255036691, 34.114198040460735], [-118.85207000000024, 34.11395499912334], [-118.85199971563408, 34.113137011638194], [-118.85367729857765, 34.112901215546344], [-118.85394821517528, 34.112578828633346], [-118.85392100000037, 34.11180099912327], [-118.85294200000025, 34.111399999123336], [-118.85285000000017, 34.11119499912331], [-118.8476710000002, 34.11018699912344], [-118.83622500000027, 34.11702999912325], [-118.80481900000022, 34.13388999912308], [-118.80035900000026, 34.13837899912304], [-118.78703700000024, 34.134352999122974], [-118.77146900000021, 34.133451999123096], [-118.75938900000018, 34.13918899912296], [-118.75597600000025, 34.140989999123036], [-118.74118600000018, 34.13361599912307]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Santa Monica Mountains", "metadata": {"sqmi": 89.2560828786, "type": "unincorporated-area", "name": "Unincorporated Santa Monica Mountains", "slug": "unincorporated-santa-monica-mountains"}, "cases": 14.0, "population": 0.18621973929236496, "external_id": "unincorporated-santa-monica-mountains", "slug": "unincorporated-santa-monica-mountains-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/unincorporated-santa-monica-mountains-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.67769005840617, 34.471812131816804], [-118.67769709755888, 34.470736837946326], [-118.67121214067002, 34.47080969741618], [-118.67122898334952, 34.468997581421846], [-118.66906852215399, 34.46901998060905], [-118.66908699583473, 34.4672068939763], [-118.67340568136001, 34.46716388226601], [-118.67253142135397, 34.46005280788178], [-118.65947649225009, 34.46010076905189], [-118.65888752891233, 34.45604677024565], [-118.6582321916466, 34.45635839448702], [-118.658035865673, 34.456672774781765], [-118.65796504908788, 34.45709380822153], [-118.65820351348903, 34.45742229082788], [-118.65773543574215, 34.45765873020154], [-118.65763712029666, 34.4584458508854], [-118.65701820792802, 34.45927742165834], [-118.65708843407708, 34.46007956657431], [-118.6497463011086, 34.460023006837034], [-118.6497416093069, 34.459430144268595], [-118.64887010805842, 34.459456488529355], [-118.64748039561744, 34.459071236284686], [-118.64534579344603, 34.45817678831018], [-118.64527559644658, 34.45803135810372], [-118.64262106997685, 34.457278284802626], [-118.63846569097105, 34.45735789806663], [-118.63697477858794, 34.45708729610944], [-118.6351936768922, 34.4563211399446], [-118.63142387062719, 34.45329295298414], [-118.62987291448665, 34.452493927782605], [-118.62572056332134, 34.451162510574775], [-118.6241886215053, 34.45278586839911], [-118.62378862424988, 34.452231250850936], [-118.62355410607178, 34.448343161475805], [-118.62140745718331, 34.44693634011492], [-118.61883020615502, 34.447680343867454], [-118.61870552933654, 34.449061194186086], [-118.61785542506973, 34.44999071689171], [-118.61687539853617, 34.45148357711035], [-118.61335209725377, 34.44962024968175], [-118.61345287894437, 34.44957175119676], [-118.61118210732415, 34.44664117377067], [-118.60925496542136, 34.44506263072438], [-118.59905031345231, 34.43973044936529], [-118.5967892926463, 34.43824641261362], [-118.58800913529728, 34.430823932087016], [-118.58663444802079, 34.42916706976651], [-118.5852204656334, 34.426539097056576], [-118.58495210234206, 34.426690050837], [-118.57923800010832, 34.41563699978302], [-118.57784499979435, 34.412002999847765], [-118.57647899986033, 34.40909599983182], [-118.57653199981745, 34.40825699992519], [-118.57319026642968, 34.4007401103347], [-118.57267658021463, 34.399317064900316], [-118.57001975471549, 34.388446852154544], [-118.56681020934212, 34.38050946522586], [-118.56006831113983, 34.3698287927797], [-118.55663809530321, 34.3653157143702], [-118.5558460647132, 34.36381795375532], [-118.55535275119608, 34.36235547238813], [-118.55641999986082, 34.3609859997828], [-118.55659200020979, 34.359219999904994], [-118.55914000004384, 34.359325000090244], [-118.55907099998906, 34.358791000000416], [-118.55976899989348, 34.35837799986455], [-118.55974499984458, 34.35756199993576], [-118.56000100025008, 34.35758299987633], [-118.55989699997083, 34.35822400018284], [-118.56021999986018, 34.35920899999651], [-118.56101899985104, 34.35882800003844], [-118.56158099998069, 34.35906199992584], [-118.5616950000943, 34.359375999837056], [-118.56200600000795, 34.3593849998381], [-118.56200800011014, 34.359136999853], [-118.56237799976296, 34.35898599995394], [-118.56383600006686, 34.35891299988344], [-118.56418900002586, 34.358958999997505], [-118.5648579997817, 34.35943299992608], [-118.56541000019676, 34.35940400003858], [-118.56610499994046, 34.35898699979991], [-118.56611600001592, 34.358164999885716], [-118.56673300021627, 34.357739999950795], [-118.56639599983933, 34.3571790001825], [-118.56607299981846, 34.356955000173905], [-118.56560899996695, 34.356902000161284], [-118.56363700008541, 34.35708899995978], [-118.56281400013707, 34.35739100018777], [-118.5620119997577, 34.35728399997037], [-118.5620420000428, 34.35641599983828], [-118.56171699992184, 34.35601299992802], [-118.56072599974091, 34.35581700008998], [-118.56022299982719, 34.35590200016805], [-118.55966600014536, 34.355482000157494], [-118.55922800007772, 34.35587900007964], [-118.55832100022431, 34.356164000137426], [-118.55776399981886, 34.357385000102944], [-118.55688399991652, 34.357701999871566], [-118.55623100008437, 34.358302999899394], [-118.55511899974067, 34.35860800010255], [-118.55506000005806, 34.35843600013377], [-118.5553059998221, 34.358164999857415], [-118.55703199991451, 34.35726100021349], [-118.55773299989596, 34.357064000106654], [-118.55808700012354, 34.35616299997085], [-118.55605000005409, 34.35624200016023], [-118.55428399999474, 34.35677200004702], [-118.55418899995632, 34.35681599985265], [-118.55485900018904, 34.35828400011734], [-118.55500200024325, 34.359278999869325], [-118.55550300005055, 34.36075099987719], [-118.55553400019046, 34.36165499998423], [-118.55523642906202, 34.36197902170152], [-118.55445160998187, 34.359674673855935], [-118.55364278343347, 34.35812786604775], [-118.55180506824384, 34.356174330178455], [-118.55150389046814, 34.35617157556092], [-118.54814518371678, 34.353130295692814], [-118.54707443640844, 34.35234302042537], [-118.54535349717447, 34.35146396106571], [-118.54287678763204, 34.35054996809143], [-118.54140800021919, 34.3506439997871], [-118.53404200023698, 34.35358900013423], [-118.5333899998765, 34.353100999889996], [-118.53341199999835, 34.352405999978515], [-118.53149800002666, 34.35244900005076], [-118.52903500019828, 34.35175000002553], [-118.52326000002303, 34.35174499985094], [-118.52027599979148, 34.35060899980467], [-118.52036000015693, 34.34692900006684], [-118.51602700010986, 34.34697099979392], [-118.51605300025183, 34.34394200000271], [-118.5108009997406, 34.3440380001975], [-118.51062099995542, 34.340500000069525], [-118.50650700007397, 34.3404980000408], [-118.50611356963583, 34.34109589797693], [-118.5040379731292, 34.33713365225268], [-118.5340110001177, 34.31453100018313], [-118.54629599982074, 34.31733199982492], [-118.5455109999159, 34.315658000051705], [-118.54709700021512, 34.31335100005215], [-118.54367199982556, 34.30571499989224], [-118.54429599975566, 34.30393999988093], [-118.54333499977459, 34.303257999858694], [-118.5425930001024, 34.30136100009292], [-118.54155699980896, 34.30021999984168], [-118.54082100023231, 34.29881399977428], [-118.54670100003631, 34.29786700010849], [-118.54980399981245, 34.29696700010314], [-118.5540340001051, 34.29641400019858], [-118.55442999982746, 34.296567000185924], [-118.55479200008057, 34.29712400013301], [-118.55739099993525, 34.29924300016086], [-118.55976699997065, 34.29919200020623], [-118.56209599987638, 34.29879000000136], [-118.56354999988993, 34.29784700000487], [-118.56446699986077, 34.296888000089815], [-118.56608700004055, 34.29581800009554], [-118.56636700008328, 34.29542699981592], [-118.56742000026672, 34.294953000060936], [-118.56774099986009, 34.295074000144844], [-118.56870800014717, 34.29463900018276], [-118.57014599990377, 34.29535500003947], [-118.57015900015871, 34.29580399992249], [-118.57101699998088, 34.29693099991339], [-118.57157899989622, 34.297950000203905], [-118.57176199992774, 34.29861900010883], [-118.58509099992004, 34.30347800007801], [-118.58687799990349, 34.30314999982445], [-118.58853300000136, 34.30321900002337], [-118.5909380001944, 34.29766999998286], [-118.59118000012289, 34.29179700014702], [-118.59163599984971, 34.287704000105634], [-118.59196700022083, 34.28685400018881], [-118.59176399992984, 34.2855730001037], [-118.5912720002527, 34.28383399987485], [-118.59108600000245, 34.28364099988801], [-118.59101399979673, 34.28243699997261], [-118.59217000012943, 34.28235700004404], [-118.59190899992932, 34.280627000114116], [-118.59169900025283, 34.28022999978571], [-118.59199700016843, 34.2791850001628], [-118.59257199980449, 34.27803700012582], [-118.5937230000748, 34.277184000009036], [-118.5962079999326, 34.27452100011493], [-118.60433900013648, 34.277522999796], [-118.60598400014099, 34.27778299999263], [-118.607336000235, 34.27774399977656], [-118.62257099974596, 34.27564200018093], [-118.62521199988592, 34.27503300019452], [-118.62686299999669, 34.274379000077396], [-118.62874600009441, 34.27330400019379], [-118.6332486404083, 34.269683057913596], [-118.63229897780455, 34.2635669886004], [-118.63251000497885, 34.25826900466276], [-118.6325392746312, 34.24202837666157], [-118.63264899947872, 34.24838700008421], [-118.63254800023445, 34.2634290004012], [-118.63377400011827, 34.27222599976658], [-118.63676199967256, 34.28464099976251], [-118.63660200012845, 34.29172900039639], [-118.64750499986658, 34.31424300016305], [-118.66872900042736, 34.35723099985926], [-118.6930350004522, 34.407292000284464], [-118.70388299951138, 34.42997900044146], [-118.72956297831763, 34.481221980989865], [-118.68655032665633, 34.481659396482286], [-118.68599310462095, 34.481452058241345], [-118.68604084918779, 34.474466572816844], [-118.67768361164319, 34.47435823979188], [-118.67769005840617, 34.471812131816804]], [[-118.67829911778722, 34.45295937836254], [-118.68083991827872, 34.45295776212812], [-118.68079463119997, 34.45202369906569], [-118.68271528812286, 34.451448129482614], [-118.68271567695221, 34.44932696016794], [-118.68121851037807, 34.44922265589204], [-118.67951488614187, 34.4495241744022], [-118.67609206073406, 34.44890380137217], [-118.67609868079846, 34.44566639693035], [-118.66206063650996, 34.445585008682514], [-118.66160654269336, 34.445283978633256], [-118.65853180514134, 34.44480578087219], [-118.65861862080752, 34.438252429127466], [-118.65423014468277, 34.43823918716408], [-118.65415756594949, 34.4438239573023], [-118.65134300507385, 34.4430536383674], [-118.65082117269853, 34.4443065161404], [-118.65089604459322, 34.4445920890588], [-118.64971690058829, 34.44457312806469], [-118.64957927077133, 34.444937358616784], [-118.64881464141808, 34.44453561178491], [-118.648592084042, 34.4453370734509], [-118.64966945099022, 34.44563797611692], [-118.64914169238503, 34.44642101326292], [-118.64951709253738, 34.44658489515767], [-118.64887164648471, 34.44760730006416], [-118.65103054959843, 34.4484109284871], [-118.65182239116209, 34.448172637835725], [-118.65192616657747, 34.448429256847184], [-118.65557880453207, 34.448060271720536], [-118.65593425645831, 34.44646094054721], [-118.65755168636365, 34.44661789206367], [-118.6569590249441, 34.44854395795133], [-118.65848189692795, 34.44859082590281], [-118.65842504843839, 34.452870393386235], [-118.6672509713959, 34.45290354687472], [-118.66728046262169, 34.449261115501635], [-118.67083792399356, 34.44926977524144], [-118.67522867312739, 34.44931906469148], [-118.67521545492806, 34.45159550585117], [-118.67607788493682, 34.451598617369896], [-118.67606930129506, 34.45296418381609], [-118.67829911778722, 34.45295937836254]], [[-118.59693929693111, 34.40732694623283], [-118.59757938049118, 34.406893801978114], [-118.59277127796817, 34.40404968726333], [-118.5925671685505, 34.404099824179056], [-118.59223464267981, 34.403440131120256], [-118.59170096520964, 34.4035787623357], [-118.59150831785676, 34.403297597531186], [-118.58816713888662, 34.4013065331524], [-118.58543796455992, 34.396797460571285], [-118.58655672122251, 34.39632831835698], [-118.58684024050048, 34.396632705215765], [-118.58758289913791, 34.396416860724585], [-118.58805840993517, 34.39663433337033], [-118.58808185272133, 34.39643782700395], [-118.58846465891253, 34.39614579162974], [-118.58885224593665, 34.39607078783417], [-118.58959921811604, 34.396447055958205], [-118.59037590546109, 34.3962393825358], [-118.59038497615435, 34.39649497587777], [-118.59057111065142, 34.39621875673348], [-118.59111899631309, 34.396160882105335], [-118.59141339437832, 34.396230342021624], [-118.59203317908243, 34.396755217948574], [-118.59349848997391, 34.39572448774438], [-118.59396830608938, 34.39598318363951], [-118.59515854961545, 34.394953725241734], [-118.59637699612414, 34.39609020769107], [-118.59711952907213, 34.3956412907726], [-118.59727935904745, 34.395816719149394], [-118.59805905913814, 34.39601388476887], [-118.59812891510316, 34.39632452078975], [-118.59906997072294, 34.39609861427826], [-118.59960506530395, 34.39622193294096], [-118.5996235490632, 34.39588827369815], [-118.60001519172971, 34.395650785982944], [-118.5997868279493, 34.3953195839316], [-118.60034774635442, 34.394528021862804], [-118.60168005927719, 34.3937914087659], [-118.60311705078172, 34.39372620680847], [-118.60391162469237, 34.393414898195545], [-118.60465509843428, 34.39298771329362], [-118.60513405198799, 34.391948519309125], [-118.6056451700131, 34.392060959265216], [-118.60556355179186, 34.39007130541364], [-118.60496202861597, 34.3901399548726], [-118.60443746858677, 34.39064667480912], [-118.60379796315794, 34.390188514501425], [-118.60433024186274, 34.389760789203244], [-118.60408040105709, 34.38962670004276], [-118.60422459160327, 34.38885428725227], [-118.60453385262885, 34.38838375959519], [-118.60435114806654, 34.38799534733238], [-118.60407430286658, 34.38823224955621], [-118.60383383792548, 34.388179204244416], [-118.60356795601975, 34.38795311126835], [-118.60362746935837, 34.38737872165113], [-118.60257421495716, 34.38734667205836], [-118.6009088625023, 34.38476058254837], [-118.6004427608482, 34.3850528062326], [-118.59931981863544, 34.38440621891182], [-118.597287433113, 34.38428160120184], [-118.59607294727908, 34.38397761441486], [-118.5943312982324, 34.382743396605676], [-118.59399336516556, 34.38280940843556], [-118.59388174224344, 34.382610429515566], [-118.5936789564591, 34.38294881048333], [-118.59335848577409, 34.38273516404509], [-118.59308681198556, 34.382764604339165], [-118.59239929453214, 34.383528806016926], [-118.59140195618227, 34.38292880607321], [-118.59019247816167, 34.3826334188853], [-118.5901811387616, 34.3816922063345], [-118.58915902358783, 34.38180148789867], [-118.58911212934991, 34.38163810570622], [-118.58849913563132, 34.38191067995502], [-118.58809365783792, 34.381531265444295], [-118.58747908192608, 34.38133526930874], [-118.58758917037221, 34.38104637034685], [-118.58660379285523, 34.3801306487183], [-118.5855363673524, 34.38003938530297], [-118.5854654407727, 34.379312796443585], [-118.5850239961181, 34.379646132388345], [-118.5841471691019, 34.37950532663797], [-118.58383754681991, 34.379611086475194], [-118.5834721362097, 34.379097999508566], [-118.58614084478728, 34.37754328918782], [-118.58816034206839, 34.3769429557067], [-118.59015816185685, 34.37687499076305], [-118.59154647644138, 34.37710784176537], [-118.59281460785274, 34.377533810704584], [-118.59404745169368, 34.377503539717395], [-118.5939604143744, 34.37062031933152], [-118.59241084948545, 34.37044893042398], [-118.59215897500728, 34.37180422067193], [-118.5916622339331, 34.371910736497334], [-118.59128399059925, 34.37219817272987], [-118.59068816557973, 34.37398941532468], [-118.58994466011755, 34.37460895169922], [-118.58947381299234, 34.374213647465524], [-118.58856014269273, 34.374217784809126], [-118.58816890653166, 34.373706649189415], [-118.58840151446823, 34.37338754364328], [-118.58840941964287, 34.37299983658319], [-118.58782086196695, 34.37289656145893], [-118.58767692946387, 34.37273246725615], [-118.58681560327905, 34.37265573085145], [-118.58648375086962, 34.37315254414623], [-118.58589474594807, 34.37323170337038], [-118.58537154620322, 34.37399498029928], [-118.5845061460102, 34.37351887649931], [-118.58413534514904, 34.373666880437696], [-118.58372342583993, 34.37309238061972], [-118.5831701800443, 34.373769984748556], [-118.58270726304717, 34.37407720069725], [-118.58265533351717, 34.37444250906372], [-118.58287503563368, 34.3745414826133], [-118.58286337586506, 34.37458228477405], [-118.5821473313626, 34.37453991807236], [-118.58214006211585, 34.3746710552355], [-118.58276603668905, 34.37506520220569], [-118.5827413972625, 34.37540422025173], [-118.5819341025249, 34.37538954988912], [-118.58192549946408, 34.37573802547544], [-118.58109862402358, 34.37595283818546], [-118.58118477558315, 34.37880587635719], [-118.5754542264437, 34.37896544408339], [-118.57534972715082, 34.37688206627295], [-118.575026427, 34.37681951952062], [-118.57487841983924, 34.37575370398049], [-118.5750221244258, 34.375004686009206], [-118.57436259915221, 34.37446883846797], [-118.57251693833514, 34.37500401251801], [-118.57251087905304, 34.37457542300561], [-118.57213891189532, 34.37450897657681], [-118.57208402379509, 34.37431984966777], [-118.57055158570311, 34.37467811670347], [-118.57031798194765, 34.37438867974892], [-118.57103748130778, 34.37394491397086], [-118.57050012748834, 34.373173825764624], [-118.57062342424524, 34.37282742220753], [-118.57042216467035, 34.37254201003773], [-118.57117761625702, 34.37192097167708], [-118.57021717456256, 34.37182252910403], [-118.56940867388354, 34.37214005784952], [-118.5689806441693, 34.3719471588509], [-118.56880199221177, 34.37204505270758], [-118.56851480536218, 34.37155513007825], [-118.56823609297281, 34.37142788967259], [-118.56765304670593, 34.37176060431892], [-118.56655454547973, 34.37120850879258], [-118.56596626634351, 34.371157425761275], [-118.56582224746795, 34.371207147340975], [-118.56585450776225, 34.37151209730974], [-118.56562512009725, 34.371527621363285], [-118.56537081620435, 34.3713143616326], [-118.5645302519005, 34.37135243484022], [-118.563812377232, 34.37087706370543], [-118.56353238788049, 34.370883092419625], [-118.56321588225794, 34.371414331582045], [-118.56211392352155, 34.37142991602496], [-118.56214729457609, 34.37183771499605], [-118.56280775205538, 34.372516569942725], [-118.56261930884287, 34.37298675908838], [-118.56279068667354, 34.37325297754543], [-118.56388698872723, 34.372735728202784], [-118.56426114680836, 34.37293700256964], [-118.56434635753075, 34.373192380384296], [-118.56525207315751, 34.37326348073502], [-118.56564700271065, 34.37408293192474], [-118.56553945698154, 34.374438957398354], [-118.56601981915371, 34.37468534615646], [-118.56666877453239, 34.37573610798786], [-118.56838687872, 34.37742442743992], [-118.5680180540356, 34.377844827351126], [-118.56967401723135, 34.378407823917726], [-118.57056237832155, 34.379139809732685], [-118.57093185944511, 34.379900008827875], [-118.57099668498373, 34.38094453848615], [-118.57344727524999, 34.38158279667084], [-118.5755824287125, 34.3816716642757], [-118.57554517541223, 34.38268548117162], [-118.57493979889975, 34.3834835968289], [-118.57398489895425, 34.38396441553702], [-118.57189183179464, 34.3844900061649], [-118.57453298798063, 34.39311871090774], [-118.5748583404144, 34.39351281187567], [-118.57513928500266, 34.39426338811817], [-118.57525960876411, 34.395112358177066], [-118.5751704372149, 34.39778720442472], [-118.57637287143226, 34.4004524552155], [-118.57687820197141, 34.402832647253945], [-118.57752012028281, 34.40395988567252], [-118.57931545915318, 34.405816900059726], [-118.57985368563646, 34.406891105732754], [-118.57999310593652, 34.40830584241144], [-118.57912872369486, 34.41179073784634], [-118.57913147314474, 34.41296844708614], [-118.5801302953008, 34.41555650896936], [-118.58176145572929, 34.417752044317716], [-118.59693929693111, 34.40732694623283]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Santa Susana Mountains", "metadata": {"sqmi": 78.1078688818, "type": "unincorporated-area", "name": "Unincorporated Santa Susana Mountains", "slug": "unincorporated-santa-susana-mountains"}, "cases": 4.0, "population": 0.016580310880829015, "external_id": "unincorporated-santa-susana-mountains", "slug": "unincorporated-santa-susana-mountains-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/unincorporated-santa-susana-mountains-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.34716785131948, 34.14217699741412], [-118.34642500000027, 34.14220699912299], [-118.34517238806596, 34.14254730532228], [-118.34503800000033, 34.14244599912284], [-118.3432300000003, 34.13821399912305], [-118.34402800000034, 34.13784899912298], [-118.34442400000025, 34.13680099912304], [-118.3442130000002, 34.13606099912301], [-118.34557600000035, 34.1351089991229], [-118.3458610000003, 34.134676999123016], [-118.34656400000028, 34.13464599912302], [-118.34648900000022, 34.134350999123136], [-118.34671700000023, 34.134192999123115], [-118.34671400000029, 34.13389099912293], [-118.34777400000029, 34.1334649991231], [-118.34746200000022, 34.13314399912311], [-118.34845300000032, 34.132884999122965], [-118.34865700000029, 34.13246399912304], [-118.34840500000026, 34.131987999123005], [-118.34877500000024, 34.131385999123026], [-118.34978700000033, 34.1325359991231], [-118.35068900000036, 34.13318799912318], [-118.35159200000027, 34.134109999122956], [-118.35213600000026, 34.13415899912305], [-118.35860500000031, 34.13949599912293], [-118.36184900000029, 34.138591999123065], [-118.36234200000023, 34.13869599912302], [-118.36095800000032, 34.14113599912307], [-118.36091500000026, 34.14203799912293], [-118.36126700000028, 34.14268599912305], [-118.35764100000031, 34.14333699912293], [-118.35416000000032, 34.14321099912288], [-118.35205100000024, 34.14296399912295], [-118.34843500000028, 34.14226199912308], [-118.34716785131948, 34.14217699741412]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Universal City", "metadata": {"sqmi": 0.48037127178, "type": "unincorporated-area", "name": "Universal City", "slug": "universal-city"}, "cases": null, "population": null, "external_id": "universal-city", "slug": "universal-city-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/universal-city-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.282819, 34.01841599912447], [-118.291502, 34.01841599912441], [-118.291508, 34.03681199912407], [-118.28400800000016, 34.03691199912411], [-118.27930700000012, 34.03781199912416], [-118.27410700000011, 34.03541199912403], [-118.274307, 34.02811199912418], [-118.274607, 34.02651199912422], [-118.279743, 34.01846799912429], [-118.282819, 34.01841599912447]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "University Park", "metadata": {"sqmi": 1.16714354652, "type": "segment-of-a-city", "name": "University Park", "slug": "university-park"}, "cases": 84.0, "population": 0.2745636399293979, "external_id": "university-park", "slug": "university-park-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/university-park-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.93941598571331, 34.05213500435225], [-117.93944798578822, 34.05079400077538], [-117.93818798578016, 34.0507890041078], [-117.93818998579297, 34.05049300075152], [-117.93360499281195, 34.05045300443737], [-117.93359399286588, 34.05081900335977], [-117.93428098580216, 34.0508260007028], [-117.93427598580224, 34.05125100026492], [-117.92991998582403, 34.051380003865084], [-117.92989398576782, 34.05041200413366], [-117.93344498580056, 34.05045099984289], [-117.93345298578731, 34.04866300076235], [-117.92932298570145, 34.048656002907066], [-117.92562999300543, 34.04889800254224], [-117.92553998578234, 34.05210000037397], [-117.9208559857804, 34.05221200405293], [-117.92096598581969, 34.05091800060256], [-117.91684398557506, 34.05080900331497], [-117.91270098584839, 34.05108900358735], [-117.91268998578163, 34.05026200401947], [-117.91466798581517, 34.050269999740884], [-117.9146889715426, 34.048911005720925], [-117.91489698576022, 34.04883200003931], [-117.91489398579395, 34.048072000682694], [-117.91410898574897, 34.04806200416116], [-117.91413798552752, 34.04733200171143], [-117.91536198573833, 34.047323999810644], [-117.91534998390928, 34.04686000001106], [-117.91580798769351, 34.046506005142554], [-117.91939998588164, 34.045828001969156], [-117.91979597155107, 34.04489500571686], [-117.92028498718749, 34.04446600466566], [-117.92283698588525, 34.04407999904313], [-117.92278997155583, 34.04286300571498], [-117.92231600000018, 34.04204399912414], [-117.92423899280143, 34.04404400357698], [-117.92567898590629, 34.04412899916352], [-117.92579697156017, 34.0426280057153], [-117.92652697156186, 34.040535005712805], [-117.92661797156242, 34.03904500571089], [-117.92623197156267, 34.037137005708416], [-117.92630398590505, 34.035716000352075], [-117.92010498611388, 34.0352850017636], [-117.91890497155322, 34.03497100570399], [-117.91753997155165, 34.03423400570267], [-117.91500997154911, 34.03092300569772], [-117.9156819715506, 34.0295660056962], [-117.91758899040175, 34.024680004666656], [-117.92277598567365, 34.025222002042824], [-117.93240598570979, 34.02782800314707], [-117.93551598585613, 34.028006000519575], [-117.93469500000027, 34.03359399912428], [-117.9346019929601, 34.036164002907206], [-117.94080599065167, 34.03652999944682], [-117.94031799273792, 34.04152600379228], [-117.94283298592644, 34.041670000325944], [-117.94281499272364, 34.04182700383583], [-117.94332998590748, 34.0418560003792], [-117.9433169924782, 34.04202600441958], [-117.94425898616883, 34.04213399877005], [-117.94429498552591, 34.041763005545555], [-117.94499698592433, 34.04180700033582], [-117.94499399258959, 34.04286800418001], [-117.945880986087, 34.042947999014196], [-117.9459219856464, 34.042456004983606], [-117.94687398630464, 34.0424639998634], [-117.947029985118, 34.041935005537404], [-117.94769798593043, 34.04197800032461], [-117.94734699264785, 34.04555600404362], [-117.94801498595314, 34.045606999147935], [-117.94802798581289, 34.04522800399322], [-117.94864498577782, 34.04522100085501], [-117.94890100000023, 34.04580999912413], [-117.94861300000032, 34.04623999912413], [-117.94205898774639, 34.05222499966944], [-117.93941598571331, 34.05213500435225]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Valinda", "metadata": {"sqmi": 2.00667989076, "type": "unincorporated-area", "name": "Valinda", "slug": "valinda"}, "cases": 29.0, "population": 0.2337013457974051, "external_id": "valinda", "slug": "valinda-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/valinda-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.41821400000012, 34.20530399912217], [-118.413927, 34.20449499912204], [-118.413926, 34.20469399912215], [-118.4046, 34.20285399912205], [-118.4038050000001, 34.201091999122134], [-118.403408, 34.199693999122104], [-118.40182600000014, 34.18747899912215], [-118.401504, 34.18641999912236], [-118.400999, 34.18571699912221], [-118.39705100000012, 34.181929999122275], [-118.396153, 34.18086699912234], [-118.3951700000001, 34.17930299912229], [-118.393759, 34.176096999122436], [-118.39251800000014, 34.174307999122405], [-118.39167300000013, 34.17358799912236], [-118.38881300000011, 34.17210499912248], [-118.440114, 34.172004999122436], [-118.44022100000011, 34.18659999912239], [-118.440115, 34.19390399912216], [-118.43141500000013, 34.19390399912216], [-118.43141500000013, 34.201103999122054], [-118.426792, 34.201116999122036], [-118.427515, 34.20570399912203], [-118.42731500000016, 34.20700399912202], [-118.41821400000012, 34.20530399912217]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Valley Glen", "metadata": {"sqmi": 4.80554447147, "type": "segment-of-a-city", "name": "Valley Glen", "slug": "valley-glen"}, "cases": 90.0, "population": 0.30016008537886874, "external_id": "valley-glen", "slug": "valley-glen-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/valley-glen-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.3899100000001, 34.1721059991225], [-118.38881300000011, 34.17210499912248], [-118.38687000000012, 34.17103999912247], [-118.38497, 34.16944799912243], [-118.384052, 34.16835099912248], [-118.378982, 34.15675099912264], [-118.378247, 34.15460599912273], [-118.39854600000011, 34.1546069991227], [-118.399294, 34.15471699912276], [-118.4017780000001, 34.15620399912274], [-118.403123, 34.15664099912261], [-118.413808, 34.15667699912267], [-118.413922, 34.169681999122496], [-118.4141570000001, 34.17131899912242], [-118.41404500000012, 34.171685999122396], [-118.413666, 34.17200299912243], [-118.3899100000001, 34.1721059991225]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Valley Village", "metadata": {"sqmi": 2.08539977324, "type": "segment-of-a-city", "name": "Valley Village", "slug": "valley-village"}, "cases": 114.0, "population": 0.24719734588112843, "external_id": "valley-village", "slug": "valley-village-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/valley-village-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.67606930129506, 34.45296418293553], [-118.67607788493682, 34.451598616489356], [-118.67521545492806, 34.451595504970626], [-118.67522867312739, 34.44931906381097], [-118.67083792399356, 34.44926977436092], [-118.66728046262169, 34.44926111462112], [-118.6672509713959, 34.45290354599416], [-118.65842504843839, 34.45287039250567], [-118.65848189692795, 34.4485908250223], [-118.6569590249441, 34.44854395707083], [-118.65755168636365, 34.446617891183195], [-118.65593425645831, 34.44646093966672], [-118.65557880453207, 34.44806027084005], [-118.65192616657747, 34.44842925596668], [-118.65182239116209, 34.44817263695523], [-118.65103054959843, 34.448410927606595], [-118.64887164648471, 34.44760729918367], [-118.64951709253738, 34.44658489427718], [-118.64914169238503, 34.446421012382444], [-118.64966945099022, 34.44563797523645], [-118.648592084042, 34.44533707257044], [-118.64881464141808, 34.44453561090446], [-118.64957927077133, 34.44493735773632], [-118.64971690058829, 34.44457312718423], [-118.65089604459322, 34.44459208817835], [-118.65082117269853, 34.444306515259946], [-118.65134300507385, 34.44305363748696], [-118.65415756594949, 34.44382395642184], [-118.65423014468277, 34.43823918628371], [-118.65861862080752, 34.43825242824708], [-118.65853180514134, 34.44480577999173], [-118.66160654269336, 34.445283977752794], [-118.66206063650996, 34.44558500780204], [-118.67609868079846, 34.44566639604988], [-118.67609206073406, 34.448903800491664], [-118.67951488614187, 34.44952417352169], [-118.68121851037807, 34.449222655011525], [-118.68271567695221, 34.44932695928742], [-118.68271528812286, 34.45144812860208], [-118.68079463119997, 34.45202369818515], [-118.68083991827872, 34.45295776124757], [-118.67606930129506, 34.45296418293553]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Val Verde", "metadata": {"sqmi": 0.729575618561, "type": "unincorporated-area", "name": "Val Verde", "slug": "val-verde"}, "cases": 39.0, "population": 0.03309010690649924, "external_id": "val-verde", "slug": "val-verde-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/val-verde-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.47303100000015, 34.22110599912199], [-118.467616, 34.22110299912187], [-118.4663160000001, 34.217403999121956], [-118.46611600000016, 34.21540399912202], [-118.466216, 34.214903999121866], [-118.448916, 34.21170399912189], [-118.427215, 34.20730399912194], [-118.427515, 34.20570399912203], [-118.426792, 34.201116999122036], [-118.43141500000013, 34.201103999122054], [-118.43141500000013, 34.19390399912216], [-118.440115, 34.19390399912216], [-118.44022100000011, 34.18659999912239], [-118.440114, 34.172004999122436], [-118.46761500000011, 34.1719049991225], [-118.46765300000013, 34.175204999122364], [-118.467833, 34.17641899912238], [-118.46828200000014, 34.1775929991223], [-118.46956600000016, 34.17923799912231], [-118.466115, 34.17910499912237], [-118.466216, 34.18040499912237], [-118.470116, 34.18110499912245], [-118.474716, 34.18580499912218], [-118.483716, 34.18620399912227], [-118.483716, 34.18660399912227], [-118.49034800000013, 34.18643299912223], [-118.4903170000001, 34.193803999122224], [-118.49251700000012, 34.19380399912225], [-118.49251700000012, 34.201103999122054], [-118.494717, 34.201103999122054], [-118.49461700000013, 34.20830399912203], [-118.50101700000015, 34.20830399912206], [-118.501117, 34.211903999121915], [-118.50091700000011, 34.21270399912196], [-118.5010180000001, 34.21540399912202], [-118.50091800000011, 34.22090299912183], [-118.498718, 34.22070299912187], [-118.495317, 34.220002999121945], [-118.49281600000016, 34.221088999121896], [-118.47303100000015, 34.22110599912199]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Van Nuys", "metadata": {"sqmi": 8.99090891865, "type": "segment-of-a-city", "name": "Van Nuys", "slug": "van-nuys"}, "cases": 307.0, "population": 0.9319409871896059, "external_id": "van-nuys", "slug": "van-nuys-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/van-nuys-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.45181100000016, 33.96451099912501], [-118.4535882744398, 33.963782919328175], [-118.45181753214935, 33.96451950881536], [-118.45181100000016, 33.96451099912501]]], [[[-118.45601985035636, 34.00987941955189], [-118.44435733428358, 33.99462071443707], [-118.44471300000014, 33.9943749991247], [-118.448472, 33.99335899912476], [-118.44709980248842, 33.99061682183064], [-118.447211, 33.990810999124754], [-118.447811, 33.99051099912464], [-118.4427110000001, 33.98491099912471], [-118.44172493157204, 33.98340610119114], [-118.44830198598075, 33.98466100258486], [-118.4550509822593, 33.9864160007448], [-118.46347998122062, 33.98104900637726], [-118.46197498616255, 33.979366002441445], [-118.4617999768482, 33.978275004348625], [-118.46142099552688, 33.97835699898733], [-118.45760197898144, 33.9737210075143], [-118.45747799406895, 33.97378599553219], [-118.45494198269884, 33.970400003262306], [-118.45453199079469, 33.96983899849161], [-118.45476098071725, 33.96967500853244], [-118.45302444777757, 33.96679519917484], [-118.45662002439589, 33.9649909956888], [-118.4619310037422, 33.96266701475156], [-118.46199398040572, 33.962824009207814], [-118.45965700428397, 33.9638330037385], [-118.4596320135444, 33.965803010580245], [-118.46063800918648, 33.968626017125914], [-118.46358402278287, 33.97307200121304], [-118.46789000611646, 33.97844301094603], [-118.4750289922919, 33.984029993280316], [-118.47566002161724, 33.984434001466866], [-118.47658099613291, 33.98459099592305], [-118.47738101546938, 33.98546898636687], [-118.47920602340982, 33.98805497547786], [-118.48118397467609, 33.990132994926284], [-118.48190602290533, 33.99135101726337], [-118.48396646263481, 33.99346275589131], [-118.481452, 33.993160999124704], [-118.483344, 33.995509999124735], [-118.482025, 33.99636499912467], [-118.48173700000017, 33.99644899912465], [-118.481411, 33.9963099991247], [-118.4799170000001, 33.99735299912469], [-118.457844, 34.00903699912456], [-118.457106, 34.00943399912447], [-118.45698, 34.00965599912454], [-118.45601985035636, 34.00987941955189]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Venice", "metadata": {"sqmi": 3.17076584054, "type": "segment-of-a-city", "name": "Venice", "slug": "venice"}, "cases": 57.0, "population": 0.3824399011140936, "external_id": "venice", "slug": "venice-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/venice-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.28070700000016, 33.97461399912485], [-118.280807, 33.95991399912499], [-118.2914070000001, 33.95991399912499], [-118.291419, 33.95940599912514], [-118.300207, 33.959484498530735], [-118.3003070000001, 33.96891399912489], [-118.30020700000011, 33.97451399912481], [-118.28070700000016, 33.97461399912485]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Vermont Knolls", "metadata": {"sqmi": 1.14170882157, "type": "segment-of-a-city", "name": "Vermont Knolls", "slug": "vermont-knolls"}, "cases": 60.0, "population": 0.17199862401100793, "external_id": "vermont-knolls", "slug": "vermont-knolls-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/vermont-knolls-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.280607, 33.9933139991246], [-118.28040700000011, 33.98591399912475], [-118.28080700000015, 33.979013999124824], [-118.28070700000016, 33.97461399912485], [-118.30020700000011, 33.97451399912481], [-118.30010700000012, 33.9840129991247], [-118.30030800000013, 33.99091299912464], [-118.300208, 33.99311299912467], [-118.28720700000017, 33.993112999124776], [-118.280607, 33.9933139991246]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Vermont-Slauson", "metadata": {"sqmi": 1.44245256524, "type": "segment-of-a-city", "name": "Vermont-Slauson", "slug": "vermont-slauson"}, "cases": null, "population": null, "external_id": "vermont-slauson", "slug": "vermont-slauson-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/vermont-slauson-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.2827070000001, 34.011112999124464], [-118.281107, 34.011012999124475], [-118.28120700000012, 34.005512999124456], [-118.280507, 33.99501399912465], [-118.280607, 33.9933139991246], [-118.28720700000017, 33.993112999124776], [-118.317108, 33.9930129991246], [-118.31700800000013, 34.01091199912446], [-118.290007, 34.01081299912435], [-118.2827070000001, 34.011112999124464]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Vermont Square", "metadata": {"sqmi": 2.5443801572, "type": "segment-of-a-city", "name": "Vermont Square", "slug": "vermont-square"}, "cases": 44.0, "population": 0.0765696784073507, "external_id": "vermont-square", "slug": "vermont-square-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/vermont-square-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.28260700000011, 33.9599139991251], [-118.280807, 33.95991399912499], [-118.2807070000002, 33.95661399912518], [-118.27930600000012, 33.947213999125104], [-118.27960600000013, 33.94551399912521], [-118.27980600000011, 33.94291399912524], [-118.279848, 33.93494499912537], [-118.281206, 33.92361499912545], [-118.29154756296448, 33.92350208560499], [-118.29159600000014, 33.95940964860969], [-118.291419, 33.95940599912514], [-118.2914070000001, 33.95991399912499], [-118.28260700000011, 33.9599139991251]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Vermont Vista", "metadata": {"sqmi": 1.64553261505, "type": "segment-of-a-city", "name": "Vermont Vista", "slug": "vermont-vista"}, "cases": 139.0, "population": 0.49907503536253084, "external_id": "vermont-vista", "slug": "vermont-vista-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/vermont-vista-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.21520600000011, 34.01502299912446], [-118.21269800000022, 34.01429499912442], [-118.21270100000021, 34.01498899912437], [-118.20816600000019, 34.0150059991246], [-118.20704100000019, 34.01277699912454], [-118.20534000000013, 34.012815999124484], [-118.20502600000019, 34.0126259991245], [-118.20505800000016, 34.014373999124516], [-118.20173400000017, 34.01363899912449], [-118.19230900000024, 34.01283699912447], [-118.192531, 34.01138799912436], [-118.1928230000001, 34.01147599912448], [-118.19351400000022, 34.00970699912452], [-118.19088700000013, 34.00862799912465], [-118.18641300000016, 34.007309999124566], [-118.18127300000013, 34.00555999912462], [-118.17428600000025, 34.00133699912469], [-118.17446500000031, 34.0010379991246], [-118.17287200000017, 34.00036299912461], [-118.16715600000022, 33.99862299912464], [-118.16833, 33.99602499912466], [-118.17545500000016, 33.99834699912466], [-118.17653500000016, 33.997831999124706], [-118.17676100000018, 33.99720499912472], [-118.17627500000012, 33.99590599912472], [-118.17746700000018, 33.995409999124696], [-118.17765000000021, 33.99574499912472], [-118.17805100000017, 33.995516999124625], [-118.175433, 33.9927099991246], [-118.17698600000016, 33.99085699912471], [-118.1742640000002, 33.98858599912481], [-118.172557, 33.98645899912484], [-118.17313700000018, 33.986228999124805], [-118.1739590000002, 33.98625199912477], [-118.17394100000026, 33.98674899912477], [-118.17513700000022, 33.9868449991248], [-118.17608300000025, 33.98760099912484], [-118.17811100000017, 33.9896559991248], [-118.17799200000019, 33.98993299912474], [-118.18337100000016, 33.99306599912474], [-118.18289800000022, 33.9936719991247], [-118.18430300000011, 33.994453999124765], [-118.18454600000013, 33.99380999912476], [-118.18504600000023, 33.99385399912477], [-118.18498900000013, 33.99435199912476], [-118.19386900000012, 33.99521399912473], [-118.19452500000017, 33.995332999124614], [-118.19450000000033, 33.9957389991247], [-118.2034310000002, 33.99666999912465], [-118.20466100000014, 33.99664599912468], [-118.20450200000029, 33.98894699912477], [-118.20428100000025, 33.98893399912483], [-118.20414400000011, 33.983330999124995], [-118.2126120000002, 33.98419399912497], [-118.21277200000011, 33.989815999124744], [-118.21519800000011, 33.989815999124744], [-118.21522100000026, 33.99161599912476], [-118.22360700000016, 33.99147499912481], [-118.22354800000018, 33.99305299912482], [-118.22375800000022, 33.99386299912476], [-118.22355400000012, 33.99481799912479], [-118.2234970000002, 33.99635799912478], [-118.22381200000018, 33.996354999124684], [-118.22380900000016, 33.99614599912465], [-118.2252100000002, 33.9961079991247], [-118.22520500000013, 33.99569699912477], [-118.22968700000014, 33.99569199912468], [-118.229663, 33.9903339991248], [-118.230273, 33.990342999124714], [-118.23028400000017, 33.98921399912482], [-118.23108600000019, 33.98921299912479], [-118.231092, 33.98960899912478], [-118.23304400000016, 33.989340999125005], [-118.23791800000022, 33.98939299912474], [-118.23953800000014, 34.00804699912452], [-118.239708, 34.01471299912456], [-118.22767300000012, 34.01492099912444], [-118.22750100000023, 34.01528099912446], [-118.22570700000018, 34.01531899912444], [-118.225696, 34.01493699912443], [-118.22369200000016, 34.014941999124524], [-118.22370500000018, 34.015362999124456], [-118.22339500000015, 34.01536899912445], [-118.22323200000014, 34.014940999124484], [-118.21806400000014, 34.014964999124444], [-118.21806900000011, 34.01598499912444], [-118.21520600000011, 34.01502299912446]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Vernon", "metadata": {"sqmi": 5.22380283359, "type": "standalone-city", "name": "Vernon", "slug": "vernon"}, "cases": 210.0, "population": 0.5385238649602141, "external_id": "vernon", "slug": "vernon-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/vernon-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.45993100000037, 34.059050999124096], [-118.45878100000022, 34.058072999124], [-118.4551610000003, 34.06024299912384], [-118.45962300000019, 34.065444999123834], [-118.45468100000026, 34.0667989991239], [-118.45453400000021, 34.06591899912388], [-118.45403300000032, 34.065046999123815], [-118.45012800000035, 34.06077899912396], [-118.44562400000035, 34.05529499912391], [-118.44577600000035, 34.05532999912392], [-118.44908700000028, 34.05335099912398], [-118.44831300000025, 34.05245299912401], [-118.44909500000028, 34.05199599912404], [-118.4481750000002, 34.04957799912412], [-118.45222200000033, 34.047059999124116], [-118.45424300000026, 34.04941699912413], [-118.45684100000032, 34.04802399912413], [-118.4679530000002, 34.060909999123936], [-118.46889300000025, 34.06587099912383], [-118.46673100000025, 34.06770799912386], [-118.46533600000018, 34.066988999123836], [-118.46320000000028, 34.06506599912384], [-118.46281400000034, 34.06310899912399], [-118.4611000000004, 34.060045999123886], [-118.45993100000037, 34.059050999124096]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Veterans Administration", "metadata": {"sqmi": 0.911282077501, "type": "unincorporated-area", "name": "Veterans Administration", "slug": "veterans-administration"}, "cases": null, "population": null, "external_id": "veterans-administration", "slug": "veterans-administration-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/veterans-administration-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.33380098606962, 34.00450100244285], [-118.33222098606882, 34.0031120024418], [-118.33148498606849, 34.00149200244075], [-118.33162898259425, 33.996333004692104], [-118.33728198884795, 33.99630799966517], [-118.33725398261039, 33.989474004653445], [-118.33775298891584, 33.989466000278], [-118.33775098954713, 33.98898400018706], [-118.33726498259341, 33.98898600470799], [-118.33726598260924, 33.98849100465695], [-118.34247397676423, 33.988453001434955], [-118.34248699539617, 33.98941500342031], [-118.35268098897593, 33.98933499967651], [-118.35268298261089, 33.98305900469518], [-118.36125998590585, 33.983034004046374], [-118.361506972184, 33.98504200574225], [-118.3634729721853, 33.9894990057485], [-118.3635609721842, 33.99294100575306], [-118.36415297218466, 33.99400800575455], [-118.36435197218468, 33.99488800575572], [-118.36558197218568, 33.996843005758606], [-118.36563397218558, 33.997301005759134], [-118.36537497218494, 33.9983390057604], [-118.363143972182, 33.99798400575951], [-118.35993597217794, 33.99683400575712], [-118.35936697217711, 33.996806005757094], [-118.35788797217495, 33.99711200575705], [-118.35688798608686, 33.99783400244143], [-118.3564689860862, 33.999677002442404], [-118.3559359860857, 34.000621002443054], [-118.3542739864423, 34.0018810025311], [-118.35203698817665, 34.004067001525584], [-118.35134898571737, 34.00455300218207], [-118.350515985976, 34.00486700215588], [-118.3495549862484, 34.00497800201248], [-118.34590398596922, 34.00448900269632], [-118.34167898620433, 34.004623002776626], [-118.33822898634992, 34.006301002599955], [-118.33689498561915, 34.00769100232158], [-118.33568798231377, 34.00825800203976], [-118.33523998607028, 34.00654800244434], [-118.33380098606962, 34.00450100244285]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "View Park-Windsor Hills", "metadata": {"sqmi": 1.84197484702, "type": "unincorporated-area", "name": "View Park-Windsor Hills", "slug": "view-park-windsor-hills"}, "cases": 26.0, "population": 0.1163519198066768, "external_id": "view-park-windsor-hills", "slug": "view-park-windsor-hills-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/view-park-windsor-hills-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.91882898570273, 34.11430300267614], [-117.91679598577697, 34.11430400406762], [-117.9166789715234, 34.11354000580506], [-117.91691097152467, 34.11068700580154], [-117.91774497152683, 34.10753100579761], [-117.918007985751, 34.107064000847984], [-117.91656098578426, 34.10708600255763], [-117.91654097875195, 34.10827100007278], [-117.91420398571563, 34.10821600430324], [-117.91419098567319, 34.11119900215247], [-117.91530098631512, 34.11087800471339], [-117.91645297851629, 34.11079200243435], [-117.91637597155915, 34.11430800036523], [-117.91602798572472, 34.11430100427781], [-117.91593798736065, 34.11202300471444], [-117.91222398528062, 34.11394400167585], [-117.91127598553406, 34.11426300016059], [-117.9075759855805, 34.11425300468131], [-117.90758098576606, 34.11348000408609], [-117.9111889859012, 34.11351400098343], [-117.91209598640631, 34.11314400383958], [-117.9120899864144, 34.110408999406125], [-117.90979398570333, 34.110297004334804], [-117.909714985892, 34.106848002462584], [-117.91420698584731, 34.10703499949494], [-117.91434498587127, 34.10316800041534], [-117.91139799861038, 34.10318200199751], [-117.91223498611981, 34.10286000339088], [-117.91210798514027, 34.102544001116264], [-117.91657198650815, 34.10041800395455], [-117.91656898575498, 34.09959300082914], [-117.91370398577114, 34.09960900408087], [-117.91372697152465, 34.097462005783704], [-117.91448897152601, 34.09671000578283], [-117.91456998576331, 34.09579400078793], [-117.91434398576325, 34.09579400411706], [-117.91454497152651, 34.09533300578097], [-117.91441298576383, 34.09211900411347], [-117.91657697870495, 34.09213100139603], [-117.91657498574172, 34.092985004209595], [-117.91826498385021, 34.09300899823243], [-117.9192819841308, 34.09214000496957], [-117.9235509857787, 34.09217200075192], [-117.92341599985626, 34.09292400297791], [-117.92540798575963, 34.09293599993737], [-117.92540998567513, 34.089544004452556], [-117.9272949857578, 34.089620999440534], [-117.92719498578504, 34.08646500073848], [-117.92629698576309, 34.08645900072998], [-117.92634898575534, 34.08471300495484], [-117.93432498579438, 34.0848180007222], [-117.93414200000025, 34.08668999912362], [-117.93343300018331, 34.08830700114399], [-117.93606798597159, 34.08828699979134], [-117.93614298569403, 34.08677700441823], [-117.93816398591507, 34.0868839992914], [-117.93821898564242, 34.08516900456862], [-117.94201198592332, 34.085418000329], [-117.94159598603608, 34.0900859993248], [-117.93697499907569, 34.08989600436469], [-117.93689299057513, 34.09180599767852], [-117.93592998492741, 34.0915330037888], [-117.93415899999118, 34.0915160024907], [-117.93416700002638, 34.09307600233724], [-117.93650298576591, 34.09305700084654], [-117.93650199276061, 34.09412400374625], [-117.93684598586498, 34.09413900048254], [-117.93680398586173, 34.09609699977823], [-117.93030399990602, 34.09593900316108], [-117.93020798590898, 34.09826600290268], [-117.92656098553152, 34.09937400158539], [-117.92539300016216, 34.09952800145881], [-117.92536299052647, 34.10696499949426], [-117.92133898576613, 34.107007004129265], [-117.9213209857759, 34.10859400408658], [-117.92456197860214, 34.10856300186365], [-117.9245989785915, 34.11057900052988], [-117.92096398576956, 34.11059800411386], [-117.92079198562466, 34.1138860045942], [-117.92224997180338, 34.11398100156758], [-117.92229697105492, 34.11430800098358], [-117.91882898570273, 34.11430300267614]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Vincent", "metadata": {"sqmi": 1.47902846141, "type": "unincorporated-area", "name": "Vincent", "slug": "vincent"}, "cases": null, "population": null, "external_id": "vincent", "slug": "vincent-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/vincent-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.845444, 34.063495999123894], [-117.84347300000017, 34.06033299912393], [-117.84267200000014, 34.059497999123906], [-117.84380800000018, 34.05840299912388], [-117.84085000000019, 34.057188999123916], [-117.8349400000001, 34.05846399912396], [-117.83299800000016, 34.0602629991238], [-117.82607600000021, 34.06280999912388], [-117.82490800000018, 34.06055399912386], [-117.829693, 34.058109999123864], [-117.82902100000027, 34.05695399912397], [-117.834109, 34.05461799912395], [-117.83429800000013, 34.05135599912403], [-117.83419300000018, 34.04071099912418], [-117.82889300000024, 34.04170999912414], [-117.82789300000027, 34.03891499912413], [-117.828817, 34.037100999124185], [-117.8276680000002, 34.03670399912421], [-117.82467400000023, 34.03661499912428], [-117.82503400000012, 34.03414599912427], [-117.82590100000019, 34.03262999912426], [-117.82749300000022, 34.031136999124335], [-117.83468500000016, 34.02784499912427], [-117.83597200000018, 34.026960999124285], [-117.836913, 34.02561099912449], [-117.83841000000028, 34.02190699912425], [-117.839196, 34.020921999124404], [-117.83986400000019, 34.02041099912454], [-117.84172400000014, 34.019272999124425], [-117.845778, 34.017982999124555], [-117.84745600000018, 34.01716899912447], [-117.84933600000015, 34.016020999124386], [-117.85377300000019, 34.01278499912452], [-117.85661200000017, 34.01119599912451], [-117.859372, 34.00940799912452], [-117.86919200000017, 34.00404899912461], [-117.87168500000023, 34.002999999124626], [-117.873938, 34.0045749991245], [-117.87398300000017, 34.00988699912458], [-117.87444800000031, 34.01158699912451], [-117.86939600000017, 34.011632999124494], [-117.86812100000013, 34.01591499912442], [-117.87057100000015, 34.017281999124464], [-117.87481000000015, 34.01398899912447], [-117.87887300000013, 34.0119829991245], [-117.87999300000016, 34.0134099991245], [-117.881587, 34.01300299912452], [-117.8818760000002, 34.013052999124454], [-117.882205, 34.01317899912452], [-117.88265000000015, 34.01384599912456], [-117.88297700000018, 34.01504799912448], [-117.8835280000002, 34.01609599912462], [-117.88666100000013, 34.0151309991243], [-117.88739500000011, 34.016621999124425], [-117.89140200000016, 34.02193599912439], [-117.89431700000016, 34.02476499912441], [-117.89506300000015, 34.02588899912427], [-117.8955780000001, 34.02751499912434], [-117.89167500000013, 34.02832799912437], [-117.88962600000015, 34.02948999912429], [-117.88918900000016, 34.02955599912429], [-117.8900380000001, 34.042442999124106], [-117.88889500000022, 34.04310999912409], [-117.8839940000002, 34.044009999124135], [-117.8757950000002, 34.048991999124], [-117.87179600000016, 34.049054999124024], [-117.86678000000018, 34.047310999124015], [-117.861732, 34.05308999912399], [-117.85295100000013, 34.0532419991239], [-117.854965, 34.058083999123966], [-117.85428100000011, 34.05827899912394], [-117.85390700000016, 34.05812199912391], [-117.853787, 34.057840999124046], [-117.85352600000013, 34.05792899912394], [-117.85331400000011, 34.05809899912395], [-117.85347600000031, 34.058279999123975], [-117.85331400000011, 34.05840899912398], [-117.85320800000012, 34.058308999123916], [-117.85260800000017, 34.05857799912391], [-117.85259400000014, 34.05834399912387], [-117.8519730000002, 34.058875999123885], [-117.85219600000016, 34.05900399912393], [-117.85185500000021, 34.059121999123995], [-117.85205800000018, 34.059542999123856], [-117.85129500000014, 34.05960499912394], [-117.85110200000014, 34.059193999123956], [-117.85134400000021, 34.058704999123954], [-117.85039800000015, 34.05858999912388], [-117.85025700000016, 34.05836199912394], [-117.849516, 34.05836799912397], [-117.84974200000019, 34.058484999123934], [-117.85014700000018, 34.059229999123914], [-117.8488060000002, 34.05918199912396], [-117.84885400000013, 34.05962799912386], [-117.84962600000016, 34.05965599912392], [-117.84956800000019, 34.06003799912394], [-117.85073600000027, 34.059888999123906], [-117.85077400000021, 34.06025899912384], [-117.84860400000014, 34.061020999123954], [-117.84634600000017, 34.060717999123945], [-117.84603700000011, 34.06112199912389], [-117.84530800000016, 34.061053999123956], [-117.84803000000021, 34.06242399912393], [-117.845444, 34.063495999123894]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Walnut", "metadata": {"sqmi": 9.01303061898, "type": "standalone-city", "name": "Walnut", "slug": "walnut"}, "cases": 23.0, "population": 0.3053232443913448, "external_id": "walnut", "slug": "walnut-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/walnut-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.21155297198193, 33.96691900568404], [-118.21187799047661, 33.96431100332186], [-118.22412297916655, 33.96541000101665], [-118.22412299262602, 33.96573700429753], [-118.22446297937428, 33.96577300051308], [-118.22451799278865, 33.966307003916754], [-118.22520298606275, 33.96635299924448], [-118.22519998609297, 33.965617003089946], [-118.2258159859687, 33.96553400136425], [-118.22543597200244, 33.9633780056827], [-118.22456397200177, 33.961631005680395], [-118.22290297200027, 33.95921800567681], [-118.22589098564568, 33.95962100233976], [-118.22763798600333, 33.96026300240223], [-118.22914998600432, 33.96108700240294], [-118.2302759720096, 33.96199400568195], [-118.23023298128115, 33.9747450017675], [-118.21754298577571, 33.97341400469901], [-118.21762098624804, 33.97253900004341], [-118.21074698574179, 33.971822004760895], [-118.21155297198193, 33.96691900568404]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Walnut Park", "metadata": {"sqmi": 0.734515844261, "type": "unincorporated-area", "name": "Walnut Park", "slug": "walnut-park"}, "cases": 46.0, "population": 0.16143183014563958, "external_id": "walnut-park", "slug": "walnut-park-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/walnut-park-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.24421398601586, 33.95378300239991], [-118.24421897673223, 33.95326000119001], [-118.23399499532711, 33.95326400351855], [-118.23402597663926, 33.94824300144694], [-118.23062199498416, 33.94827800433688], [-118.23063099555172, 33.947234001195994], [-118.23485498250331, 33.94713199984873], [-118.23482297661417, 33.9455690015427], [-118.23016499540596, 33.94564800324387], [-118.23016398600741, 33.945264002392754], [-118.22983598600723, 33.94473100239234], [-118.228646, 33.93900699912543], [-118.229213, 33.9373309991254], [-118.228374, 33.93736599912536], [-118.228311, 33.936950999125415], [-118.2267720000002, 33.93709599912536], [-118.225667, 33.9299199991256], [-118.229823, 33.92896799912544], [-118.23997798615703, 33.929521002041], [-118.254206, 33.92946206703645], [-118.25410600000016, 33.94331499912527], [-118.24913798248129, 33.943273005368404], [-118.24883898885027, 33.95335799973396], [-118.24748498246399, 33.95335800524084], [-118.24744998955565, 33.954256999674946], [-118.24420999533882, 33.95427000349177], [-118.24421398601586, 33.95378300239991]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Watts", "metadata": {"sqmi": 2.12239731805, "type": "segment-of-a-city", "name": "Watts", "slug": "watts"}, "cases": 98.0, "population": 0.42673633790550836, "external_id": "watts", "slug": "watts-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/watts-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.33400900000011, 34.03461099912426], [-118.335109, 34.03261099912418], [-118.335109, 34.02271199912422], [-118.33620900000015, 34.022711999124354], [-118.342709, 34.023710999124305], [-118.3521180000001, 34.02469199912432], [-118.35490900000012, 34.02491099912423], [-118.355009, 34.02471099912427], [-118.37654816091967, 34.026795539354126], [-118.375632, 34.0290479991242], [-118.37498900000011, 34.029547999124205], [-118.373643, 34.030420999124274], [-118.371901, 34.029928999124266], [-118.36961, 34.03501099912404], [-118.36211000000013, 34.03401099912428], [-118.3453090000001, 34.0347109991241], [-118.333809, 34.03501099912416], [-118.33400900000011, 34.03461099912426]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "West Adams", "metadata": {"sqmi": 1.48200819378, "type": "segment-of-a-city", "name": "West Adams", "slug": "west-adams"}, "cases": 122.0, "population": 0.27629939984146756, "external_id": "west-adams", "slug": "west-adams-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/west-adams-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.2982839861563, 33.8463490020501], [-118.28491699046707, 33.84623900519854], [-118.28714497213004, 33.837136005533296], [-118.28715697213744, 33.81479900550439], [-118.28727997213909, 33.81024800549848], [-118.28888197214388, 33.80246000548881], [-118.28876697214426, 33.80108900548695], [-118.28837597214404, 33.79997000548542], [-118.28765197214341, 33.79878000548378], [-118.28673697845068, 33.797818002512784], [-118.29914597796882, 33.79779599916482], [-118.29914499521068, 33.80279900378914], [-118.29963797694815, 33.802814000829784], [-118.29961597513532, 33.803417999546205], [-118.29901599686073, 33.803400005584635], [-118.29833998607691, 33.813055002315856], [-118.29849398607706, 33.81313900231586], [-118.298490986077, 33.81336300231618], [-118.29925798607744, 33.8136460023164], [-118.29904298259474, 33.82221000312062], [-118.29918098607568, 33.823022002322375], [-118.29920697480482, 33.846319000868256], [-118.2982839861563, 33.8463490020501]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "West Carson", "metadata": {"sqmi": 2.27906138241, "type": "unincorporated-area", "name": "West Carson", "slug": "west-carson"}, "cases": 63.0, "population": 0.22085889570552147, "external_id": "west-carson", "slug": "west-carson-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/west-carson-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.3582801803272, 33.983045516758786], [-118.35850899999976, 33.981911999124655], [-118.35838644814663, 33.981667508177395], [-118.36625199999979, 33.98164499912474], [-118.36672599999977, 33.98189499912469], [-118.36692699999979, 33.981632999124805], [-118.37034099999983, 33.98163599912463], [-118.37010799999979, 33.9766079991248], [-118.37014799999974, 33.96799299912489], [-118.37236599999976, 33.96798899912489], [-118.3728969999997, 33.96760699912486], [-118.37253999999976, 33.967130999124954], [-118.3719179999997, 33.967386999124905], [-118.37161599999978, 33.9668519991248], [-118.37123899999973, 33.96336699912493], [-118.37607799999974, 33.96134999912503], [-118.37752199999974, 33.960186999124936], [-118.37838199999972, 33.95889599912504], [-118.3787899999998, 33.95889499912501], [-118.37884299999986, 33.95264699912509], [-118.37005699999966, 33.952671999125215], [-118.37003297694783, 33.930929001014874], [-118.36824899073932, 33.93094500129859], [-118.36821599204387, 33.929020002548064], [-118.37001498591458, 33.92894500298692], [-118.37719299090931, 33.92915700174887], [-118.37872399999976, 33.92900799912542], [-118.37872599999965, 33.93054499912539], [-118.38028599999966, 33.9309229991253], [-118.39801499999976, 33.93088599912531], [-118.40205899999977, 33.93149499912553], [-118.42542299999971, 33.931350999125314], [-118.42877499999963, 33.930969999125345], [-118.42876375034268, 33.93072699909007], [-118.42970999999984, 33.9307119991253], [-118.42973599999976, 33.9320999991252], [-118.43018199999977, 33.93328199912529], [-118.4354649999998, 33.94231899912509], [-118.43601399999983, 33.94411699912506], [-118.43605699999982, 33.94578699912504], [-118.43634099999979, 33.946866999125106], [-118.437731, 33.94915699912504], [-118.43604999999967, 33.949722999125136], [-118.43389399999982, 33.94985999912509], [-118.43134699999975, 33.95024199912513], [-118.43179699999972, 33.950856999125016], [-118.43119999999978, 33.951604999124996], [-118.43105899999983, 33.952192999124925], [-118.43111899999984, 33.95440899912494], [-118.43145299999983, 33.955154999125085], [-118.43188199999977, 33.95552199912493], [-118.43140399999967, 33.95619499912505], [-118.43297099999978, 33.95685499912499], [-118.43400999999984, 33.95801199912485], [-118.43280999999976, 33.95861199912489], [-118.43271299999971, 33.95969599912495], [-118.43102599999978, 33.95969599912492], [-118.43107099999989, 33.96051199912482], [-118.42850999999978, 33.96051199912487], [-118.42820999999984, 33.96201199912489], [-118.42900999999975, 33.96371199912485], [-118.4312099999997, 33.963711999124904], [-118.43270999999987, 33.96461199912484], [-118.43440999999977, 33.96421199912489], [-118.43655799999979, 33.96330899912481], [-118.43785899999972, 33.96299599912487], [-118.43830499999983, 33.96345099912481], [-118.43810999999967, 33.96361199912489], [-118.43010999999984, 33.96681199912484], [-118.42695799999977, 33.96490799912484], [-118.42530999999977, 33.96541199912498], [-118.42560999999986, 33.96551199912479], [-118.42360999999971, 33.96691199912473], [-118.42280999999976, 33.96991199912483], [-118.41890999999978, 33.97231199912476], [-118.41160999999983, 33.97529599912479], [-118.40476899999975, 33.97695499912467], [-118.4044879999998, 33.97721599912481], [-118.40161399999977, 33.98228399912459], [-118.3992299999998, 33.9827959991246], [-118.39813999999971, 33.98231299912459], [-118.39781758635341, 33.9824647231935], [-118.39756899999978, 33.982189999124785], [-118.39764999999974, 33.98206999912466], [-118.3926279999998, 33.97974399912483], [-118.39106599999981, 33.97863299912479], [-118.38673499999973, 33.9767189991248], [-118.38655198611026, 33.97716000243112], [-118.38541898563736, 33.97665800292151], [-118.38034098594126, 33.97635500310167], [-118.37718398611624, 33.977020002015536], [-118.37180898270891, 33.977318004363056], [-118.3717029889796, 33.98300199963554], [-118.3582801803272, 33.983045516758786]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Westchester", "metadata": {"sqmi": 10.8092117067, "type": "segment-of-a-city", "name": "Westchester", "slug": "westchester"}, "cases": 66.0, "population": 0.5160281469898358, "external_id": "westchester", "slug": "westchester-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/westchester-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.25343697206151, 33.902507005610325], [-118.25226998607518, 33.89768500376089], [-118.25271598566283, 33.897674999827224], [-118.25239598609848, 33.896427003598454], [-118.25635698607093, 33.896329000918165], [-118.25830297899856, 33.8959290037189], [-118.2583879930315, 33.89629500311336], [-118.25941798555397, 33.896288999999506], [-118.25912498605338, 33.89539400390452], [-118.25947998571357, 33.89539000005721], [-118.2594039861288, 33.89508600318931], [-118.2598229841308, 33.89503899918147], [-118.26024698747347, 33.8947270044907], [-118.25918998610445, 33.890271002747845], [-118.2603929859448, 33.890061001778875], [-118.25989998612998, 33.88682700312439], [-118.26077298589438, 33.88672200121108], [-118.26069498607895, 33.88611000377499], [-118.28272898597488, 33.88546600124119], [-118.28320398605248, 33.89694800236792], [-118.28226799471734, 33.897314998857816], [-118.28225397210174, 33.90190000561613], [-118.26664297208013, 33.90194900561263], [-118.26369197207575, 33.90234600561247], [-118.25360398607674, 33.90280700375725], [-118.25343697206151, 33.902507005610325]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "West Compton", "metadata": {"sqmi": 1.65436407239, "type": "unincorporated-area", "name": "West Compton", "slug": "west-compton"}, "cases": 12.0, "population": 0.047199782295811475, "external_id": "west-compton", "slug": "west-compton-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/west-compton-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.94299300000016, 34.09249299912351], [-117.93976400000011, 34.0924319991235], [-117.939792, 34.091683999123546], [-117.93853400000022, 34.091707999123486], [-117.93842300000013, 34.09186499912352], [-117.93689299057503, 34.0918059976785], [-117.93697499907557, 34.08989600436465], [-117.94159598603596, 34.09008599932475], [-117.94201198592322, 34.08541800032896], [-117.93821898564232, 34.08516900456856], [-117.93816398591497, 34.08688399929137], [-117.93614298569393, 34.08677700441819], [-117.93606798597149, 34.0882869997913], [-117.93343300018321, 34.08830700114394], [-117.93414200000018, 34.086689999123585], [-117.93432498579428, 34.084818000722166], [-117.92634898575523, 34.08471300495479], [-117.92629698576296, 34.08645900072993], [-117.92369600000025, 34.086438999123494], [-117.923705, 34.08702299912358], [-117.92164700000015, 34.08895999912351], [-117.91808400000023, 34.08841299912359], [-117.91658600000017, 34.08842699912356], [-117.91656400000016, 34.084798999123606], [-117.9077730000001, 34.08493999912353], [-117.90776100000018, 34.08631199912361], [-117.9032900000002, 34.086282999123526], [-117.90330100000011, 34.07546599912369], [-117.898903, 34.07543299912384], [-117.89889500000014, 34.073611999123784], [-117.89239000000016, 34.07336999912379], [-117.89259700000012, 34.07537799912375], [-117.89250500000014, 34.077323999123614], [-117.89175100000021, 34.07743899912368], [-117.89004300000023, 34.07735799912364], [-117.89002700000015, 34.07536399912369], [-117.88121900000014, 34.075283999123705], [-117.8812020000003, 34.07370699912376], [-117.8741100000001, 34.07367299912386], [-117.87316800000016, 34.074495999123705], [-117.87142500000023, 34.07541999912371], [-117.86968400000033, 34.075855999123704], [-117.86950300000025, 34.07461399912373], [-117.869172, 34.0746079991237], [-117.86882100000018, 34.074034999123754], [-117.868366, 34.0739409991238], [-117.86763000000018, 34.074146999123734], [-117.86738500000018, 34.07398799912376], [-117.86717300000018, 34.07343999912372], [-117.86586500000014, 34.073342999123795], [-117.86626800000016, 34.072314999123726], [-117.8680480000002, 34.07188099912382], [-117.866038, 34.07139899912381], [-117.86446700000013, 34.070735999123706], [-117.8631240000002, 34.070983999123825], [-117.86288000000015, 34.070818999123766], [-117.86271000000016, 34.070879999123726], [-117.86266900000018, 34.070304999123756], [-117.86215500000016, 34.07034099912377], [-117.86206700000014, 34.06967799912391], [-117.8617930000002, 34.06932199912382], [-117.86064000000022, 34.068893999123794], [-117.85914500000014, 34.06858899912373], [-117.85870400000013, 34.068640999123744], [-117.85826100000021, 34.065924999123794], [-117.859188, 34.066154999123846], [-117.860233, 34.06598799912377], [-117.86118600000012, 34.0663299991238], [-117.86123700000022, 34.06768799912393], [-117.86133400000014, 34.06749799912383], [-117.86382400000016, 34.06718299912378], [-117.86499, 34.069113999123665], [-117.87019100000018, 34.068339999123765], [-117.87029200000012, 34.06855199912378], [-117.87176100000018, 34.068437999123915], [-117.87048200000021, 34.06704199912397], [-117.8685580000002, 34.06392599912385], [-117.86825600000012, 34.063075999123875], [-117.86837300000019, 34.06181599912391], [-117.8689160000002, 34.060174999123916], [-117.8688520000002, 34.05911399912392], [-117.86899400000013, 34.05912899912393], [-117.86893900000031, 34.05962299912392], [-117.87060000000014, 34.05992599912395], [-117.87047800000016, 34.05812499912389], [-117.87113600000015, 34.05683699912393], [-117.87044500000016, 34.05665999912388], [-117.86897600000019, 34.05669799912395], [-117.8688970000002, 34.05566699912395], [-117.866986, 34.055701999124], [-117.86609400000016, 34.055983999123974], [-117.86422300000017, 34.05309399912401], [-117.86340500000018, 34.05233499912396], [-117.86267300000014, 34.051914999124094], [-117.86678000000018, 34.047310999124015], [-117.87179600000016, 34.049054999124024], [-117.8757950000002, 34.048991999124], [-117.8839940000002, 34.044009999124135], [-117.88889500000022, 34.04310999912409], [-117.8900380000001, 34.042442999124106], [-117.88918900000016, 34.02955599912429], [-117.88962600000015, 34.02948999912429], [-117.89167500000013, 34.02832799912437], [-117.8955780000001, 34.02751499912434], [-117.895164, 34.026106999124345], [-117.89455500000012, 34.025070999124374], [-117.89140200000016, 34.02193599912439], [-117.88739500000011, 34.016621999124425], [-117.88666100000013, 34.0151309991243], [-117.8835280000002, 34.01609599912462], [-117.88297700000018, 34.01504799912448], [-117.88280200000014, 34.014172999124405], [-117.882205, 34.01317899912452], [-117.881587, 34.01300299912452], [-117.87999300000016, 34.0134099991245], [-117.87887300000013, 34.0119829991245], [-117.87481000000015, 34.01398899912447], [-117.87057100000015, 34.017281999124464], [-117.86812100000013, 34.01591499912442], [-117.86939600000017, 34.011632999124494], [-117.87444800000031, 34.01158699912451], [-117.87398300000017, 34.00988699912458], [-117.873938, 34.0045749991245], [-117.87168500000023, 34.002999999124626], [-117.87505900000019, 34.00213099912463], [-117.876939, 34.001912999124634], [-117.87968700000017, 34.0018719991247], [-117.88183400000018, 34.00206099912461], [-117.89067598588544, 34.0035120023729], [-117.89027898687992, 34.006192004291556], [-117.88951298457336, 34.006642999264805], [-117.88728898561656, 34.006528004499046], [-117.88716698601047, 34.007564999589256], [-117.88259899262493, 34.007256004018785], [-117.88274198567242, 34.004110001331085], [-117.88081398551832, 34.004168005149836], [-117.88012998539058, 34.0114250014445], [-117.88449898584807, 34.01008300321465], [-117.88682198594326, 34.01017200018049], [-117.88645698575775, 34.01361000403255], [-117.89799598567846, 34.01356300276339], [-117.90289398589694, 34.01370900175279], [-117.90957798575492, 34.01339500084865], [-117.91005497154767, 34.01497000567582], [-117.91111597154575, 34.02523700568936], [-117.91215498317871, 34.026381999284666], [-117.91403398625644, 34.02517600305534], [-117.91551598510036, 34.02470200557262], [-117.91741698165394, 34.02513000075863], [-117.91500997154901, 34.030923005697694], [-117.91753997155153, 34.034234005702636], [-117.91890497155312, 34.03497100570396], [-117.92010498611376, 34.03528500176357], [-117.92630398590497, 34.035716000352046], [-117.92623197156254, 34.0371370057084], [-117.92661797156235, 34.039045005710825], [-117.92652697156173, 34.04053500571275], [-117.92579697156006, 34.04262800571526], [-117.92567898590616, 34.04412899916347], [-117.9242389928013, 34.04404400357693], [-117.922316, 34.0420439991241], [-117.92278997155573, 34.042863005714935], [-117.92283698588516, 34.0440799990431], [-117.92028498718736, 34.04446600466563], [-117.91979597155097, 34.04489500571681], [-117.91939998588154, 34.04582800196913], [-117.91580798769344, 34.04650600514255], [-117.91534998390918, 34.04686000001101], [-117.91536198573826, 34.0473239998106], [-117.91413798552743, 34.04733200171139], [-117.91410898574887, 34.04806200416111], [-117.91489398579385, 34.048072000682645], [-117.91489698576012, 34.048832000039255], [-117.9146889715425, 34.04891100572091], [-117.91466798581507, 34.050269999740834], [-117.91268998578153, 34.050262004019444], [-117.91270098584826, 34.05108900358729], [-117.91684398557493, 34.050809003314924], [-117.92096598581959, 34.05091800060253], [-117.9208559857803, 34.05221200405285], [-117.92553998578224, 34.052100000373954], [-117.92562999300534, 34.04889800254222], [-117.92932298570138, 34.048656002907], [-117.93345298578721, 34.04866300076231], [-117.93344498580046, 34.05045099984284], [-117.92989398576769, 34.050412004133605], [-117.92991998582393, 34.051380003865034], [-117.93427598580215, 34.0512510002649], [-117.93428098580203, 34.050826000702756], [-117.93359399286581, 34.050819003359706], [-117.93360499281185, 34.05045300443736], [-117.93818998579286, 34.05049300075148], [-117.93818798578006, 34.05078900410778], [-117.93944798578812, 34.05079400077537], [-117.93941598571321, 34.05213500435223], [-117.9420589877463, 34.052224999669406], [-117.94249000000015, 34.051818999123995], [-117.9438560000003, 34.05298999912408], [-117.94538400000012, 34.05155299912402], [-117.94569700000014, 34.051893999124], [-117.94826300000015, 34.04954999912407], [-117.95164500000017, 34.052056999124034], [-117.95638198908453, 34.04715700613108], [-117.96379097160946, 34.05263500573719], [-117.95884597160087, 34.057321005742175], [-117.96213198143806, 34.05975599924146], [-117.96307698896959, 34.058768006228775], [-117.96392498142815, 34.05935299984828], [-117.9641839898857, 34.0591090052982], [-117.96486397160841, 34.05958600574664], [-117.96357397160627, 34.06080700574773], [-117.96713800000016, 34.063457999123784], [-117.96470800000021, 34.065774999123846], [-117.96221200000019, 34.06536699912383], [-117.96171900000016, 34.065925999123856], [-117.96130200000016, 34.06669299912384], [-117.9620320000002, 34.06695799912384], [-117.96306500000016, 34.0676509991238], [-117.96392200000014, 34.068339999123765], [-117.96370200000021, 34.06855199912378], [-117.963225, 34.068364999123744], [-117.96220800000026, 34.069297999123805], [-117.96137100000016, 34.06939599912381], [-117.9612020000002, 34.0695619991238], [-117.96106100000017, 34.06937399912377], [-117.96120600000022, 34.069129999123724], [-117.96042600000018, 34.06853399912381], [-117.960523, 34.068428999123824], [-117.95991600000018, 34.06812299912384], [-117.95782300000022, 34.069973999123754], [-117.95819400000013, 34.070253999123736], [-117.95745600000032, 34.07034999912381], [-117.95574000000015, 34.072134999123776], [-117.958122, 34.073877999123646], [-117.95658000000032, 34.0753089991237], [-117.954241, 34.07357899912377], [-117.9482130000002, 34.07934399912366], [-117.94596700000011, 34.07929299912367], [-117.945607, 34.08296299912359], [-117.944489, 34.08296299912359], [-117.9441630000002, 34.08655799912357], [-117.94548700000013, 34.086630999123635], [-117.94500100000013, 34.0901779991236], [-117.94890700000013, 34.0892969991236], [-117.94879500000015, 34.09241999912351], [-117.94299300000016, 34.09249299912351]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "West Covina", "metadata": {"sqmi": 16.1145589195, "type": "standalone-city", "name": "West Covina", "slug": "west-covina"}, "cases": 133.0, "population": 1.0823567708333335, "external_id": "west-covina", "slug": "west-covina-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/west-covina-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.605122, 34.227319999121846], [-118.605591, 34.226684999121886], [-118.605788, 34.226091999121806], [-118.605814, 34.21960199912184], [-118.61012, 34.219403999121845], [-118.614621, 34.21940399912192], [-118.61452, 34.21540399912199], [-118.61472, 34.211903999121915], [-118.61452, 34.20470399912215], [-118.61472, 34.199703999122164], [-118.61452, 34.19830399912214], [-118.61462, 34.186403999122305], [-118.644521, 34.18630399912226], [-118.654021, 34.18420399912236], [-118.6580210000001, 34.184303999122285], [-118.65992100000011, 34.183803999122254], [-118.660621, 34.18330399912235], [-118.668111, 34.183777999122384], [-118.66811271525985, 34.17920427474041], [-118.66817600000014, 34.18986699912216], [-118.667796, 34.20932899912203], [-118.66276400000015, 34.209342999122036], [-118.66277077198214, 34.21292340088551], [-118.65324107201008, 34.212945997571374], [-118.65237500000016, 34.216418999121935], [-118.6546200000002, 34.216417999121894], [-118.655916, 34.215945999121956], [-118.6589590000002, 34.21594599912199], [-118.659205, 34.21691799912181], [-118.65981700000015, 34.218085999121875], [-118.65975200000017, 34.22114899912195], [-118.65930800000012, 34.22221199912178], [-118.658735, 34.22457799912178], [-118.65407200000013, 34.22468799912179], [-118.65404708247469, 34.22710902341229], [-118.653291, 34.227109999121836], [-118.653292, 34.22734899912189], [-118.652862, 34.22735199912176], [-118.65286100308413, 34.22711074544825], [-118.64971200001935, 34.22711500225083], [-118.64908551423557, 34.22963270231993], [-118.64872200000015, 34.22960299912184], [-118.6488460000001, 34.230254999121875], [-118.648034, 34.23098699912177], [-118.647502, 34.230869999121786], [-118.64713400000012, 34.23049499912179], [-118.647105, 34.22955399912183], [-118.64696000000012, 34.22944999912187], [-118.647094, 34.2239689991219], [-118.643415, 34.2239689991219], [-118.6428680000001, 34.22364199912186], [-118.6366600000001, 34.22446399912191], [-118.631221, 34.22470299912194], [-118.629872, 34.225210999121906], [-118.628031, 34.226171999121775], [-118.626563, 34.227458999121794], [-118.62595, 34.22783999912187], [-118.625314, 34.227948999121836], [-118.61624, 34.22714899912192], [-118.61584100000016, 34.22776399912188], [-118.61496400000016, 34.23138599912181], [-118.614061, 34.231715999121775], [-118.612519, 34.2331639991219], [-118.611323, 34.23388899912171], [-118.610792, 34.23445999912178], [-118.61055300000014, 34.234986999121745], [-118.61021900000014, 34.235222999121824], [-118.604821, 34.235302999121664], [-118.602821, 34.231302999121745], [-118.602621, 34.23013599912187], [-118.6026980000001, 34.22958299912182], [-118.60305200000012, 34.22890699912174], [-118.605122, 34.227319999121846]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "West Hills", "metadata": {"sqmi": 8.52807835884, "type": "segment-of-a-city", "name": "West Hills", "slug": "west-hills"}, "cases": 53.0, "population": 0.4054467564259486, "external_id": "west-hills", "slug": "west-hills-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/west-hills-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.36856030810456, 34.09803547507345], [-118.36820900000019, 34.09803499912339], [-118.36816800000018, 34.0970869991234], [-118.3673420000002, 34.09709799912342], [-118.367341, 34.0968789991234], [-118.36672000000016, 34.0968879991236], [-118.36672100000017, 34.097107999123516], [-118.36165200000015, 34.09717799912344], [-118.36154200000014, 34.09445499912343], [-118.34338200000019, 34.09432799912354], [-118.34339300000019, 34.08889499912361], [-118.35280200000011, 34.08896199912357], [-118.35280000000013, 34.08712899912356], [-118.362701, 34.087190999123564], [-118.362712, 34.088786999123556], [-118.36326700000019, 34.08877799912358], [-118.3632690000001, 34.08897099912355], [-118.36644300000016, 34.08892399912357], [-118.36643000000014, 34.08713899912367], [-118.37023300000016, 34.08708399912368], [-118.37023000000015, 34.085608999123565], [-118.37248500000014, 34.08543799912362], [-118.3724980000001, 34.090255999123485], [-118.37307400000017, 34.0902479991235], [-118.37327200000014, 34.09005199912355], [-118.37413000000015, 34.089956999123565], [-118.374328, 34.08970599912352], [-118.37475700000019, 34.08969899912354], [-118.37475700000019, 34.08942499912352], [-118.37518600000018, 34.08941799912354], [-118.37538300000021, 34.08913999912355], [-118.37628400000011, 34.088988999123565], [-118.37695100000013, 34.088629999123576], [-118.37703300000022, 34.08303999912361], [-118.37030200000018, 34.08315699912354], [-118.370294, 34.08016899912363], [-118.374209, 34.08016099912365], [-118.37420200000018, 34.08201899912361], [-118.37525000000012, 34.082010999123625], [-118.37526400000023, 34.08015899912369], [-118.377248, 34.08020699912366], [-118.37689300000021, 34.07896599912374], [-118.3773020000003, 34.07922699912364], [-118.37799100000015, 34.078942999123726], [-118.377777, 34.0786529991237], [-118.37756700000018, 34.07874199912364], [-118.37722000000012, 34.07817299912368], [-118.37719200000019, 34.076478999123786], [-118.37975400000015, 34.07639099912367], [-118.38051700000011, 34.076693999123805], [-118.381693, 34.076710999123755], [-118.38169400000011, 34.076395999123754], [-118.38973300000019, 34.076489999123716], [-118.38975500000015, 34.08849499912371], [-118.39358600000021, 34.08963499912361], [-118.39451400000019, 34.0905799991235], [-118.3957280000002, 34.090585999123526], [-118.39584400000018, 34.09105499912352], [-118.3860400000002, 34.09103599912348], [-118.38594100000016, 34.09276799912353], [-118.38570600000014, 34.09294199912353], [-118.38552800000018, 34.092762999123494], [-118.38553000000016, 34.09320299912351], [-118.38503600000014, 34.09320199912354], [-118.38503800000015, 34.09355799912332], [-118.38445900000023, 34.09355699912352], [-118.38437800000017, 34.0937219991235], [-118.38337000000017, 34.09372399912348], [-118.38336900000014, 34.093326999123434], [-118.38118300000022, 34.09332299912349], [-118.38118100000024, 34.09210399912358], [-118.379297, 34.092954999123606], [-118.37657700000015, 34.0947499991235], [-118.37260000000016, 34.09567599912353], [-118.3715740000002, 34.09642799912355], [-118.36999200000022, 34.09710699912342], [-118.36856030810456, 34.09803547507345]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "West Hollywood", "metadata": {"sqmi": 1.88729983244, "type": "standalone-city", "name": "West Hollywood", "slug": "west-hollywood"}, "cases": 137.0, "population": 0.36951127413960516, "external_id": "west-hollywood", "slug": "west-hollywood-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/west-hollywood-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.280308, 34.07690999912365], [-118.27629400000016, 34.07589899912359], [-118.27300800000012, 34.07480999912358], [-118.265307, 34.07120999912366], [-118.261318, 34.069746999123645], [-118.25990700000013, 34.0646109991238], [-118.25950700000013, 34.06191099912397], [-118.256595, 34.058954999123756], [-118.25523400000012, 34.05805899912392], [-118.259107, 34.053910999123936], [-118.259807, 34.05311099912405], [-118.259729, 34.05299999912385], [-118.26074500000013, 34.05197799912394], [-118.26148, 34.051571999123865], [-118.26096100000017, 34.05126499912385], [-118.268507, 34.04681199912396], [-118.27860800000013, 34.05141099912389], [-118.28158200000016, 34.05259699912389], [-118.282619, 34.05282799912396], [-118.284208, 34.052610999123964], [-118.289208, 34.05251099912384], [-118.289208, 34.059910999123936], [-118.28790800000016, 34.05991099912378], [-118.287913, 34.06200699912378], [-118.28720800000013, 34.06201099912385], [-118.28710800000015, 34.06780999912369], [-118.286908, 34.0690099991236], [-118.286908, 34.07650999912369], [-118.28570800000014, 34.07680999912369], [-118.28450800000012, 34.076809999123604], [-118.28450800000012, 34.07790999912354], [-118.280308, 34.07690999912365]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Westlake", "metadata": {"sqmi": 2.71730553526, "type": "segment-of-a-city", "name": "Westlake", "slug": "westlake"}, "cases": 320.0, "population": 0.7322536315007672, "external_id": "westlake", "slug": "westlake-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/westlake-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.82513500000017, 34.12294099912316], [-118.83622500000016, 34.11702999912323], [-118.84767100000013, 34.11018699912341], [-118.8528500000001, 34.11119499912326], [-118.85294200000016, 34.111399999123286], [-118.85392100000026, 34.11180099912322], [-118.85394821517517, 34.112578828633296], [-118.85367729857755, 34.11290121554632], [-118.85199971563398, 34.113137011638145], [-118.85207000000011, 34.11395499912328], [-118.85234255036681, 34.11419804046069], [-118.85288100000024, 34.11425399912327], [-118.85305498241812, 34.11472649280283], [-118.852092, 34.115092999123284], [-118.85204542966179, 34.115819998715914], [-118.85171300000013, 34.11610599912324], [-118.85132000000019, 34.116149999123266], [-118.85115323884874, 34.11644987892194], [-118.85068750480855, 34.116666372141445], [-118.85072813509463, 34.11710713555804], [-118.8509840618767, 34.11751263949156], [-118.85079504737284, 34.11784116780428], [-118.85106893366427, 34.11876794179953], [-118.85198933483579, 34.11988636348037], [-118.85253200000014, 34.119990999123225], [-118.85324067874588, 34.12096966339554], [-118.85463000000018, 34.12173999912308], [-118.85488100000016, 34.12253499912317], [-118.85619100000015, 34.123549999123135], [-118.85573100000019, 34.12461199912316], [-118.856161, 34.12540899912303], [-118.85615500000016, 34.12613599912313], [-118.85658000000016, 34.12715499912316], [-118.83657400000011, 34.13944499912295], [-118.83580700000019, 34.13968499912291], [-118.830937, 34.14272799912287], [-118.82895000000022, 34.14366299912284], [-118.82638700000014, 34.145208999122794], [-118.82255600000018, 34.14805399912285], [-118.82112500000012, 34.14860499912289], [-118.81898900000027, 34.15018099912281], [-118.78924400000014, 34.16819599912265], [-118.78977500000018, 34.1626039991227], [-118.791765, 34.15635099912278], [-118.7908090000003, 34.1547279991228], [-118.7908710000002, 34.15433799912273], [-118.79153600000022, 34.15112599912278], [-118.79184000000024, 34.15051999912281], [-118.79289500000016, 34.14605899912285], [-118.80481900000012, 34.13388999912305], [-118.82513500000017, 34.12294099912316]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Westlake Village", "metadata": {"sqmi": 5.6464219287, "type": "standalone-city", "name": "Westlake Village", "slug": "westlake-village"}, "cases": 6.0, "population": 0.08360039013515397, "external_id": "westlake-village", "slug": "westlake-village-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/westlake-village-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.434212, 34.03730999912411], [-118.435039, 34.03693199912408], [-118.444378, 34.04776199912396], [-118.43439100000013, 34.05060599912401], [-118.424212, 34.057508999123755], [-118.4239120000001, 34.05710899912385], [-118.423212, 34.05530899912395], [-118.42271200000013, 34.053308999123985], [-118.421612, 34.0523089991239], [-118.42151200000018, 34.0512089991238], [-118.417111, 34.04620999912391], [-118.42571200000012, 34.04130999912406], [-118.429602, 34.03959699912402], [-118.434212, 34.03730999912411]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "West Los Angeles", "metadata": {"sqmi": 1.04957313159, "type": "segment-of-a-city", "name": "West Los Angeles", "slug": "west-los-angeles"}, "cases": 77.0, "population": 0.38587454392658166, "external_id": "west-los-angeles", "slug": "west-los-angeles-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/west-los-angeles-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.96996897161365, 34.06552200575542], [-117.9701069654253, 34.06498503399123], [-117.9697359816568, 34.06535099940915], [-117.96907397161264, 34.06487000575429], [-117.97041698663838, 34.0638090040374], [-117.96938398898801, 34.06315600567495], [-117.96918498179885, 34.06334099948028], [-117.96712399019059, 34.06182000567307], [-117.96622398528994, 34.06278499743292], [-117.96357397160634, 34.06080700574776], [-117.96486397160851, 34.05958600574665], [-117.96418398988581, 34.05910900529822], [-117.96392498142828, 34.059352999848315], [-117.96307698896969, 34.058768006228824], [-117.96213198143816, 34.05975599924151], [-117.95884597160098, 34.0573210057422], [-117.96379097160955, 34.05263500573724], [-117.956427971601, 34.04719000572853], [-117.95164500000027, 34.052056999124055], [-117.94934500000024, 34.050348999124026], [-117.95187800000022, 34.04797799912411], [-117.95024300000017, 34.04674599912411], [-117.95090700000023, 34.04625099912417], [-117.95048300000023, 34.04581199912408], [-117.95163800000022, 34.04479199912421], [-117.95187700000041, 34.04494099912411], [-117.9520920000001, 34.04474999912414], [-117.95231700000028, 34.044912999124065], [-117.95279798072599, 34.04454300719801], [-117.94959297159326, 34.0421610057204], [-117.9517219896543, 34.040155005473785], [-117.95227398759343, 34.0405919959003], [-117.95375198954997, 34.03922700586324], [-117.95432599524548, 34.039926988663744], [-117.95485197160161, 34.03924500571785], [-117.95364397160014, 34.03835800571648], [-117.95855898991643, 34.03369200543334], [-117.9680440000003, 34.04066599912425], [-117.96311900000028, 34.04531999912408], [-117.96718298759167, 34.04833900478955], [-117.96672499022822, 34.04868499723447], [-117.9673650000004, 34.04926799912416], [-117.96816398697013, 34.04975499638765], [-117.96858898981255, 34.049359005310556], [-117.97260900000016, 34.05231199912408], [-117.9706510000001, 34.054115999124], [-117.97116000000015, 34.054609999124125], [-117.9752889868591, 34.05722899588808], [-117.98109899011651, 34.051216005402345], [-117.98214098679753, 34.051918995431215], [-117.98275897163619, 34.05122400573993], [-117.98175497163504, 34.050556005738905], [-117.9855039938096, 34.0466360035505], [-117.99050400000029, 34.049960999124195], [-117.98672600000016, 34.05388499912397], [-117.98923800000021, 34.055566999123954], [-117.98821098132998, 34.05667199930579], [-117.98671599006752, 34.05563000539562], [-117.98630698155685, 34.05603599949071], [-117.98529798935166, 34.055339006185676], [-117.98300000000023, 34.057768999124086], [-117.98547100000023, 34.05945399912394], [-117.98242999121173, 34.062633000114246], [-117.98117598572246, 34.0628680004918], [-117.97953798618073, 34.06287300501295], [-117.97851098545148, 34.063269001501155], [-117.97786998922636, 34.062838005642824], [-117.97670098155963, 34.06388499998657], [-117.97619998873469, 34.06359600527537], [-117.97561698615087, 34.06377800156826], [-117.9729239899411, 34.063381005507615], [-117.97074100000032, 34.06543199912385], [-117.97066097592693, 34.0660289823838], [-117.96996897161365, 34.06552200575542]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "West Puente Valley", "metadata": {"sqmi": 1.85662447271, "type": "unincorporated-area", "name": "West Puente Valley", "slug": "west-puente-valley"}, "cases": 17.0, "population": 0.09835117153601389, "external_id": "west-puente-valley", "slug": "west-puente-valley-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/west-puente-valley-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.82517500000027, 34.091299999123656], [-117.82419700000027, 34.09102499912361], [-117.82453400000026, 34.09163999912357], [-117.82433600000022, 34.09195399912353], [-117.82337100000021, 34.09146499912355], [-117.82231261511072, 34.09216431163575], [-117.82069985564313, 34.09216398188077], [-117.82094800000027, 34.09090099912361], [-117.82135000000027, 34.090611999123524], [-117.826730257016, 34.08895519265365], [-117.83793751925462, 34.08594608911966], [-117.83745500000035, 34.084928999123626], [-117.84009598126526, 34.0843090887014], [-117.84242864860468, 34.08398666962752], [-117.84383696078568, 34.08433368858365], [-117.84493823435281, 34.083728457981906], [-117.84540512666692, 34.083018149140514], [-117.8469726720455, 34.08280736860101], [-117.84743490733759, 34.08279087634683], [-117.84760737116957, 34.08329348395781], [-117.84881509985341, 34.08269895462842], [-117.84949812908559, 34.08336834717931], [-117.84927296953612, 34.08439161803296], [-117.84891400000022, 34.08466999912366], [-117.84906779754046, 34.08503159044367], [-117.84862162503345, 34.08581510335182], [-117.84714400000011, 34.08665499912355], [-117.84489371072232, 34.087223683153724], [-117.84416100000026, 34.08725099912354], [-117.84408900000022, 34.08761999912365], [-117.84346705557665, 34.08660475980381], [-117.8432215171888, 34.08664992864697], [-117.84312300000025, 34.08639299912367], [-117.8384140000003, 34.08715699912366], [-117.83906162660233, 34.08843937338951], [-117.83772900000024, 34.088465999123535], [-117.83673728080825, 34.08951460943774], [-117.83574883167249, 34.089379257323976], [-117.83502700000014, 34.089587999123545], [-117.83433931065107, 34.090325703019126], [-117.83332900000025, 34.09070499912357], [-117.83311100000036, 34.09116099912359], [-117.83229100000037, 34.091402999123574], [-117.8318360000004, 34.09208499912352], [-117.83112803452407, 34.092163951618275], [-117.82956900000029, 34.09174399912357], [-117.8290010000003, 34.091402999123574], [-117.82820800000027, 34.09152499912358], [-117.82686600000027, 34.091227999123625], [-117.82643000000024, 34.091617999123535], [-117.8266898104493, 34.09216434987184], [-117.82570976088556, 34.09216436514024], [-117.82555200000026, 34.09166799912369], [-117.82517500000027, 34.091299999123656]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "West San Dimas", "metadata": {"sqmi": 0.32978537849, "type": "unincorporated-area", "name": "West San Dimas", "slug": "west-san-dimas"}, "cases": null, "population": null, "external_id": "west-san-dimas", "slug": "west-san-dimas-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/west-san-dimas-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.06516597176962, 33.994621005685886], [-118.0659989857915, 33.993581003149544], [-118.06712798303633, 33.99264600756797], [-118.06666597177244, 33.992326005683175], [-118.06702498625411, 33.991972999815104], [-118.06672899699986, 33.99193099936653], [-118.0671199717735, 33.991392005682115], [-118.06598499013913, 33.9906220052992], [-118.0655739829375, 33.99100699965429], [-118.06405497176983, 33.989931005679374], [-118.06768097177604, 33.98623000567565], [-118.06405498906044, 33.983903005668715], [-118.06302200000026, 33.98496499912484], [-118.06584700000026, 33.986966999124824], [-118.06499898092702, 33.98802699935134], [-118.06236598730881, 33.98564000452929], [-118.06171098716014, 33.9860780028041], [-118.06050798072737, 33.98754099889432], [-118.05387697175793, 33.98307300566832], [-118.05392298422117, 33.98204200687946], [-118.05442399307952, 33.98228800207321], [-118.05560196937142, 33.98216200330012], [-118.05451698862875, 33.98145199720733], [-118.05463098313103, 33.981356007583905], [-118.05429998861601, 33.98081200689236], [-118.05393199180281, 33.98114599848613], [-118.05422498681969, 33.981482004112195], [-118.05381598365335, 33.98170600026773], [-118.05344398840006, 33.98143700556671], [-118.0530629917559, 33.98174800276836], [-118.05281398573109, 33.982296995754716], [-118.05094497175453, 33.98096600566487], [-118.05294297175784, 33.97906800566273], [-118.05232997175723, 33.9786440056622], [-118.05335997175904, 33.97759200566114], [-118.05238597175834, 33.97615100565903], [-118.05377597176063, 33.97435500565692], [-118.05223798543832, 33.97240700131155], [-118.05362998632224, 33.97183700346724], [-118.05146997175889, 33.970015005650794], [-118.05202298462268, 33.96757400692032], [-118.07084198644579, 33.971828999510294], [-118.07070399188093, 33.9722800053949], [-118.07109998660322, 33.97237099930074], [-118.0711799926895, 33.97307000402214], [-118.0714719860643, 33.97309300021649], [-118.07134900000031, 33.97385899912498], [-118.07183498648075, 33.974011998123835], [-118.07238100000012, 33.97396399912503], [-118.07247299191204, 33.97446999861123], [-118.0730499865837, 33.974192003824996], [-118.07352099254389, 33.97507199986722], [-118.07488098602582, 33.97466600283072], [-118.07395198529329, 33.97252100534141], [-118.07425598821281, 33.972582998256975], [-118.07458197179031, 33.97215300565901], [-118.07354297178941, 33.970459005656586], [-118.07348197178948, 33.97031300565631], [-118.07363997178976, 33.97014500565604], [-118.07285799771003, 33.969954007344164], [-118.07273398599936, 33.970399002756125], [-118.07197598578864, 33.9706170020253], [-118.07128097178631, 33.97035600565594], [-118.07194797178755, 33.969466005654894], [-118.0705309886071, 33.96905700665579], [-118.06962598085137, 33.97028299846579], [-118.06857699609635, 33.969698011607086], [-118.06846598677267, 33.97027599871037], [-118.06623598557415, 33.96999300487713], [-118.06644897177985, 33.96945300565352], [-118.06649298565429, 33.967676005496855], [-118.0669309862941, 33.96770399929021], [-118.06691698609755, 33.96735200012952], [-118.06539998568081, 33.96721300465101], [-118.0662949858445, 33.96457200419592], [-118.07059198568844, 33.964679999678324], [-118.07051398587996, 33.9641110008182], [-118.0674619859056, 33.96413800395406], [-118.06739898592372, 33.963942003862186], [-118.0681719858084, 33.96383800175109], [-118.06810498591335, 33.96257600248162], [-118.06851098586255, 33.96248800224006], [-118.06832298597767, 33.96157500296068], [-118.07031698577369, 33.961294001427014], [-118.0701969858943, 33.96002200401295], [-118.07098398589484, 33.960022000754584], [-118.0708869926162, 33.96049400418773], [-118.07421798595792, 33.960856000525396], [-118.07594200000028, 33.96229099912516], [-118.0759640000003, 33.96250399912511], [-118.07832900000024, 33.963764999125225], [-118.08909500000023, 33.967129999125184], [-118.08891500000023, 33.96809799912504], [-118.08836800000023, 33.96903299912506], [-118.08509000000018, 33.97272799912503], [-118.07999800000022, 33.97906699912503], [-118.07689000000019, 33.98329999912487], [-118.07586698811912, 33.98548499744319], [-118.07542399122799, 33.985316008469134], [-118.07300800000026, 33.991517999124824], [-118.07327000000038, 33.99176099912473], [-118.07309398603056, 33.992310001461206], [-118.0724209927523, 33.99233100387047], [-118.07224599138424, 33.99305899802221], [-118.07178099020612, 33.99279800482768], [-118.07125198170093, 33.99327699986652], [-118.07072898943414, 33.99296000573698], [-118.0699259813975, 33.9937849994662], [-118.06915698891555, 33.99329900570056], [-118.06779899513833, 33.994303992345436], [-118.06800597177387, 33.99396900568567], [-118.06742599306934, 33.99364200240108], [-118.06615499278139, 33.99492899979536], [-118.06550098432314, 33.99533600077137], [-118.06493697176924, 33.99487500568615], [-118.06516597176962, 33.994621005685886]]], [[[-118.06525500000029, 33.998257999124704], [-118.06314500000022, 33.99686299912471], [-118.06324800000021, 33.99634699912471], [-118.06401200000029, 33.9960599991248], [-118.06338200000026, 33.99563899912476], [-118.06369700000023, 33.99532199912475], [-118.06719900000034, 33.99755099912473], [-118.06771900000021, 33.996672999124776], [-118.06636800000027, 33.99575599912473], [-118.06776100000037, 33.99433999912475], [-118.0686870000003, 33.99495199912475], [-118.06847800000021, 33.99544599912478], [-118.06906600000022, 33.995730999124746], [-118.06984400000034, 33.99562599912474], [-118.07100400000027, 33.996447999124754], [-118.07008900000025, 33.99885699912477], [-118.06878200000027, 33.99846299912474], [-118.06819952116523, 33.998094956061415], [-118.06852000000025, 33.99837099912472], [-118.06839100000022, 33.99913599912467], [-118.06888500000026, 33.999869999124705], [-118.06846700000024, 34.00091999912464], [-118.06660000000029, 34.00109799912463], [-118.06700300000023, 34.00024099912474], [-118.06623300000031, 33.99885699912471], [-118.06525500000029, 33.998257999124704]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "West Whittier-Los Nietos", "metadata": {"sqmi": 2.61424776266, "type": "unincorporated-area", "name": "West Whittier-Los Nietos", "slug": "west-whittier-los-nietos"}, "cases": 36.0, "population": 0.2692595362752431, "external_id": "west-whittier-los-nietos", "slug": "west-whittier-los-nietos-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/west-whittier-los-nietos-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.429912, 34.07930799912365], [-118.42901200000011, 34.07910799912349], [-118.42771200000011, 34.080607999123565], [-118.426212, 34.08080799912359], [-118.425812, 34.08080799912359], [-118.42331200000014, 34.08000799912356], [-118.4232312833546, 34.079927282478124], [-118.4238280000001, 34.07973999912367], [-118.423477, 34.07881299912367], [-118.423632, 34.07876399912373], [-118.423296, 34.077568999123635], [-118.4227670000001, 34.077047999123685], [-118.423289, 34.075688999123685], [-118.422546, 34.07527299912372], [-118.42183900000012, 34.075092999123775], [-118.420928, 34.07542799912356], [-118.419642, 34.07265199912366], [-118.418462, 34.07236099912385], [-118.41738200000013, 34.07020599912385], [-118.416371, 34.06883999912381], [-118.4172530000001, 34.06838299912375], [-118.41442789354493, 34.06444100521822], [-118.4206120000001, 34.060008999123816], [-118.43401200000011, 34.05080899912387], [-118.4359730000001, 34.050093999124], [-118.444378, 34.04776199912396], [-118.449087, 34.0533509991239], [-118.44577600000014, 34.05532999912386], [-118.44562400000015, 34.055294999123845], [-118.45012800000015, 34.06077899912386], [-118.45403300000014, 34.06504699912372], [-118.454534, 34.0659189991238], [-118.454681, 34.0667989991238], [-118.460203, 34.065374999123804], [-118.466532, 34.072917999123675], [-118.464019, 34.07417299912364], [-118.463376, 34.07401599912372], [-118.46241200000011, 34.07329599912366], [-118.461524, 34.0731399991237], [-118.460824, 34.073311999123646], [-118.459142, 34.074453999123776], [-118.457535, 34.07432899912359], [-118.454913, 34.076507999123535], [-118.45391300000013, 34.076907999123584], [-118.45011300000012, 34.07510799912376], [-118.44881300000011, 34.07350799912363], [-118.44531300000011, 34.07370799912366], [-118.444513, 34.076607999123546], [-118.444013, 34.07700799912366], [-118.44281300000013, 34.07750799912367], [-118.440513, 34.077607999123586], [-118.4378130000001, 34.07940799912361], [-118.43531300000014, 34.080607999123615], [-118.43481300000015, 34.082407999123454], [-118.434213, 34.082707999123656], [-118.431812, 34.08220799912358], [-118.429912, 34.07930799912365]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Westwood", "metadata": {"sqmi": 3.6757772963, "type": "segment-of-a-city", "name": "Westwood", "slug": "westwood"}, "cases": 49.0, "population": 0.541077738515901, "external_id": "westwood", "slug": "westwood-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/westwood-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.06169, 34.00486599912463], [-118.061357, 34.00521099912459], [-118.0564976472849, 34.00195972177427], [-118.05629727763679, 34.002171226195244], [-118.056025, 34.00460699912439], [-118.054507, 34.0046159991245], [-118.054192, 34.004430999124565], [-118.054776, 34.003894999124576], [-118.050388, 34.001646999124596], [-118.050301, 34.00224199912463], [-118.049517, 34.00173599912459], [-118.049307, 34.0018839991246], [-118.0464597612129, 34.00170940782286], [-118.04652546875249, 34.001341235844805], [-118.04602345558862, 34.000892833208034], [-118.03733337780433, 34.0007865388069], [-118.03735247555288, 34.00383455401007], [-118.0365, 34.00382888615308], [-118.0365, 34.004211999124536], [-118.029175, 34.0040859991246], [-118.0291463104058, 34.00377997678439], [-118.02860593670651, 34.00377635884176], [-118.02862668113058, 33.989946095966815], [-118.018073, 33.99001099912487], [-118.018099, 33.98611199912482], [-118.008028, 33.98609099912474], [-118.008003, 33.98274999912484], [-117.99849856516458, 33.98240617766702], [-117.99356803931792, 33.98241748800193], [-117.9937620297949, 33.97516345398484], [-117.97666255665308, 33.97509295690059], [-117.97666167773424, 33.974829838195944], [-117.97628305435607, 33.97472141124122], [-117.97607600000019, 33.966321999124936], [-117.97666100000018, 33.96650099912502], [-117.976963, 33.96633299912499], [-117.976757, 33.96566899912501], [-117.976921, 33.964747999125024], [-117.983627, 33.964656999125054], [-117.983701, 33.96452199912495], [-117.9838500000001, 33.963426999125076], [-117.982443, 33.961927999125066], [-117.981935, 33.960998999124975], [-117.98327300000014, 33.96091399912508], [-117.983434, 33.960162999125096], [-117.983861, 33.95958899912512], [-117.983637, 33.95902299912507], [-117.98162100000017, 33.95837399912517], [-117.98098800000011, 33.95789899912513], [-117.98171600000019, 33.9570099991251], [-117.992997, 33.9499289991253], [-117.99269, 33.94956299912521], [-117.99209300000011, 33.94969299912521], [-117.988888, 33.94970499912521], [-117.98864600000012, 33.949822999125274], [-117.988192, 33.95055499912522], [-117.987281, 33.950249999125205], [-117.986976, 33.95044799912528], [-117.986167, 33.9503439991252], [-117.98665300000012, 33.94943699912523], [-117.96561800000018, 33.94971399912523], [-117.965576, 33.94869999912527], [-117.966048, 33.947832999125325], [-117.96568100000015, 33.94784299912518], [-117.96634300000012, 33.946718999125274], [-117.966763, 33.94672599912535], [-117.966797, 33.94603599912534], [-117.966611, 33.9460009991253], [-117.976475, 33.94591299912523], [-117.976533, 33.93186599912542], [-117.976452, 33.9302779991255], [-117.976327, 33.93027799912545], [-117.97629, 33.92998699912547], [-117.9762779999907, 33.92816600212377], [-117.979613985686, 33.928168002870926], [-117.98212298585075, 33.92853000173466], [-117.98353797167859, 33.92899500558148], [-117.9854419858198, 33.92989499736033], [-117.98544100000012, 33.92952701019737], [-117.99020598579877, 33.931808002322164], [-118.00084398580152, 33.92933700217206], [-118.00082998586508, 33.93523700390811], [-118.002985985855, 33.935224002344846], [-118.00324898585805, 33.9365460039498], [-118.00349698584537, 33.93654500077165], [-118.00336597170278, 33.93837900559833], [-118.03560397174232, 33.95356700562554], [-118.03799798602608, 33.95418000214619], [-118.045886, 33.955509999125134], [-118.042735, 33.95333799912515], [-118.04538498929857, 33.95066800609863], [-118.04940398309517, 33.95348700223419], [-118.047142, 33.955719999125115], [-118.052834, 33.95667799912524], [-118.050717, 33.958772999125046], [-118.05227300000016, 33.959739999125134], [-118.055775, 33.96143299912505], [-118.054858, 33.9617319991251], [-118.055362, 33.96600499912509], [-118.05460400000011, 33.966134999125146], [-118.05531999059147, 33.968263001295576], [-118.05202298462248, 33.9675740069202], [-118.05194497176024, 33.96783000564794], [-118.05146997175869, 33.970015005650694], [-118.05362998632204, 33.97183700346714], [-118.05223798543811, 33.97240700131146], [-118.05377597176043, 33.97435500565682], [-118.05238597175814, 33.97615100565898], [-118.05335997175884, 33.977592005661094], [-118.05232997175706, 33.97864400566209], [-118.05294297175762, 33.97906800566268], [-118.05094497175433, 33.98096600566481], [-118.0528139857309, 33.9822969957546], [-118.0530629917557, 33.98174800276829], [-118.05344398839988, 33.98143700556661], [-118.05381598365314, 33.981706000267614], [-118.05422498681946, 33.98148200411212], [-118.05393199180261, 33.98114599848605], [-118.05429998861582, 33.98081200689229], [-118.05463098313083, 33.981356007583855], [-118.05451698862856, 33.98145199720722], [-118.05560196937124, 33.982162003300054], [-118.0544239930793, 33.98228800207314], [-118.05392298422097, 33.98204200687939], [-118.05387697175775, 33.983073005668246], [-118.06050798072715, 33.98754099889422], [-118.06171098715991, 33.98607800280401], [-118.06236598730861, 33.985640004529195], [-118.06499898092682, 33.98802699935124], [-118.065847, 33.986966999124746], [-118.063022, 33.98496499912475], [-118.06405498906024, 33.98390300566865], [-118.06768097177581, 33.98623000567555], [-118.0640549717696, 33.989931005679274], [-118.06557398293732, 33.99100699965424], [-118.06598499013893, 33.99062200529914], [-118.0671199717733, 33.99139200568207], [-118.06672899699966, 33.99193099936643], [-118.06702498625388, 33.99197299981505], [-118.06666597177224, 33.992326005683104], [-118.06712798303613, 33.992646007567906], [-118.06599898579132, 33.993581003149465], [-118.06493697176904, 33.994875005686104], [-118.06550098432294, 33.995336000771296], [-118.06615499278116, 33.99492899979526], [-118.06742599306914, 33.993642002401], [-118.06800597177367, 33.993969005685564], [-118.06779899513809, 33.99430399234533], [-118.06915698891535, 33.99329900570048], [-118.06992598139732, 33.993784999466115], [-118.07072898943392, 33.99296000573692], [-118.07125198170073, 33.99327699986644], [-118.07178099020594, 33.992798004827605], [-118.07224599138402, 33.99305899802213], [-118.072199, 33.99367799912465], [-118.07136200000011, 33.9948579991246], [-118.070719, 33.99442899912469], [-118.070298, 33.9948579991246], [-118.071371, 33.99559699912469], [-118.071004, 33.996447999124705], [-118.06984400000017, 33.99562599912469], [-118.069066, 33.99573099912467], [-118.068478, 33.995445999124684], [-118.068687, 33.994951999124616], [-118.06776100000015, 33.99433999912468], [-118.066368, 33.99575599912468], [-118.067719, 33.996672999124705], [-118.06719900000017, 33.99755099912463], [-118.063697, 33.99532199912468], [-118.063382, 33.99563899912471], [-118.0640120000001, 33.99605999912471], [-118.063248, 33.99634699912461], [-118.063145, 33.99686299912467], [-118.06623300000011, 33.998856999124556], [-118.067003, 34.000240999124635], [-118.06660000000011, 34.001097999124575], [-118.065315, 34.00281899912459], [-118.064016, 34.00398799912451], [-118.062184, 34.00541999912466], [-118.06169, 34.00486599912463]]], [[[-118.053574, 34.029441999124295], [-118.053267, 34.02905399912425], [-118.05289800000013, 34.02926199912408], [-118.051658, 34.028238999124305], [-118.053407, 34.02796699912432], [-118.0537, 34.02451299912422], [-118.0543, 34.023332999124285], [-118.058556, 34.02495699912435], [-118.054546, 34.02905099912425], [-118.054123, 34.02919599912429], [-118.054829, 34.03057299912416], [-118.054485, 34.03071599912425], [-118.053574, 34.029441999124295]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Whittier", "metadata": {"sqmi": 14.7406413064, "type": "standalone-city", "name": "Whittier", "slug": "whittier"}, "cases": 125.0, "population": 0.925133783774227, "external_id": "whittier", "slug": "whittier-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/whittier-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.06939611939983, 34.052924561140095], [-118.06872200000018, 34.052415999123994], [-118.06872600000023, 34.05177999912403], [-118.06757426064034, 34.051785584915066], [-118.06757290642379, 34.0510891440237], [-118.06694728550687, 34.05109053284193], [-118.06694637620214, 34.05085696562919], [-118.06653206779393, 34.05085810604666], [-118.06653322341458, 34.05110175194648], [-118.06621500000024, 34.05110499912397], [-118.06621310247677, 34.05154237828157], [-118.06506700000028, 34.05154199912406], [-118.06504584473575, 34.05054502463832], [-118.06426784342119, 34.05054634813357], [-118.06420116492063, 34.050749297085744], [-118.06217360941072, 34.050757135280875], [-118.06217251052104, 34.0503044266777], [-118.06113894737008, 34.05030664566099], [-118.06107368660663, 34.04716115450025], [-118.06064446830182, 34.047095899895794], [-118.06064408156399, 34.04679060804793], [-118.05998757554444, 34.04679233514528], [-118.05998400000028, 34.046415999124186], [-118.06028000000023, 34.04599699912417], [-118.05993980505536, 34.04594357779368], [-118.06008195238772, 34.045292421130796], [-118.05783964602368, 34.045296164342965], [-118.05780240417006, 34.044568762874526], [-118.05679635024988, 34.044569757023574], [-118.0570070000003, 34.04311399912416], [-118.05562100000031, 34.04304999912416], [-118.05560713540166, 34.04347966949245], [-118.05343721146177, 34.043439630783624], [-118.05343427013584, 34.042762442439425], [-118.05251019161155, 34.042769189175516], [-118.0525124772634, 34.042576832082105], [-118.05168729850767, 34.0421684455472], [-118.05219900000021, 34.04191699912414], [-118.05070312900001, 34.04067313436363], [-118.05082846150732, 34.04025305941426], [-118.05049000000022, 34.03985599912415], [-118.04960730636348, 34.03928430879347], [-118.05143697086712, 34.03940892214534], [-118.05174341273404, 34.03913616964484], [-118.05510900000024, 34.038130999124206], [-118.05517089344359, 34.03775846295378], [-118.0555122715036, 34.03761452686351], [-118.0546703700574, 34.03615896430702], [-118.05439000000025, 34.035262999124356], [-118.05352700000023, 34.035882999124254], [-118.05307600000012, 34.035348999124274], [-118.04982221419186, 34.03805967378004], [-118.04946200000023, 34.03775899912426], [-118.05012790413377, 34.03712395280941], [-118.04889879883156, 34.03611206315982], [-118.048198349189, 34.036704281197835], [-118.04763700000026, 34.03624099912423], [-118.0472460000002, 34.03615099912423], [-118.04557012490194, 34.03715537632351], [-118.04532865840504, 34.03691962833936], [-118.0453572636115, 34.036537200184554], [-118.04734506517603, 34.034271204419575], [-118.04742652701447, 34.034103223465834], [-118.04720000000022, 34.03391299912432], [-118.04876876994095, 34.033020197939685], [-118.04657070407684, 34.033305691240514], [-118.04572127026931, 34.03365625533591], [-118.04515978151143, 34.034638640127625], [-118.04432800000026, 34.035082999124306], [-118.044588437409, 34.035250527682024], [-118.04339588260251, 34.035614085128394], [-118.04188428556984, 34.03536905358813], [-118.03805298198338, 34.03431900503453], [-118.0372525549873, 34.03062696160991], [-118.03759919699166, 34.02717485614444], [-118.04001769067294, 34.02578768979709], [-118.04068600000024, 34.02639999912438], [-118.0424333453036, 34.02666198515494], [-118.04406321380188, 34.02714873799548], [-118.04570021356706, 34.028876475061054], [-118.04762712660012, 34.02945187587977], [-118.05012900000035, 34.02822899912438], [-118.05202400000024, 34.02634299912439], [-118.05307400000024, 34.0241829991244], [-118.05379400000021, 34.02166499912447], [-118.05425000000031, 34.02065599912447], [-118.05464800000023, 34.020629999124466], [-118.0554330000002, 34.02114699912437], [-118.05598000000029, 34.02051099912448], [-118.05653100000038, 34.02055899912447], [-118.05932200000026, 34.02191699912444], [-118.06116200000032, 34.02171899912443], [-118.06090500000029, 34.02121399912449], [-118.06148600000027, 34.021023999124445], [-118.06979000000025, 34.020446999124474], [-118.06988800000029, 34.02082599912454], [-118.07435900000023, 34.02037599912441], [-118.07500800000015, 34.0193659991244], [-118.0783770000003, 34.0174849991245], [-118.07866200000025, 34.01694299912441], [-118.07928700000028, 34.01691099912445], [-118.07932800000019, 34.017764999124594], [-118.07952400000022, 34.018204999124464], [-118.08001800000027, 34.01803099912448], [-118.08385700000031, 34.01954499912446], [-118.0848380000004, 34.018834999124465], [-118.08512400000015, 34.01910299912446], [-118.08295500000031, 34.020586999124426], [-118.07925212699399, 34.023533999124446], [-118.07906700000025, 34.023533999124375], [-118.07897978105522, 34.023739835834775], [-118.07555192679987, 34.02639555644457], [-118.07510185510341, 34.02658830835], [-118.07657900000031, 34.02470499912442], [-118.0729710000003, 34.02807599912429], [-118.07304300000017, 34.03004599912429], [-118.07259400000025, 34.03072499912435], [-118.07279198688651, 34.030999419031765], [-118.07108202457052, 34.02983122479907], [-118.07102080108044, 34.03045587621798], [-118.07125729293914, 34.03105303963076], [-118.07343653753378, 34.03401461166383], [-118.0750896434646, 34.03715681561098], [-118.07529831351394, 34.03795974953298], [-118.07472435580435, 34.04077935567412], [-118.07201362464866, 34.047434586672786], [-118.07245105316235, 34.051741324222796], [-118.07204137648507, 34.056047383898324], [-118.07155688772028, 34.05723722056429], [-118.0711770000003, 34.0572109991241], [-118.07021500000023, 34.05404599912402], [-118.06939611939983, 34.052924561140095]], [[-118.05482900000027, 34.03057299912425], [-118.05412300000029, 34.02919599912436], [-118.05454600000026, 34.02905099912435], [-118.05855600000021, 34.02495699912441], [-118.05430000000023, 34.02333299912439], [-118.05370000000025, 34.024512999124326], [-118.05340700000019, 34.027966999124374], [-118.05165800000016, 34.028238999124405], [-118.05289800000031, 34.029261999124195], [-118.05326700000032, 34.029053999124294], [-118.0544850000003, 34.03071599912433], [-118.05482900000027, 34.03057299912425]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Whittier Narrows", "metadata": {"sqmi": 2.89953996124, "type": "unincorporated-area", "name": "Whittier Narrows", "slug": "whittier-narrows"}, "cases": 0.0, "population": 0, "external_id": "whittier-narrows", "slug": "whittier-narrows-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/whittier-narrows-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.2300539720206, 33.92809400563807], [-118.22803398602441, 33.919832000692615], [-118.22408998599357, 33.91979900405932], [-118.22237098606283, 33.90882600265707], [-118.2227109816637, 33.90872300749292], [-118.22503598588249, 33.9089770016719], [-118.22761798573514, 33.908403001685], [-118.22749698595402, 33.90817600215031], [-118.22810397910536, 33.908015004317555], [-118.22826999302038, 33.90825700080967], [-118.22876198598713, 33.908146002309124], [-118.2286469859508, 33.9079340021371], [-118.23016597907328, 33.9075440041977], [-118.23037099302255, 33.907813000815935], [-118.23065698590794, 33.907752002106854], [-118.23050898578609, 33.90746300169615], [-118.23103098624256, 33.90728600466235], [-118.23610397898487, 33.90595200175833], [-118.23609699300873, 33.91375300318529], [-118.23778697902715, 33.913753001561595], [-118.23780699301437, 33.914406003163606], [-118.23840197902757, 33.914405001561875], [-118.23845899302889, 33.91622900309953], [-118.23905597900807, 33.91622400165093], [-118.23898399295592, 33.91771000339884], [-118.24525698661346, 33.91785799969121], [-118.24538298609075, 33.91746200276463], [-118.24620398594715, 33.91731800364924], [-118.25445698599441, 33.91731100084498], [-118.25445598607794, 33.912932003753774], [-118.26092698601198, 33.91271599991176], [-118.26091298604328, 33.90556700395967], [-118.26350798609243, 33.905531000150965], [-118.26365898608431, 33.90234800318528], [-118.26664297208013, 33.90194900561263], [-118.28225397210174, 33.90190000561613], [-118.28208597494353, 33.923201000103546], [-118.28193598879125, 33.923093000268835], [-118.27822598175123, 33.92321799797706], [-118.2782209887908, 33.92250900026278], [-118.27753398960883, 33.92243300664824], [-118.27728898604401, 33.92285600238396], [-118.27733197487872, 33.92328100042949], [-118.27322798324934, 33.92328200466444], [-118.27322798953149, 33.92311400014205], [-118.25359399531303, 33.923095004551875], [-118.2535499953426, 33.92730000347017], [-118.25381397671157, 33.92730000129805], [-118.25380398602687, 33.92818400238465], [-118.25347398602658, 33.928632002384866], [-118.25426797488676, 33.929462000125625], [-118.23997798615723, 33.929521002041064], [-118.23032400020591, 33.9290010021684], [-118.2300539720206, 33.92809400563807]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Willowbrook", "metadata": {"sqmi": 3.76636072646, "type": "unincorporated-area", "name": "Willowbrook", "slug": "willowbrook"}, "cases": 64.0, "population": 0.3981034774557454, "external_id": "willowbrook", "slug": "willowbrook-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/willowbrook-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.224761, 33.82460699912682], [-118.224576, 33.82438099912675], [-118.22457, 33.82156799912681], [-118.222768, 33.81272799912693], [-118.222442, 33.81245199912698], [-118.222436, 33.80415199912701], [-118.226797, 33.79214799912718], [-118.226942, 33.79069999912725], [-118.22734100000011, 33.790805999127166], [-118.22768100000016, 33.78994399912726], [-118.22066900000016, 33.782536999127345], [-118.2419478738631, 33.76652963969062], [-118.24544001553456, 33.7657050004687], [-118.250027999634, 33.76432098700933], [-118.25050598040951, 33.76525600895125], [-118.24970101553725, 33.76557499601129], [-118.24963498737289, 33.76584700048136], [-118.25044000485731, 33.766945014656685], [-118.25111501788402, 33.766710996110895], [-118.25119898676876, 33.766797016866775], [-118.25070301266096, 33.767302987270426], [-118.25075899191748, 33.76755200026005], [-118.25063698449654, 33.76757499174047], [-118.24795897685198, 33.765412003777634], [-118.24749998903843, 33.76553601045775], [-118.24790299759546, 33.76612800161737], [-118.24750998533435, 33.766422997567624], [-118.24756601720279, 33.766532009803846], [-118.2489890162159, 33.76838500737261], [-118.24925102439009, 33.76853300516268], [-118.24971900886969, 33.76814299179008], [-118.25005598926235, 33.76846297847987], [-118.25004699259607, 33.76880500963246], [-118.24974799812752, 33.76918597372655], [-118.24986900591878, 33.76937300968226], [-118.2491260180805, 33.77041599161856], [-118.2493169999423, 33.77069899201387], [-118.24924197511179, 33.77112999019912], [-118.24886001138789, 33.77185498470498], [-118.2484919898664, 33.771792008041416], [-118.24786601130091, 33.772070010288836], [-118.24710197862932, 33.773044017784294], [-118.24331301423683, 33.775234995375186], [-118.24108599736887, 33.77689001367491], [-118.24193899707312, 33.777293022231994], [-118.24254098452846, 33.77730001963896], [-118.24440797691145, 33.77644901919396], [-118.244302016176, 33.77629902214494], [-118.2453020140405, 33.77591200766126], [-118.24521199476614, 33.775774006167175], [-118.24548999701355, 33.7757929991292], [-118.24746100348479, 33.77482998755899], [-118.2493000062395, 33.773407988175535], [-118.2493519869776, 33.77289402073514], [-118.24981502592154, 33.77258397772917], [-118.2495860055234, 33.77224799696617], [-118.250691017106, 33.77044598050609], [-118.25525401046585, 33.765570997493136], [-118.25557499678537, 33.76536502118734], [-118.25619397794354, 33.76576297898441], [-118.25587798977222, 33.765281999320166], [-118.25855399815764, 33.76222397459892], [-118.25841999518181, 33.761996006442665], [-118.25937001156748, 33.76106398338953], [-118.25960497713086, 33.76107997746277], [-118.2600149830949, 33.766158990134336], [-118.25979801086393, 33.76636401942244], [-118.26063201760614, 33.76651901461931], [-118.26082100020882, 33.766365019052124], [-118.26255598887496, 33.76624001274242], [-118.26254299369053, 33.76608001939761], [-118.26302502559638, 33.76605897456434], [-118.26312698781345, 33.76589898121943], [-118.26321700708773, 33.766274999777735], [-118.2639070145583, 33.76577097602103], [-118.26395699603736, 33.765083020421805], [-118.2614319843305, 33.76334797914354], [-118.26106601467991, 33.759395022887844], [-118.26132002581744, 33.75917599878557], [-118.26150600953142, 33.75928501102197], [-118.26158697952748, 33.759198990265915], [-118.26141199173885, 33.75907198469718], [-118.26346302118858, 33.75687800821758], [-118.26364900490252, 33.75697802378764], [-118.2673250111526, 33.753096988249645], [-118.26776000785605, 33.753056003436775], [-118.26798297786453, 33.75652897965793], [-118.26731601448634, 33.75651498484382], [-118.26755797745676, 33.75663799189416], [-118.26807399676845, 33.758724008379204], [-118.26758601969715, 33.75997901701072], [-118.26654598403725, 33.76110002266662], [-118.2662799773448, 33.76105798561207], [-118.26607200178009, 33.761291004528466], [-118.26553499024739, 33.76131899415679], [-118.26541598171532, 33.76149198268608], [-118.26553099172905, 33.7616369815872], [-118.26598398176499, 33.76165597454916], [-118.26543397504773, 33.76203099347808], [-118.26594699547057, 33.76226801091265], [-118.26523499614923, 33.763229023223445], [-118.26536899912496, 33.76331199247866], [-118.26568898581482, 33.762983009122685], [-118.26601102437576, 33.76323602063061], [-118.27045900772184, 33.758946978387605], [-118.27033300178289, 33.75885801135507], [-118.26965898838544, 33.75377200127645], [-118.27199801637848, 33.75439298169381], [-118.27192299154787, 33.75453798059517], [-118.27283902052767, 33.754798989139545], [-118.27314501240332, 33.75512697286605], [-118.27405699025266, 33.75660400448858], [-118.2735069835354, 33.756099980731925], [-118.27420898656096, 33.75722898342421], [-118.27061900106682, 33.766973004285035], [-118.27733298683454, 33.76619297754008], [-118.27738901870315, 33.7666299735028], [-118.2769039879085, 33.76690497686136], [-118.2770269949589, 33.767063023559096], [-118.27692597975923, 33.76712400096364], [-118.27857999842954, 33.76900998630852], [-118.27991497742745, 33.76825400328557], [-118.2755420189117, 33.760737998922316], [-118.27743700092294, 33.758671975029046], [-118.27779397390712, 33.758635988364134], [-118.2784429965649, 33.75777899014168], [-118.27827700544263, 33.757513983078766], [-118.27990398150216, 33.75633999705532], [-118.28278601880525, 33.75581997922532], [-118.28344098662842, 33.75589200516708], [-118.28637800355844, 33.755281021045505], [-118.28732702031448, 33.75504800212928], [-118.28763900996762, 33.75469297579203], [-118.28968398902772, 33.75517500769799], [-118.28980499681899, 33.75503400731507], [-118.28855583008492, 33.75439558011875], [-118.2903720000001, 33.75360999912772], [-118.292204, 33.75361799912759], [-118.29220400000014, 33.757316999127596], [-118.29340400000017, 33.76381699912748], [-118.29590400000012, 33.77471699912734], [-118.29640400000011, 33.780316999127294], [-118.297705, 33.78221699912727], [-118.292904, 33.77931699912736], [-118.28940400000012, 33.7785169991273], [-118.28200400000014, 33.77881699912734], [-118.2804040000001, 33.77901699912724], [-118.282104, 33.79061699912718], [-118.282704, 33.79201699912706], [-118.28330400000017, 33.79291699912709], [-118.286905, 33.79771699912713], [-118.28293, 33.797630999127136], [-118.282997, 33.79824099912714], [-118.264502, 33.799131999127184], [-118.264402, 33.80097499912712], [-118.264603, 33.80469699912696], [-118.263361, 33.80470499912713], [-118.262259, 33.804511999127094], [-118.262261, 33.80461599912712], [-118.256512, 33.80477399912709], [-118.258445, 33.79944199912709], [-118.237482, 33.800480999127075], [-118.230261, 33.792771999127176], [-118.228856, 33.795263999127066], [-118.227181, 33.80009999912712], [-118.2244320000001, 33.804585999127056], [-118.22394000000014, 33.80621899912701], [-118.223926, 33.806422999127], [-118.22528, 33.808152999126975], [-118.225373, 33.80845799912702], [-118.225387, 33.81100799912689], [-118.228066, 33.824194999126846], [-118.228503, 33.824374999126746], [-118.226622, 33.829530999126725], [-118.224761, 33.82460699912682]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Wilmington", "metadata": {"sqmi": 9.1412927044, "type": "segment-of-a-city", "name": "Wilmington", "slug": "wilmington"}, "cases": 97.0, "population": 0.5648730491497788, "external_id": "wilmington", "slug": "wilmington-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/wilmington-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.313709, 34.07630999912366], [-118.313809, 34.07310999912358], [-118.313609, 34.07180999912379], [-118.31440900000011, 34.0712099991237], [-118.314093, 34.06236199912393], [-118.31443600000011, 34.061906999123785], [-118.325909, 34.062009999123724], [-118.3262090000001, 34.076309999123566], [-118.313709, 34.07630999912366]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Windsor Square", "metadata": {"sqmi": 0.683463802484, "type": "segment-of-a-city", "name": "Windsor Square", "slug": "windsor-square"}, "cases": null, "population": null, "external_id": "windsor-square", "slug": "windsor-square-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/windsor-square-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.562213, 34.231502999121666], [-118.56211900000015, 34.201003999122015], [-118.562319, 34.193803999122224], [-118.5623180000001, 34.18650399912217], [-118.565519, 34.18650399912217], [-118.568177, 34.185464999122274], [-118.569759, 34.185336999122335], [-118.571623, 34.185853999122294], [-118.573205, 34.18745899912223], [-118.574038, 34.187892999122255], [-118.575135, 34.188150999122314], [-118.588319, 34.18820399912227], [-118.58832000000014, 34.23530299912163], [-118.582669, 34.23530899912171], [-118.58168, 34.235064999121654], [-118.581068, 34.234351999121664], [-118.580938, 34.231993999121705], [-118.58047900000012, 34.23151699912174], [-118.57102000000013, 34.231502999121666], [-118.57102100000012, 34.23558199912164], [-118.5659760000001, 34.23469099912177], [-118.56222000000012, 34.23380299912176], [-118.562213, 34.231502999121666]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Winnetka", "metadata": {"sqmi": 4.77724070209, "type": "segment-of-a-city", "name": "Winnetka", "slug": "winnetka"}, "cases": 163.0, "population": 0.5178548735544543, "external_id": "winnetka", "slug": "winnetka-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/winnetka-la-county-neighborhood-current/"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.57569, 34.18822399912241], [-118.57361900000015, 34.18770399912219], [-118.573, 34.18728199912221], [-118.571623, 34.185853999122294], [-118.569759, 34.185336999122335], [-118.568177, 34.185464999122274], [-118.565519, 34.18650399912217], [-118.5623180000001, 34.18650399912217], [-118.562318, 34.17040499912242], [-118.56313100000013, 34.170536999122454], [-118.5659220000001, 34.17045999912247], [-118.56591800000015, 34.16360499912251], [-118.56375500000016, 34.16357799912253], [-118.5622800000001, 34.162910999122566], [-118.5623130000001, 34.161577999122564], [-118.562459, 34.1613009991226], [-118.56306900000014, 34.16086799912264], [-118.563197, 34.159702999122544], [-118.56369500000018, 34.1587729991226], [-118.56314, 34.15791099912272], [-118.563165, 34.15714399912263], [-118.565033, 34.155695999122656], [-118.566024, 34.15358699912274], [-118.566836, 34.152329999122685], [-118.56682300000013, 34.15071099912267], [-118.567299, 34.14953899912274], [-118.567299, 34.14820799912272], [-118.56791800000015, 34.14500499912283], [-118.5675180000001, 34.14390499912275], [-118.567918, 34.13790599912288], [-118.56631700000014, 34.13770599912282], [-118.5652170000001, 34.13440599912281], [-118.56405300000011, 34.13190999912294], [-118.564869, 34.13128599912294], [-118.56600500000015, 34.13078999912298], [-118.56586737033591, 34.13059338597857], [-118.61497800000015, 34.14926699912275], [-118.614971, 34.14727699912282], [-118.622888, 34.14726799912276], [-118.629153, 34.14689899912284], [-118.628978, 34.14734899912289], [-118.629811, 34.14989299912275], [-118.630075, 34.149832999122836], [-118.6302550000001, 34.15038099912274], [-118.63125, 34.151086999122725], [-118.632162, 34.15052499912283], [-118.638483, 34.15759699912267], [-118.64127600000012, 34.15663299912267], [-118.641269, 34.158313999122704], [-118.640274, 34.158679999122654], [-118.63994300000012, 34.158881999122684], [-118.639975, 34.15908599912263], [-118.639867, 34.158816999122664], [-118.639735, 34.159090999122675], [-118.64197500000013, 34.16197499912263], [-118.64555300000016, 34.161984999122566], [-118.645534, 34.165695999122555], [-118.65043600000013, 34.16571099912254], [-118.652037, 34.16534099912257], [-118.654281, 34.16572199912256], [-118.6542639999999, 34.16942699912249], [-118.658017, 34.16943799912257], [-118.658721, 34.16927599912257], [-118.658598, 34.175208999122496], [-118.659486, 34.17523399912247], [-118.658619, 34.17567499912245], [-118.659199, 34.17573799912242], [-118.658593, 34.17605899912244], [-118.658589, 34.176748999122566], [-118.668153, 34.17674999912245], [-118.668111, 34.183777999122384], [-118.660621, 34.18330399912235], [-118.65992100000011, 34.183803999122254], [-118.6580210000001, 34.184303999122285], [-118.654021, 34.18420399912236], [-118.644521, 34.18630399912226], [-118.60763000000013, 34.186396999122344], [-118.60674, 34.18643499912233], [-118.597311, 34.18821299912225], [-118.57569, 34.18822399912241]]]]}, "type": "Feature", "properties": {"kind": "L.A. County Neighborhood (Current)", "set": "/1.0/boundary-set/la-county-neighborhoods-current/", "name": "Woodland Hills", "metadata": {"sqmi": 14.768309648, "type": "segment-of-a-city", "name": "Woodland Hills", "slug": "woodland-hills"}, "cases": 110.0, "population": 0.6805667264740457, "external_id": "woodland-hills", "slug": "woodland-hills-la-county-neighborhood-current", "resource_uri": "/1.0/boundary/woodland-hills-la-county-neighborhood-current/"}}], "lastUpdated": "8:00pm 4/30"}
\ No newline at end of file
From 22509a7cf59d1f562e175b536ded38da54922dde Mon Sep 17 00:00:00 2001
From: Radhika Ahuja <36571530+ahujaradhika@users.noreply.github.com>
Date: Fri, 1 May 2020 21:35:18 -0700
Subject: [PATCH 3/3] Update schedule_scraper.yml
---
.github/workflows/schedule_scraper.yml | 4 ----
1 file changed, 4 deletions(-)
diff --git a/.github/workflows/schedule_scraper.yml b/.github/workflows/schedule_scraper.yml
index 4add6a64a..18c3669b5 100644
--- a/.github/workflows/schedule_scraper.yml
+++ b/.github/workflows/schedule_scraper.yml
@@ -34,7 +34,3 @@ jobs:
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- - name: Trigger our build webhook on Netlify
- run: curl -X POST "https://api.netlify.com/build_hooks/${TOKEN}"
- env:
- TOKEN: ${{ secrets.CRON_BUILD_HOOK_HOSPITALBRANCH }}