File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change 4
4
5
5
An abstract type representing a spatially referenced graph.
6
6
7
- An AbstractSpatialGraph must contain the following attributes/element :
7
+ An AbstractSpatialGraph must contain the following field :
8
8
9
9
- `graph::AbstractGraph`
10
10
"""
@@ -15,7 +15,7 @@ abstract type AbstractSpatialGraph{T} <: AbstractGraph{T} end
15
15
16
16
An abstract type representing a spatially referenced graph, with graph vertices corresponding to pixels in a raster.
17
17
18
- An AbstractSpatialGraph must contain the following attributes/element :
18
+ An AbstractRasterGraph must contain the following fields :
19
19
20
20
- `graph::AbstractGraph`
21
21
- `vertex_raster::GeoArray`
45
45
SimpleRasterGraph{T}
46
46
47
47
A composite type for a spatially referenced graph. Vertices are spatially referenced based on a raster.
48
-
49
- A RasterGraph
50
48
"""
51
49
mutable struct SimpleRasterGraph{T<: Integer } <: AbstractRasterGraph{T}
52
50
graph:: SimpleGraph{T} # A SimpleGraph
You can’t perform that action at this time.
0 commit comments