- Aggregate data for more than 700k parcels in King County
- Average page load time of less than 1000ms for an uncached lookup
- Blends seemlessly with the UX of the 2024 King County website
Built to replace an existing web app of the same name from the mid-2000’s, this report has every piece of data about your parcel tracked by King County. Thanks to clever data management, spatial SQL queries, and caching it takes less than a second to lookup a property.
The biggest improvement is performance. On average it’s more than twice as fast to look up a parcel and in heavy traffic scenarios, it can be nearly instant.
June 6th, 2024King County GIS Center is launching the new Districts and Development Conditions Report (also referred to in short as the Districts Report) application to the public and King County internal staff!
January 19th, 2024Understanding your users is one of the most difficult problems in software development.
- Collects and displays quarterly usage stats for King County's GIS efforts
- Handle ArcMap, ArcGIS Pro, and ArcGIS Online usage data
- Stores and reports on historical usage data by year
Built to replace an excel spreadsheet generated from a few SQL queries and a rather complex Access database the Usage reporting web app is an internal only product of the King County GIS Center that allows us to show our customers how much value they’re getting from our ESRI licensed apps like ArcMap, ArcGIS Online, and ArcGIS Pro. A quarterly report is produced from this app that KC employes can review on the King County State of GIS website.
Given that ESRI is ending support for ArcGIS Desktop in 2026, the King County GIS Center needed to understand the migration of users from ArcGIS Desktop to ArcGIS Pro.
- Replaces prior web app built using Microsoft's Silverlight technology
- Handles millions of road assets in King County
- A modern interactive web mapping app
Built to support the Roads department at King County, the Road Assets Editor, is an interactive mapping and asset management web app. It allows you to see every road asset in King County, create new assets, and update the properties of existing assets like road signs, curbs, and crosswalks. This app is used everyday to manage the process of improving the County’s road system.
Today I woke up early at 7 AM and drove down to the UW Tacoma campus to present at the WAGISA conference.
May 21th, 2022The Road Assets Editor or RAE is a tool that enables employees to review all road assets built in King County.
April 17th, 2022When I deploy my ASP.NET Core 6 app I want it to gather CSV formatted data and ingest it into SQLite as part of its startup process.
- Investigate the portablity of Local, Tollfree, and Wireless numbers
- Validate Phone Number ownership
- Handles up to 350 Phone Numbers in 20 seconds
When large organizations switch VOIP phone service providers often they bring their existing phone numbers with them. I built this tool that accepts phone numbers in groups of up to a few hundred and investigates each of them to verify that they can be ported to our network. It also shows the user the current ownership of each number so that they can verify and audit the numbers that they are submitting to us before we begin the complex process of bringing them over to our network. Our customers love this tool. 🥰
- ~700k Entries Ingested Daily
- Web App Supports HTTP/2
- Average Page Load Time of 340ms
In support of my brother's company, I wrote a console application that scrapes phone numbers that are available for purchase from a pair of SOAP APIs and a few REST API, and then aggregates them into a locally hosted database. You can review the results of the ingest process and quickly lookup available phone numbers on the Accelerate Networks website.
Initially it received an ‘F’ grade when I ran it through the SecurityHeaders.com benchmark. This wasn’t the result I was looking for. Luckily, the solution is wildly simple.
November 29, 2019Recently I built an ASP.NET Core 3.0 MVC Web app that acts as a front end for a group of APIs that are each supported by a different third-party vendor.
- 28.1K Users a Month
- ~50% of Users on IE 11 or Below
- Average Page Load Time of 765ms
My primary responsibility at Kitsap County was maintaining the public parcel information system. Parcel Details is a web app that allows anyone to look up a tax parcel in Kitsap County. Parcel Details was originally an ASP.NET 4 WebForms project; In the summer of 2018 I rebuilt Parcel Details as an ASP.NET Core MVC project. What I'm most proud of is getting the average page weight down from 6 MBs to less than 200 KBs.
On Monday morning just before 11 AM my supervisor walked into my cube. “Hey Tom, did you change anything about the voting precincts query lately?”
July 30, 2019I’m in the process of porting a web app from .NET Framework to dotnet core.
May 11, 2019Parcel Details is a monolithic .NET web app written using the now deprecated Web Forms framework that Microsoft introduced in 2002
Feburary 7, 2019About 60 percent of its users enter Parcel Details through the search page. The search page calls out to a SOAP service with query and then it’s returned a JSON payload of results.
January 17, 2019Big pushes are being made in major cities across the Northwest to rethink their zoning codes.
January 4, 2019Tax Descriptions are extremely difficult to parse, let alone meaningfully understand, if you're not a surveyor or parcel specialist.
November 7, 2018I've been reading a lot of HackerNews the last few months. One of the ideas that I've picked up from reading the comments there has been the idea of creating short feedback loops.
June 17, 2018One of the UX issues I’ve been struggling with is designing my web apps to make their workflow as clear as possible.
June 15, 2018Parcel Details is a public service offered by Kitsap County that allows anyone to look up information on a parcel of land using a tax account, street address, or parcel ID number.
- 1.5K Users a Month
- 25.35ms Server Response Time
- Average Page Load Time of 516ms
Plats Search is web app that allows you to look up survey and plat documents related to a tax parcel. Getting a hold of Plat Records from most Counties in Washington requires going through the formal records request process. Plats Search circumvents this process by allowing people to search for Plats related to a tax parcel and directly download scans of those source documents.
I recently upgraded an ASP.NET Core 2.2 web app to 3.0. As part of this process I took some time to review the existing code base.