ReQL command reference - RethinkDB
ReQL command: point
Command syntax
r.point(longitude, latitude) → point
Description
Construct a geometry object of type Point. The point is specified by two floating point numbers, the longitude (−180 to 180) and latitude (−90 to 90) of the point on a perfect sphere. See Geospatial support for more information on ReQL’s coordinate system.
Example: Define a point.
r.table("geo").insert(
r.hashMap("id", 1)
.with("name", "San Francisco")
.with("location", r.point(-122.423246, 37.779388))
).run(conn);
Related commands
Get more help
Couldn't find what you were looking for?
- Ask a question on Stack Overflow
- Chat with us and our community on Slack
- Talk to the team on IRC on #rethinkdb@freenode.net — via Webchat
- Ping @rethinkdb on Twitter
- Post an issue on the documentation issue tracker on GitHub
Contribute: edit this page or open an issue