-
-
Notifications
You must be signed in to change notification settings - Fork 878
/
Copy pathcrs.dart
107 lines (93 loc) · 2.74 KB
/
crs.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
import 'dart:async';
import 'dart:ui';
import 'package:flutter_map/src/geo/crs.dart';
import 'package:latlong2/latlong.dart';
import 'package:logger/logger.dart';
class NoFilter extends LogFilter {
@override
bool shouldLog(LogEvent event) => true;
}
typedef Result = ({
String name,
Duration duration,
});
Future<Result> timedRun(String name, dynamic Function() body) async {
Logger().i('running $name...');
final watch = Stopwatch()..start();
await body();
watch.stop();
return (name: name, duration: watch.elapsed);
}
// NOTE: to have a more prod like comparison, run with:
// $ dart compile exe benchmark/crs.dart && ./benchmark/crs.exe
//
// If you run in JIT mode, the resulting execution times will be a lot more similar.
Future<void> main() async {
Logger.level = Level.all;
Logger.defaultFilter = NoFilter.new;
Logger.defaultPrinter = SimplePrinter.new;
final results = <Result>[];
const N = 100000000;
const crs = Epsg3857();
results.add(await timedRun('Concrete type: ${crs.code}.latLngToXY()', () {
double x = 0;
double y = 0;
for (int i = 0; i < N; ++i) {
final latlng = LatLng((i % 90).toDouble(), (i % 180).toDouble());
final (cx, cy) = crs.latLngToXY(latlng, 1);
x += cx;
y += cy;
}
return x + y;
}));
results.add(await timedRun('Concrete type: ${crs.code}.latLngToOffset()', () {
double x = 0;
double y = 0;
for (int i = 0; i < N; ++i) {
final latlng = LatLng((i % 90).toDouble(), (i % 180).toDouble());
final p = crs.latLngToOffset(latlng, 1);
x += p.dx;
y += p.dy;
}
return x + y;
}));
const crss = <Crs>[
Epsg3857(),
Epsg4326(),
];
for (final crs in crss) {
results.add(await timedRun('${crs.code}.latLngToXY()', () {
double x = 0;
double y = 0;
for (int i = 0; i < N; ++i) {
final latlng = LatLng((i % 90).toDouble(), (i % 180).toDouble());
final (cx, cy) = crs.latLngToXY(latlng, 1);
x += cx;
y += cy;
}
return x + y;
}));
results.add(await timedRun('${crs.code}.latlngToPoint()', () {
double x = 0;
double y = 0;
for (int i = 0; i < N; ++i) {
final latlng = LatLng((i % 90).toDouble(), (i % 180).toDouble());
final point = crs.latLngToOffset(latlng, 1);
x += point.dx;
y += point.dy;
}
return x + y;
}));
results.add(await timedRun('${crs.code}.pointToLatLng()', () {
double x = 0;
double y = 0;
for (int i = 0; i < N; ++i) {
final latlng = crs.offsetToLatLng(Offset(x, y), 1);
x += latlng.longitude;
y += latlng.latitude;
}
return x + y;
}));
}
Logger().i('Results:\n${results.map((r) => r.toString()).join('\n')}');
}