diff --git a/webapp/public/similar-projects/plate-privacy.webp b/webapp/public/similar-projects/plate-privacy.webp new file mode 100644 index 0000000..c50862c Binary files /dev/null and b/webapp/public/similar-projects/plate-privacy.webp differ diff --git a/webapp/src/components/SimilarProjects.vue b/webapp/src/components/SimilarProjects.vue index 9c7de4a..667e26d 100644 --- a/webapp/src/components/SimilarProjects.vue +++ b/webapp/src/components/SimilarProjects.vue @@ -130,6 +130,12 @@ const similarProjects: SimilarProject[] = [ url: "https://atlasofsurveillance.org/atlas", imageUrl: "/similar-projects/eff-atlas.webp" }, + { + name: "Plate Privacy", + description: "The Institute for Justice's site analyzing ALPR usage patterns in the US.", + url: "https://plateprivacy.com", + imageUrl: "/similar-projects/plate-privacy.webp" + } ] diff --git a/webapp/src/views/CouncilView.vue b/webapp/src/views/CouncilView.vue index 834bf87..98f26a5 100644 --- a/webapp/src/views/CouncilView.vue +++ b/webapp/src/views/CouncilView.vue @@ -317,7 +317,7 @@ const citiesRejectingFlock: CityRejection[] = [ cityState: "Evanston, IL", monthYear: "August 2025", descriptionHtml: 'The City of Evanston ended its contract with Flock Safety and requested the deactivation of the cameras following an audit by the Secretary of State showing the company was violating state law by sharing Illinois data with federal agencies. Flock then reinstalled the cameras against the city\'s wishes, prompting a cease-and-desist by the city.', - outcome: Outcome.ContractCanceled, + outcome: Outcome.ContractCanceled }, { cityState: "Louisville, CO", @@ -331,6 +331,12 @@ const citiesRejectingFlock: CityRejection[] = [ descriptionHtml: 'City council voted unanimously to end their contract with Flock Safety after council members claimed they were misled and lied to about the system\'s data sharing features.', outcome: Outcome.ContractCanceled }, + { + cityState: "Lockhart, TX", + monthYear: "October 2025", + descriptionHtml: 'City council voted 6-1 to reject a contract with Flock Safety after an overwhelmingly negative public response, citing privacy concerns, government overreach, poor use of taxpayer money, and concerns with data sharing.', + outcome: Outcome.ContractRejected + }, { cityState: "Eugene, OR", monthYear: "October 2025", @@ -341,7 +347,7 @@ const citiesRejectingFlock: CityRejection[] = [ cityState: "Stanwood, WA", monthYear: "September 2025", descriptionHtml: 'The City of Stanwood decided to shut off its Flock cameras pending a court judgment on whether data collected by Flock cameras are considered public records.', - outcome: Outcome.CamerasDeactivated, + outcome: Outcome.CamerasDeactivated }, { cityState: "Gig Harbor, WA", @@ -365,7 +371,7 @@ const citiesRejectingFlock: CityRejection[] = [ cityState: "Scarsdale, NY", monthYear: "August 2025", descriptionHtml: 'The Village of Scarsdale terminated its contract with Flock Safety after over 450 community members signed a petition, expressing concerns over privacy and the system\'s data sharing practices.', - outcome: Outcome.ContractCanceled, + outcome: Outcome.ContractCanceled } ].sort((a, b) => { const [aMonth, aYear] = a.monthYear.split(/\s/); @@ -395,6 +401,10 @@ const videos = [ { location: "Eugene, OR (2)", url: "https://drive.google.com/file/d/1d49xph-LJsbTzbc9WOYo8bvB8l2260s5/view?usp=drivesdk" + }, + { + location: "Lockhart, TX", + url: "https://lockharttx.new.swagit.com/videos/357764?ts=4437" } ].sort((a, b) => a.location.localeCompare(b.location));