The shapefiles I'm concerned with can be found here, though I'm sure this could apply to any shapefile using coordinates based on state plane coordinates:
http://dor.wa.gov/content/FindTaxesAndRates/stshpdownloads.aspx
I'm currently using GeoTools, a java toolkit designed for reading in GIS shapefiles like these and displaying information about them. I am able to iterate through the file and display the polygons associated with each tax jurisdiction, but here's an example line of output:
Seattle|0.096|MULTIPOLYGON(((1157963.4622609913 862693.0463841558,
1157982.575083658 862880.4607074857, 1158623.4100880772
864826.6100303978, ... )))
Based on my research, these coordinates don't seem to line up with any of the typical coordinate systems. I'm expecting that they are derived from a coordinate system known as State Plane Coordinates, but currently don't seem to be in the right format even for those. I was hoping someone might know where these values come from and if there is a way to get GeoTools to output them in a more standardized Latitude/Longitude format.