export const AREA = [
undefined, // IDs start at 1
"Central",
"Rampart",
"Southwest",
"Hollenbeck",
"Harbor",
"Hollywood",
"Wilshire",
"West LA",
"Van Nuys",
"West Valley",
"Northeast",
"77th Street",
"Newton",
"Pacific",
"N Hollywood",
"Foothill",
"Devonshire",
"Southeast",
"Mission",
"Olympic",
"Topanga",
];
export const COLOR = [
"hsl( 4, 90%, 58%)",
"hsl(338, 78%, 48%)",
"hsl(262, 52%, 47%)",
"hsl(207, 90%, 54%)",
"hsl(187, 100%, 42%)",
"hsl(122, 39%, 49%)",
"hsl( 49, 98%, 60%)",
"hsl( 16, 25%, 38%)",
"hsl(216, 85%, 34%)",
"hsl(200, 18%, 46%)",
"hsl( 36, 100%, 50%)",
];
export const CRIME = [
"Assault and Battery",
"Destruction of Property",
"Domestic Disturbance",
"Fraud",
"Homicide",
"Human Trafficking",
"Kidnapping",
"Resisting Arrest",
"Theft",
"Other",
];
export const DAY = [
"S",
"M",
"T",
"W",
"T",
"F",
"S",
];
export const MONTH = [
"JAN",
"FEB",
"MAR",
"APR",
"MAY",
"JUN",
"JUL",
"AUG",
"SEP",
"OCT",
"NOV",
"DEC",
];
export const POPULATION = {
"77th Street": 175000,
"Central": 40000,
"Devonshire": 219136,
"Foothill": 182214,
"Harbor": 171000,
"Hollenbeck": 200000,
"Hollywood": 300000,
"Mission": 225849,
"North Hollywood": 220000,
"Newton": 150000,
"Northeast": 250000,
"Olympic": 200000,
"Pacific": 200000,
"Rampart": 164961,
"Southeast": 150000,
"Southwest": 165000,
"Topanga": 57032,
"Van Nuys": 325000,
"West LA": 228000,
"West Valley": 196840,
"Wilshire": 251000
};