Mapping

Show Only ...
Maps - Photos - Videos

Final USGS DRG Topographic Map Update

Back when I was in Boy Scouts, we often used 1:24k quadrangle topographic maps from the USGS. These maps from the pre computer age, manually drafted, they are no longer updated in favor of GIS data sets and the computer created National Map product. Some of the trails and landmarks not in the GNIS dataset never made it over to the new maps - especially on state land. And the National Map topographic maps are hardly the works of art that many the old topographic maps were. 

You can download both the historical and modern maps for free here http://prd-tnm.s3.amazonaws.com/index.html?prefix=StagedProducts/

Final USGS DRG Topographic Map Update

If you are using a projected coordinate system, finding a location from a bearing and a distance is easy πŸ—Ί

If you are using a projected coordinate system, finding a location from a bearing and a distance is easy πŸ—Ί

newX = startX + distance * sin(bearing/180*pi)

newY = startY + distance * cos(bearing/180*pi)

Distance is in map units, so if you are working in UTM then that’s meters.

Bearing is in compass degrees, due north is 0, due east is 90, etc.

Creating Digital Surface Models GeoTIFF Using National Map Downloader, LiDAR Point Clouds and PDAL πŸ—Ί

Find LiDAR Point Clouds on the National Map Downloader: https://apps.nationalmap.gov/downloader/#/

Select Find Elevation Source Data (3DEP) – Lidar, IfSAR

Search for LiDAR Point Cloud (LPC)

Click Export all results as a TXT file and save to a directory.

Then run this Unix command on the text file to download point clouds:

cat data.txt | tr -d '\n' | xargs -d '\r' -I {} wget -c -nc '{}'

Next create a pipeline.txt for pdal with the classification (For DSM, 1 are unclassified points like buildings and treetops, while 2 are ground points, if you want a DEM, you can also make them this way too with Classification of 2:2):

{ 
    "pipeline": [
        { 
            "type": "readers.las"
        },
        {
            "type": "filters.range",
            "limits": "Classification[1:1]"
        },
        {
            "gdaldriver":"GTiff",
            "resolution": 1.0,
            "output_type": "max",
            "type":"writers.gdal"
        }
    ]
}

Next convert the point clouds into digital surface model (GeoTIFF), you can use this shell command with xargs to go over each LAS file, using the above pipeline:

ls *.laz | xargs -I {} basename {} .laz | xargs -P3 -I {} pdal pipeline pipeline.txt --readers.las.filename={}.laz --writers.gdal.filename={}.tif

The above command can be somewhat slow depending on how many LAZ point clouds you need to go through and your selected resolution. -P3 sets the number of parallel process (3) which can help speed things up a bit.

Now we have the digital surface models raster that can be used in QGIS for hillshade for 3D.

Build a virtual raster (dsm.vrt) for easy loading into QGIS rather than loading separate files.

gdalbuildvrt dsm.vrt *.tif

Digital Terrain Models

Lately I have been experimenting with digital terrain models extracted from the LIDAR point cloud. It allows me to measure the height of buildings and tree cover and can be used for better 3d modeling. 

Digital Terrain Models

Don’t Confuse Your Highland and Highlands

One should never confuse the Town of Highlands in Orange County (containing West Point, Bear Mountain, and Bear Mountain Bridge on the Hudson River) with the Town of Highland in Sullivan County (containing Barryville, Eldred, Highland Lake, Minisink Ford and Yulan on Delaware River), with the Hamlet of Highland in the Town of Lloyd in Ulster County (which also borders the Hudson River, and contains the Mid-Hudson Bridge to Poughkeespie).

The hamlet of Highland is pronounced as two seperate words — “high land”, stressing the syllables. In contrast, the Town of Highland in Sullivan County and Highlands in Orange County rhymes with “island”.

You can also drive from Ulster County to Orange County to Sullivan County, without ever crossing any other counties.

Cattle in America (2017)

The other day, I was looking at George Jenks' dot map of hogs in America on Facebook. 70 years ago in 1953, George Jenks wrote about and helped popularize the technique. It's fairly common these days, as it gives a good way to spot dense clusters of population.

Cattle in America (2017)