1
0
mirror of https://github.com/jbranchaud/til synced 2026-07-05 17:00:17 +00:00

Fix file name typo

This commit is contained in:
jbranchaud
2016-05-25 21:29:30 -05:00
parent 0c9602e9f3
commit 6ce02bde05
+18
View File
@@ -0,0 +1,18 @@
# Assumed Radius Of The Earth
Using the
[`earthdistance`](https://www.postgresql.org/docs/8.3/static/earthdistance.html)
module, we can get the assumed radius of the earth (in meters).
```sql
> create extension cube;
CREATE EXTENSION
> create extension earthdistance;
CREATE EXTENSION
> select earth();
earth
---------
6378168
```