shaperead

Read vector features and attributes from shapefile

Description

example

S = shaperead(filename) reads the shapefile, filename, and returns an N-by-1 geographic data structure array in projected map coordinates (a mapstruct). The geographic data structure combines geometric and feature attribute information. shaperead supports the ordinary 2-D shape types: 'Point', 'Multipoint', 'PolyLine', and 'Polygon'.

example

S = shaperead(filename,Name,Value) returns a subset of the shapefile contents in S, as determined by the name-value pair arguments. Use RecordNumbers, BoundingBox, and Selector to select which features to read. If you use more than one of these parameters in the same call, you receive the intersection of the records that match the individual specifications. For instance, if you specify values for both RecordNumbers and BoundingBox, you import only those features with record numbers that appear in your list and that also have bounding boxes intersecting the specified bounding box.

If you do not specify any parameters, shaperead returns an entry for every non-null feature and creates a field for every attribute.

[S,A] = shaperead(___) returns an N-by-1 geographic data structure array, S, containing geometric information, and a parallel N-by-1 attribute structure array, A, containing feature attribute information.

Examples

collapse all

Read the entire concord_roads.shp shapefile, including the attributes in concord_roads.dbf. The shaperead function returns a mapstruct with X and Y coordinate vectors.

S = shaperead('concord_roads.shp')
S=609×1 struct array with fields:
    Geometry
    BoundingBox
    X
    Y
    STREETNAME
    RT_NUMBER
    CLASS
    ADMIN_TYPE
    LENGTH

Specify a bounding box to limit the data returned by shaperead . In addition, specify the names of the attributes you want to read.

bbox = [2.08 9.11; 2.09 9.12] * 1e5;
S = shaperead('concord_roads','BoundingBox',bbox,...
              'Attributes',{'STREETNAME','CLASS'})
S=87×1 struct array with fields:
    Geometry
    BoundingBox
    X
    Y
    STREETNAME
    CLASS

Read road data only for class 4 and higher road segments that are at least 200 meters in length. Note the use of an anonymous function in the selector.

S = shaperead('concord_roads.shp','Selector',...
           {@(v1,v2) (v1 >= 4) && (v2 >= 200),'CLASS','LENGTH'})
S=115×1 struct array with fields:
    Geometry
    BoundingBox
    X
    Y
    STREETNAME
    RT_NUMBER
    CLASS
    ADMIN_TYPE
    LENGTH

Determine the number of roads of each class.

n = histcounts([S.CLASS],'BinLimits',[1 7],'BinMethod','integer')
n = 1×7

     0     0     0     7    93    15     0

Display a histogram of the number of roads that fall in each category of length.

figure
histogram([S.LENGTH])

Read a shapefile of worldwide city names and locations given in latitude and longitude. Note how shaperead returns a geostruct because you specified the 'UseGeoCoords' parameter.

S = shaperead('worldcities.shp', 'UseGeoCoords', true)
S=318×1 struct array with fields:
    Geometry
    Lon
    Lat
    Name

Input Arguments

collapse all

File name, specified as a string scalar or character vector. filename refers to the base name or full name of one of the component files in a shapefile. If the main file (with extension .shp) is missing, shaperead throws an error. If either of the other files is missing, shaperead issues a warning.

Make sure that your machine is set to the same character encoding scheme as the data you are importing. For example, if you are trying to import a shapefile that contains Japanese characters, configure your machine to support the Shift-JIS encoding scheme.

Name-Value Pair Arguments

Specify optional comma-separated pairs of Name,Value arguments. Name is the argument name and Value is the corresponding value. Name must appear inside quotes. You can specify several name and value pair arguments in any order as Name1,Value1,...,NameN,ValueN.

Example: 'Attributes',{'STREETNAME','LENGTH'}

Record numbers, specified as the comma-separated pair consisting of 'RecordNumbers' and a vector of integers. Use the parameter RecordNumbers to import only features with listed record numbers.

Data Types: double

Bounding box, specified as the comma-separated pair consisting of 'BoundingBox' and a 2-by-2 matrix. BoundingBox has the form [xmin,ymin;xmax,ymax], for map coordinates, or [lonmin,latmin;lonmax,latmax] for geographic coordinates. Use the parameter BoundingBox to import only features whose bounding boxes intersect the specified box. The shaperead function does not trim features that partially intersect the box.

Data Types: double

Selector, specified as the comma-separated pair consisting of 'Selector' and a cell array containing a function handle and one or more attribute names. The function must return a logical scalar. Use the Selector parameter to import only features for which the function, when applied to the corresponding attribute values, returns true. For more information about function handles, see Create Function Handle (MATLAB).

Attribute names, specified as the comma-separated pair consisting of 'Attributes' and a cell array of attribute names. Use the parameter Attributes to include listed attributes and set the order of attributes in the structure array. Use {} to omit all attributes.

Flag to return shapefile contents in a geostruct, specified as the comma-separated pair consisting of 'UseGeoCoords' and false or true.

When UseGeoCoords is set to true, the shapefile contents are returned in a geostruct. Use this parameter when you know that the x- and y- coordinates in the shapefile actually represent longitude and latitude data. If you do not know whether you are working with geographic or map coordinates, see Mapstructs and Geostructs.

Output Arguments

collapse all

Vector geographic features, returned as an N-by-1 map geographic data structure array. Unless UseGeoCoords is true, S is a mapstruct and contains an element for each non-null, spatial feature in the shapefile.

Feature attribute information, returned as an N-by-1 attribute structure array corresponding to array S.

The fields in the output structure arrays S and A depend on the type of shape contained in the file and the names and types of attributes included in the file. The shaperead function supports the following four attribute types: numeric and floating (stored as type double in MATLAB®) and character and date (stored as char array).

Introduced before R2006a