1

When using Python anad fiona package to read a shapefile of Boston, I am getting very large values in the tens of thousands. Why is this?

# Import Boston shapefile
shapefilename = 'ZIPCODES_NT_POLY'
shp = fiona.open(shapefilename + '.shp')
coords = shp.bounds
shp.close()

Then running coords gives the output

(33869.92130000144, 777617.2998000011, 330800.31099999696, 959741.1853)
PolyGeo
65.5k29 gold badges115 silver badges350 bronze badges
asked Aug 9, 2015 at 3:44
2

1 Answer 1

6

On the page you linked to (that describes the data you converted), it says:

MassGIS also projected the data into the Massachusetts State Plane Mainland coordinate system.

Consequently, values in the range that you are observing, are to be expected.

I am assuming that you were expecting latitude and longitude values but this data has been projected.

answered Aug 9, 2015 at 5:19
1
  • It is EPSG:26986 — NAD83 / Massachusetts Mainland Commented Aug 9, 2015 at 20:20

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.