We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Accessors:
s2_is_collection()
s2_is_valid()
s2_dimension()
s2_num_points()
s2_is_empty()
s2_area()
s2_length()
s2_perimeter()
s2_x()
s2_y()
s2_project()/s2_project_normalized()
s2_interpolate()
s2_distance()
s2_max_distance()
Bounds:
s2_bounds_cap()
s2_bounds_rect()
Transformers:
s2_centroid()
s2_point_on_surface()
s2_boundary()
s2_closest_point()
s2_clearance_line_between()
s2_difference()
s2_sym_difference()
s2_intersection()
s2_union()
s2_coverage_union_agg()
s2_union_agg()
s2_rebuild_agg()
s2_centroid_agg()
s2_rebuild()
s2_convex_hull()
s2_convex_hull_agg()
Predicates:
s2_contains()
s2_equals()
s2_intersects()
s2_intersects_box()
s2_dwithin()
The text was updated successfully, but these errors were encountered:
I'm happy to help on this! I might have some time in the two forthcoming months.
Sorry, something went wrong.
Awesome! I haven't had time to make any progress but I had planned to do a few here and there over the summer as time allows.
No branches or pull requests
Accessors:
s2_is_collection()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-accessors.R#L2-L17s2_is_valid()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-accessors.R#L19-L69s2_dimension()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-accessors.R#L19-L69s2_num_points()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-accessors.R#L78-L88s2_is_empty()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-accessors.R#L90-L98s2_area()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-accessors.R#L100-L116s2_length()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-accessors.R#L118-L125s2_perimeter()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-accessors.R#L127-L139s2_x()
ands2_y()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-accessors.R#L141-L152s2_project()/s2_project_normalized()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-accessors.R#L154-L184s2_interpolate()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-transformers.R#L630-L655s2_distance()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-accessors.R#L186-L206s2_max_distance()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-accessors.R#L208-L228Bounds:
s2_bounds_cap()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-bounds.R#L2-L13s2_bounds_rect()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-bounds.R#L15-L44Transformers:
s2_centroid()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-transformers.R#L2-L33s2_point_on_surface()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-transformers.R#L35-L47s2_boundary()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-transformers.R#L49-L66s2_closest_point()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-transformers.R#L68-L71s2_clearance_line_between()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-transformers.R#L73-L89s2_difference()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-transformers.R#L91-L130s2_sym_difference()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-transformers.R#L132-L174s2_intersection()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-transformers.R#L176-L243s2_union()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-transformers.R#L245-L330s2_coverage_union_agg()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-transformers.R#L366-L383s2_union_agg()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-transformers.R#L385-L421s2_rebuild_agg()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-transformers.R#L423-L440s2_centroid_agg()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-transformers.R#L442-L456s2_rebuild()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-transformers.R#L483-L602s2_convex_hull()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-transformers.R#L657-L664s2_convex_hull_agg()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-transformers.R#L667-L714Predicates:
s2_contains()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-predicates.R#L2-L23s2_equals()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-predicates.R#L68-L81s2_intersects()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-predicates.R#L83-L101s2_intersects_box()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-predicates.R#L103-L124s2_dwithin()
: https://github.com/r-spatial/s2/blob/main/tests/testthat/test-s2-predicates.R#L149-L182The text was updated successfully, but these errors were encountered: