annotate pgLatLon/create_test_db.data.sql @ 530:6bc81898fd3b
Fixed typo in documentation and comments: "indicies" -> "indices"; Marked make-doc.sh as executable
author |
jbe |
date |
Sun Aug 21 16:28:21 2016 +0200 (2016-08-21) |
parents |
96ee2db56bec |
children |
|
rev |
line source |
jbe@529
|
1
|
jbe@529
|
2 INSERT INTO "test" ("location", "area") SELECT
|
jbe@529
|
3 epoint((asin(2*random()-1) / pi()) * 180, (2*random()-1) * 180),
|
jbe@529
|
4 ecircle((asin(2*random()-1) / pi()) * 180, (2*random()-1) * 180, -ln(1-random()) * 1000)
|
jbe@529
|
5 FROM generate_series(1, 10000);
|
jbe@529
|
6
|