Day: October 27, 2025

Show Only ...
Maps - Photos - Videos

It was an interesting morning …

Discovered a thumb tack in my front bike tire on way out. Pulled it and air started to leak, put it back in and the leak stopped. I probably should pull that later, and hopefully the fix-a-flat will do the magic or otherwise I’ll need to patch that. All while that was happening, I watch as one of my elderly neighbors crashed her car into an old brick fireplace and tree at her place. She looked dazed but okay, maybe I should have gotten involved, but I was running late and she looked okay. Cold ride into the office with the wind and freezing temperatures but other then that fairly quiet. As of the lunch hour, my bike tire is still holding air, I should be able to get home. I kind of want to pull the tack and patch the hole but I’m okay leaving it in if I can make commute through the rest of the week.

Largest private acerage owners in each county

What private property owner has the most acerage by county? I've been playing with these queries in R, trying to pull this data to make maps and analysis by using overly complex postgresql queries. At some point I'll upload the R code up into Github, but for now, here is the PostgresSQL query that actually ran relatively quickly -- 25 seconds or so on my old laptop.

      SELECT
        primary_owner,
        county_name,
        avg(ST_X(geom)) as x,
        avg(ST_Y(geom)) as y,
        sum(acres) as av
      INTO TEMPORARY propTot
      FROM
        nytax_ctr_point
      WHERE
        "roll_section"='1' AND
        "owner_type"='8' AND
        "acres" < 1000
      GROUP BY  
        primary_owner, county_name;

  SELECT
    t1.*
  FROM
    propTot t1
  RIGHT JOIN (
    SELECT county_name, max(av) as av
    FROM propTot
    GROUP BY county_name
  ) t2
  ON t1.county_name = t2.county_name AND
  t1.av = t2.av;

Largest private acerage owners in each county