Skip to content

Commit 55d6ed2

Browse files
author
Vincent Landau
committed
Merge branch 'main' of github.com:Circuitscape/SpatialGraphs.jl into main
2 parents f77e741 + 0efd695 commit 55d6ed2

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/structs.jl

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
An abstract type representing a spatially referenced graph.
66
7-
An AbstractSpatialGraph must contain the following attributes/element:
7+
An AbstractSpatialGraph must contain the following field:
88
99
- `graph::AbstractGraph`
1010
"""
@@ -15,7 +15,7 @@ abstract type AbstractSpatialGraph{T} <: AbstractGraph{T} end
1515
1616
An abstract type representing a spatially referenced graph, with graph vertices corresponding to pixels in a raster.
1717
18-
An AbstractSpatialGraph must contain the following attributes/element:
18+
An AbstractRasterGraph must contain the following fields:
1919
2020
- `graph::AbstractGraph`
2121
- `vertex_raster::GeoArray`
@@ -45,8 +45,6 @@ end
4545
SimpleRasterGraph{T}
4646
4747
A composite type for a spatially referenced graph. Vertices are spatially referenced based on a raster.
48-
49-
A RasterGraph
5048
"""
5149
mutable struct SimpleRasterGraph{T<:Integer} <: AbstractRasterGraph{T}
5250
graph::SimpleGraph{T} # A SimpleGraph

0 commit comments

Comments
 (0)