Heron

This is the first release of an add-on which enables the import of GIS data from various sources into the Rhino/Grasshopper environment, located, scaled and cropped based on an Earth Anchor Point and a clipping polygon.  Sources of GIS data include Shapefiles, USGS IMG/HGT Elevation files and ArcGIS REST Services over the web.

The add-on includes eight components in two categories:

GIS REST

  • ESRI REST Service Geocode. Get a Decimal Degree coordinate from an address or Point-of-Interest with the Geocode service provided by ESRI.  
  • Get REST Service Layers. Discover data layers  from various data sources on the web. If the layers are a vector type, they return data similar to a shapefile, with geometry and associated data fields.  To be used with the Get REST Vector or Get REST Raster component depending on the data type.
  • Get REST Raster. Grabs JPGs of imagery from the specified web source.  Once downloaded to a folder the image can be located and scaled to match the boundary in real world units (meters) with the use of the image frame.
  • Get REST Vector.  Queries the web source for geometry and associated data fields.  For instance demographic information from the US Census can be referenced.

GIS Tools

  • Decimal Degrees to XY.  Convert Decimal Degrees to XY coorindates based on the EarthAnchorPoint.
  • Import SHP.  Imports Shapefiles using OGR Libraries. Output is in the form of points (for now) which can then be connected to form polylines.  For Shapefiles with Multipolygons (ie building footprints with courtyards), the component reads mulitple branches of points per Feature.  To get the footprint, you will need to draw a polyline for each branch, shift the branches and use the Boundary Surface component.
  • Import Topo.  Imports IMG and (STRM) HGT files using GDAL Libraries.  Output is in the form of a mesh.
  • Set EarthAnchorPoint.  Runs a macro to set the Earth Anchor Point in Rhino.  This is important to minimize distortion translating from the curved surface of the Earth to Euclidean coordinates.

Special thanks go to the vibrant GH community, the masterful guidance of Andrew Heumann and endless patience of George Waters.

CHANGE SCR FROM IMPORTED DATAS and others questions

Hello everyone,

Thank you for this superb plugin! I have a few questions regarding its configuration, here they are in order:

  • I managed to import GIS vector data from a specific server. However, the datas were encoded in a different projection than Heron's. Is it possible to modify the projection system so that the geometries are displayed correctly?

  • Only 1000 objects are displayed out of several thousand. Is it possible to display all the objects contained in the layers?

  • Can someone provide me with more details on how to configure the boundary curve? Do the XY coordinates of the four corners of the boundary rectangle correspond to precise GPS coordinates in the WMS84 projection system?

Many thanks!

charles

  • up

    Brian Washburn

    Hi Charles,

    • The latest version of Heron v.0.4.1 available in the PackageManager has the ability to set the projection system used by Heron with the SetSRS component.
    • Some REST services limit the number of Records they return per query in order to not become over-taxed.  The RESTVector component abides by these limits.  However, the GdalOgr2Ogr component allows for "paging" of the service so that you can download all the records within your boundary.  But keep in mind this may take some time. 

    • I would always set the EarthAnchorPoint first with SetEAP so that Rhino/Heron know where 0,0 is in the world.  Once you've done this, Heron will interpret the vertexes of the boundary into the coordinate system set with SetSRS (default is WGS84).

    -Brian

    2