Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ GeometryOpsCore = "=0.1.5"
LibGEOS = "0.9.2"
LinearAlgebra = "1"
Proj = "1"
SortTileRecursiveTree = "0.1"
SortTileRecursiveTree = "0.1.2"
Statistics = "1"
TGGeometry = "0.1"
Tables = "1"
Expand Down
16 changes: 15 additions & 1 deletion src/GeometryOps.jl
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,15 @@ using GeoInterface
using GeometryBasics
using LinearAlgebra, Statistics

using GeometryBasics.StaticArrays

import Tables, DataAPI
import GeometryBasics.StaticArrays
import DelaunayTriangulation # for convex hull and triangulation
import ExactPredicates
import Base.@kwdef
import GeoInterface.Extents: Extents
import SortTileRecursiveTree
import SortTileRecursiveTree: STRtree

const GI = GeoInterface
const GB = GeometryBasics
Expand All @@ -44,7 +47,16 @@ include("utils/SpatialTreeInterface/SpatialTreeInterface.jl")

using .LoopStateMachine, .SpatialTreeInterface

include("utils/NaturalIndexing.jl")
using .NaturalIndexing

# Preparations and prepared geometry
include("preparations/preparations.jl")
include("preparations/prepared_geometry.jl")
include("preparations/monotone_chain.jl")

# Methods - things that don't change the contents
# of the geometry
include("methods/angles.jl")
include("methods/area.jl")
include("methods/barycentric.jl")
Expand Down Expand Up @@ -73,6 +85,8 @@ include("methods/geom_relations/within.jl")
include("methods/orientation.jl")
include("methods/polygonize.jl")

# Transformations - things that return a copy of the input geometry,
# but transformed in some way.
include("transformations/extent.jl")
include("transformations/flip.jl")
include("transformations/reproject.jl")
Expand Down
Loading
Loading