forked from stevage/which-geocoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplans.js
1262 lines (1235 loc) · 44.4 KB
/
plans.js
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
providers:
api: {
docs: url to documentation
autocomplete: is there an autocomplete API? (false if no support, true or url to documentation for it)
geocode: is there a geocoder API? (false/true/url)
reverse: is there a reverse geocoder API? (false/true/url)
locationWeighting: does the geocoder API have a mechanism to bias towards a particular location? (false/true/url)
}
quality: string, description of quality of data.
Plans:
termsUrl: URL to terms and conditions
group: provider name
name: plan name
thirdParty=false: can combine results with third party maps? Defaults to no.
humanOnly=false: must queries be triggered by human actions? (ie, no bulk queries?) Defaults to no.
humanOnlyNote: string, a text annotation to the above value.
permanent=false: boolean or string, can geocodes be stored indefinitely? Defaults to no.
includedRequestsMonthly: how many requests included in monthly plan (defaults to 30*includedRequestsDaily)
includedRequestsDaily: how many requests per day included in monthly plan.
maxRequestsMonthly: cap on monthly requests, defaults to includedRequestsMonthly
conditions: array of dot points, things to be aware of
bonuses: array of dot points, good things
publicRequired=false: does your app have to be public facing to qualify
freeRequired=false: does your app have to be available at zero cost to qualify
dollarsMonthly: base monthly rate
currencySymbol="$": currencySymbol symbol (just for display)
cacheLimitDays: 30
openData: boolean, is the service based heavily on open data such as OpenStreetMap and OpenAddresses?
extra: string describing how much extra transactions cost. `extra: per(3, 5)` means "$3 per 5000 extra transactions".
extraPer1000: number, dollars per thousand extra transactions. (0.6 in the above case)
sortDollars: number. Where there is not a precise publicly available dollar figure, this is an approximate annual fee for sorting.
autocompleteMultiplier: number. 0.1 means that 10 autocomplete requests count as 1 regular geocode request.
*/
const MONTH = 30.4;
// Used for converting strange transaction quantities into 1000s.
// per(3, 5) = "+ $3 per 5k ($0.60/1k)"
function per(dollars, transK) {
return '+ $' + dollars + ' per ' + transK + 'k ($' + (dollars / transK).toFixed(2) + '/1k)';
}
const providers = {
ArcGIS: {
api: {
docs: 'https://developers.arcgis.com/rest/geocode/api-reference/overview-world-geocoding-service.htm',
geocode: 'https://developers.arcgis.com/rest/geocode/api-reference/geocoding-find-address-candidates.htm',
reverse: 'https://developers.arcgis.com/rest/geocode/api-reference/geocoding-reverse-geocode.htm',
autocomplete: 'https://developers.arcgis.com/rest/geocode/api-reference/geocoding-suggest.htm'
},
termsUrl: 'https://www.esri.com/en-us/legal/terms/full-master-agreement/mla-e204-e300-english',
openData: false,
},
Gisgraphy: {
api: {
docs: 'https://www.gisgraphy.com/documentation/index.php',
autocomplete: 'https://www.gisgraphy.com/documentation/user-guide.php#fulltextservice',
geocode: 'https://www.gisgraphy.com/documentation/user-guide.php#geocodingservice',
reverse: true,
locationWeighting: true, // 'prox'
},
termsUrl: 'https://www.gisgraphy.com/terms.php',
permanent: true,
humanOnly: false,
openData: true,
batch: 'https://premium.gisgraphy.com/products#batch',
quality:'★★☆ : OSM, OpenAddresses, Geonames...'
},
HERE: {
api: {
docs: 'https://developer.here.com/documentation',
autocomplete: 'https://developer.here.com/documentation/geocoder-autocomplete/topics/quick-start.html',
geocode: 'https://developer.here.com/documentation/geocoder/topics/quick-start.html',
reverse: 'https://developer.here.com/documentation/geocoder/topics/resource-reverse-geocode.html',
locationWeighting: true, // 'prox'
},
termsUrl: 'https://developer.here.com/terms-and-conditions',
permanent: '30 days',
humanOnly: true,
humanOnlyNote: "You are not allowed to: ... issue queries (i) not responsive to end user actions; or (ii) that are subsequent or automatic follow-up queries related to an initial query or end user action (such as triggering automatic Request based on an end user's search result); or otherwise modify queries to the HERE Materials; ",
}, OpenCage: {
api: {
docs: 'https://geocoder.opencagedata.com/api',
geocode: 'https://geocoder.opencagedata.com/api#forward-resp',
reverse: 'https://geocoder.opencagedata.com/api#reverse-resp',
autocomplete: false,
},
termsUrl: 'https://geocoder.opencagedata.com/terms',
cons: ['GNAF not included yet.']
}, Mapbox: {
api: {
geocode: 'https://www.mapbox.com/api-documentation/#geocoding',
reverse: 'https://www.mapbox.com/api-documentation/#search-for-places',
autocomplete: 'https://www.mapbox.com/api-documentation/#geocoding',
locationWeighting: 'Filtering by bounding box, and 5 mile proximity bias.'
},
termsUrl: 'https://www.mapbox.com/tos/#geocoding',
}, 'Geocode.xyz': {
api: {
geocode: 'https://geocode.xyz/api',
reverse: false,
autocomplete: false,
}
}, 'LocationIQ': {
api: {
geocode: 'https://locationiq.org/docs',
reverse: 'https://locationiq.org/docs',
autocomplete: false,
batch: 'https://locationiq.org/#batch-geocoding'
},
quality: '★☆☆ OpenStreetMap'
}, /*'Mapzen (RIP)': {
api: {
geocode: true,
reverse: true,
autocomplete: true,
locationWeighting: true
}
},*/ 'Tomtom': {
api: {
docs: 'https://developer.tomtom.com/online-search/online-search-documentation-search',
geocode: 'https://developer.tomtom.com/online-search/online-search-documentation-search/fuzzy-search',
autocomplete: true, // "typeahead"
reverse: 'https://developer.tomtom.com/online-search/online-search-documentation-search/geometry-search',
locationWeighting: true
},
cons: ['Can\'t display on an OSM or "open source" map.'],
termsUrl: 'https://developer.tomtom.com/terms-and-conditions',
permanent: '30 days',
}, 'Geocode.farm': {
api: {
docs: 'https://geocode.farm/geocoding/free-api-documentation/',
geocode: 'https://geocode.farm/geocoding/free-api-documentation/',
reverse: 'https://geocode.farm/geocoding/free-api-documentation/',
autocomplete: false,
locationWeighting: true
}
}, 'BING': {
api: {
docs: 'https://msdn.microsoft.com/en-us/library/ff701715.aspx',
geocode: 'https://msdn.microsoft.com/en-us/library/ff701714.aspx',
reverse: 'https://msdn.microsoft.com/en-us/library/ff701710.aspx',
autocomplete: 'https://msdn.microsoft.com/en-us/library/mt712650.aspx',
locationWeighting: 'https://msdn.microsoft.com/en-us/library/ff701704.aspx', // "User context parameters"
playUrl: 'http://www.bing.com/api/maps/sdkrelease/mapcontrol/isdk#autoSuggestUi+JS'
},
cons: ['"Autosuggest" is not exactly autocomplete.', 'Session management code required for cheapest pricing.'],
termsUrl: 'https://www.microsoft.com/en-us/maps/product/terms'
}, 'Mapquest': {
api: {
docs: 'https://developer.mapquest.com/documentation/geocoding-api/',
geocode: 'https://developer.mapquest.com/documentation/geocoding-api/',
reverse: 'https://developer.mapquest.com/documentation/geocoding-api/reverse/get/',
locationWeighting: true, // bounding-box
autocomplete: 'https://developer.mapquest.com/documentation/searchahead-api/', // "Search ahead"
},
quality: 'AU: ★★☆ Unit-level',
playUrl: 'https://developer.mapquest.com/documentation/samples/geocoding/v1/address/',
termsUrl: 'https://developer.mapquest.com/legal'
}, 'Maplarge': {
api: {
docs: 'http://www.maplarge.com/developer/geocoderapi', // wait for it!
geocode: true,
reverse: true,
autocomplete: false,
locationWeighting: false
},
cons: ['API documentation looks old and broken.']
}, 'Yahoo BOSS PlaceFinder': {
cons: ['Looks out of date and poorly maintained.'],
api: {}
}, 'Pitney-Bowes': {
cons: ['No public plan information'],
api: {
docs: 'https://locate.pitneybowes.com/',
geocode: true, // basic and premium
reverse: true, // basic and premium
autocomplete: 'https://locate.pitneybowes.com/geosearch',
// can't tell about locationWeighting, don't think I can see full API docs
},
termsUrl: 'https://www.pitneybowes.com/us/developer/subscription-agreement.html?tab2'
}, 'geocode.earth': {
api: {
geocode: true,
reverse: true,
autocomplete: true,
locationWeighting: true //"Filter results by bounding box, distance from a point, country, and more"
},
quality: "AU: ★★★ GNAF, elsewhere: ★☆☆ OSM + OpenAddresses"
}, 'Google': {
api: {
geocode: true,
reverse: true,
docs: 'https://developers.google.com/maps/documentation/geocoding/intro',
locationWeighting: 'https://developers.google.com/maps/documentation/geocoding/intro#Viewports', // viewport biasing
autocomplete: 'https://developers.google.com/places/web-service/autocomplete',
}, cons: ['Must use a Google Map (not Leaflet/Mapbox-GL-jS/OL)'],
quality: '★★★ Top-notch',
termsUrl: 'https://enterprise.google.com/maps/terms/us/maps_purchase_agreement_emea.html'
}, 'PSMA': {
quality: 'AU: ★★★ Authoritative',
api: {
geocode: true,
reverse: false,
autocomplete: 'https://developer.psma.com.au/api/predictive-address-verification/get/predictive/address'
},
playUrl: 'https://demo.psma.com.au/predictive-address-verification'
},
'SmartyStreets': {
api: {
geocode: true,
autocomplete: false, // true for US addresses only
reverse: false,
locationWeighting: false
}
}
};
const plans = [
{
group: 'ArcGIS',
name: 'Geosearch, Not Stored',
dollarsMonthly: 0,
includedRequestsMonthly: 1e6,
permanent: false,
url: 'https://developers.arcgis.com/features/geocoding/'
},
{
group: 'ArcGIS',
name: 'Geocode, Batch or Stored',
dollarsMonthly: 0,
includedRequestsMonthly: 0,
extraPer1000: 4,
permanent: true,
url: 'https://developers.arcgis.com/features/geocoding/'
// TODO figure out if third party maps ok etc.
},
{
group: 'Gisgraphy',
name: 'Standard',
dollarsMonthly: 235,
includedRequestsMonthly: 5184000,
requestsPerSecond: 0.5, // 30 per 60 seconds
url: 'https://premium.gisgraphy.com/pricing',
thirdParty: true,
publicRequired: false,
bonuses:['Entire SQL database can be downloaded.'],
freeRequired: false,
},
{
group: 'HERE',
name: 'Public Basic',
dollarsMonthly: 0,
includedRequestsMonthly: 15e3,
requestsPerSecond: 1,
extra: per(1, 2),
extraPer1000: 1 / 2,
maxRequestsMonthly: false,
url: 'https://developer.here.com/plans',
thirdParty: false,
publicRequired: true,
},
{ group: 'HERE',
name: 'Public Starter',
requestsPerSecond: 1,
dollarsMonthly: 49,
dollarsAnnually: 490,
includedRequestsMonthly: 100e3,
extra: per(1, 2),
extraPer1000: 1 / 2,
maxRequestsMonthly: false,
url: 'https://developer.here.com/plans',
thirdParty: false,
publicRequired: true
},
{
group: 'HERE',
name: 'Public Standard',
includedRequestsMonthly: 250e3,
extra: per(1, 2),
extraPer1000: 1 / 2,
maxRequestsMonthly: false,
requestsPerSecond: 2,
url: 'https://developer.here.com/plans',
dollarsMonthly: 119,
dollarsAnnually: 1190,
thirdParty: false,
publicRequired: true
},
{
group: 'HERE',
name: 'Public Pro',
includedRequestsMonthly: 1e6,
extra: per(1, 2),
extraPer1000: 1 / 2,
maxRequestsMonthly: false,
requestsPerSecond: 3,
url: 'https://developer.here.com/plans',
dollarsMonthly: 449,
dollarsAnnually: 4490,
thirdParty: false,
publicRequired: true
},
{
group: 'HERE',
name: 'Public Custom',
includedRequestsMonthly: undefined,
maxRequestsMonthly: undefined,
url: 'https://developer.here.com/plans',
dollarsMonthly: undefined,
custom: true,
publicRequired: true,
thirdParty: false, //?
sortDollars: 5000
},
{ group: 'HERE',
name: 'Business Starter',
includedRequestsMonthly: 50e3,
extra: per(1, 0.2),
extraPer1000: 1 / 0.2, // yep, $1 per 200 trans
maxRequestsMonthly: false,
requestsPerSecond: 1,
url: 'https://developer.here.com/plans',
dollarsMonthly: 199,
dollarsAnnually: 1990,
thirdParty: false,
publicRequired: false
},
{
group: 'HERE',
name: 'Business Standard',
includedRequestsMonthly: 100e3,
extra: per(1, 0.2),
extraPer1000: 1 / 0.2, // yep, $1 per 200 trans
maxRequestsMonthly: false,
requestsPerSecond: 2,
url: 'https://developer.here.com/plans',
dollarsMonthly: 349,
dollarsAnnually: 3490,
publicRequired: false,
thirdParty: false,
},
{
group: 'HERE',
name: 'Business Pro',
includedRequestsMonthly: 150e3,
extra: per(1, 0.2),
extraPer1000: 1 / 0.2, // yep, $1 per 200 trans
maxRequestsMonthly: false,
requestsPerSecond: 3,
url: 'https://developer.here.com/plans',
dollarsMonthly: 499,
dollarsAnnually: 4990,
thirdParty: false,
publicRequired: false
},
{
group: 'HERE',
name: 'Business Custom',
includedRequestsMonthly: undefined,
maxRequestsMonthly: undefined,
url: 'https://developer.here.com/plans',
dollarsMonthly: undefined,
bonuses: ['Permanent storage +$5k/year.'],
custom: true,
publicRequired: false,
permanent: true,
thirdParty: false, // presumably not
sortDollars: 10000 // this should be a formula based on requests...
},
{
group: 'BING',
name: 'Consumer, Free',
includedRequestsMonthly: 125e3/12,
maxRequestsMonthly: 125e3/12,
dollarsMonthly: 0,
publicRequired: true,
freeRequired: true,
permanent: true, // "except that geocodes may be stored locally only for use with your Company Applications. "
thirdParty: false, // not certain but I think so
conditions: ['Max 125,000 transactions per year'],
url: 'https://www.microsoft.com/en-us/maps/licensing/options',
autocompleteMultiplier: 0
}, {
group: 'BING',
name: 'Non-profit, Free',
includedRequestsDaily: 50000,
maxRequestsMonthly: 50000*MONTH,
dollarsMonthly: 0,
publicRequired: true,
permanent: true, // "except that geocodes may be stored locally only for use with your Company Applications. "
freeRequired: true, // "Applications that qualify for a limited website and consumer application use, which will be free of charge as defined in the SDKs"
conditions: [
'Must be non-profit.',
'Less than 50k transactions per 24 hours.'
],
thirdParty: false,
url: 'https://www.microsoft.com/en-us/maps/licensing/options',
autocompleteMultiplier: 0
}, {
group: 'BING',
name: 'Quote #1',
includedRequestsMonthly: 500e3 / 12, // annually
dollarsMonthly: 4620 / 12,
sortDollars: 3680,
permanent: true, // "except that geocodes may be stored locally only for use with your Company Applications. "
thirdParty: false,
autocompleteMultiplier: 0 // We think, based on the session key thing.
}, {
group: 'BING',
name: 'Quote #2',
includedRequestsMonthly: 1e6 / 12, // annually
dollarsMonthly: 6050 / 12,
sortDollars: 4818,
permanent: true, // "except that geocodes may be stored locally only for use with your Company Applications. "
thirdParty: false,
autocompleteMultiplier: 0
}, {
group: 'Mapbox',
name: 'Pay-as-you-go',
includedRequestsMonthly: 50e3,
maxRequestsMonthly: false,
dollarsMonthly: 0,
extra: '+ 50c/1000',
extraPer1000: 0.5,
publicRequired: true,
requestsPerSecond: 600 / 60,
freeRequired: true,
thirdParty: false,
conditions: ['No bulk jobs.', 'Must display on Mapbox map.','May not reveal lat/lon to user.', 'Must not cache at all.'],
// totalMonthly: requests => 0 + 0.50 * (Math.max(requests - 50e3, 0) / 1000),
humanOnly: true,
url: 'https://www.mapbox.com/pricing/'
}, {
group: 'Mapbox',
name: 'Commercial',
includedRequestsMonthly: 50e3,
maxRequestsMonthly: false,
dollarsMonthly: 499,
publicRequired: false,
thirdParty: false,
requestsPerSecond: 600 / 60,
conditions: ['No bulk jobs.', 'Must display on Mapbox map.','May not reveal lat/lon to user.', 'Must not cache at all.'],
extraPer1000: 0.5,
extra: '+$0.50 per 1000 requests',
// totalMonthly: requests => 499 + 0.50 * (Math.max(requests - 50e3, 0) / 1000),
humanOnly: true,
url: 'https://www.mapbox.com/pricing/',
}, {
group: 'Mapbox',
name: 'Enterprise',
includedRequestsMonthly: undefined,
maxRequestsMonthly: false,
dollarsMonthly: undefined,
custom:true,
publicRequired: false,
thirdParty: false,
requestsPerSecond: 1200 / 60,
permanent: true,
bonuses: ['50 locations per request'],
sortDollars: 12500, // I think? Have heard figures of $12.5k and $25k, not sure difference.
humanOnly: false, // "Batch geocoding is only available with an Enterprise plan."
url: 'https://www.mapbox.com/pricing/'
},
{
group: 'OpenCage',
name: 'Free Trial',
includedRequestsDaily: 2500,
requestsPerSecond: 1,
dollarsMonthly: 0,
permanent: true,
openData: true,
thirdParty: true,
url: 'https://geocoder.opencagedata.com/pricing',
},
{
group: 'OpenCage',
name: 'X-Small',
includedRequestsDaily: 10e3,
requestsPerSecond: 10,
dollarsMonthly: 66,
currencySymbol: '$A',
permanent: true,
openData: true,
thirdParty: true,
url: 'https://geocoder.opencagedata.com/pricing'
},
{
group: 'OpenCage',
name: 'Small',
includedRequestsDaily: 20e3,
requestsPerSecond: 12,
dollarsMonthly: 132,
currencySymbol: '$A',
permanent: true,
openData: true,
thirdParty: true,
url: 'https://geocoder.opencagedata.com/pricing'
},
{
group: 'OpenCage',
name: 'Medium',
includedRequestsDaily: 100e3,
requestsPerSecond: 15,
dollarsMonthly: 660,
currencySymbol: '$A',
permanent: true,
openData: true,
thirdParty: true,
url: 'https://geocoder.opencagedata.com/pricing'
},
{
group: 'OpenCage',
name: 'Large',
includedRequestsDaily: 1e6,
// includedRequestsMonthly: 1e6 * MONTH,
requestsPerSecond: 15,
dollarsMonthly: 1320,
currencySymbol: '$A',
permanent: true,
url: 'https://geocoder.opencagedata.com/pricing',
openData: true,
thirdParty: true,
},
// TODO Google Free plan
{
group: 'Google',
name: 'Standard',
includedRequestsDaily: 2500,
maxRequestsMonthly: 100e3,
freeRequired: true,
publicRequired: true,
totalMonthly: requests => 0 + 0.5 * Math.max(requests - 2500 * MONTH, 0) / 1000,
url: 'https://developers.google.com/maps/pricing-and-plans/#details',
thirdParty: false,
humanOnly: true,
libraryRequired: true,
conditions: [
'Your ToS and Privacy Policy must reference Google\'s',
'No bulk downloads' //10.5e No mass downloading. You will not use the Service in a manner that gives you or a third party access to mass downloads or bulk feeds of any Content. For example, you are not permitted to offer a batch geocoding service that uses Content contained in the Maps API(s).
],
autocompleteMultiplier: 1/2.5, // based on I'm-not-sure-what
bonuses: ['Excellent worldwide quality'],
},
{
group: 'Google',
name: 'Premium',
includedRequestsMonthly: 100e3 * MONTH,
custom: true,
url: 'https://developers.google.com/maps/premium/usage-limits',
sortDollars: 20000,
thirdParty: false,
humanOnly: true,
libraryRequired: true,
conditions: [
'Your ToS and Privacy Policy must reference Google\'s',
'No bulk downloads' //10.5e No mass downloading. You will not use the Service in a manner that gives you or a third party access to mass downloads or bulk feeds of any Content. For example, you are not permitted to offer a batch geocoding service that uses Content contained in the Maps API(s).
],
autocompleteMultiplier: 1/2.5, // based on I'm-not-sure-what
bonuses: ['Excellent worldwide quality'],
// 1 geocoding request=0.25 credits
// maxRequsetsMonthly: 100e3
// totalMonthly: requests => 0 + 0.5 * Math.max(requests - 2500 * MONTH, 0) / 1000
},
{
group: 'Google',
name: 'ONI Group quote',
includedRequestsMonthly: 0,
// "Assume that 500k-1m credits would be ~ $21k", Translating that as 1 million credits for $21k, each credit is 4 geocodes, so 4 million.
dollarsMonthly: 0,
currencySymbol: '$A',
extraPer1000: 21e3 / (4e6 / 1000),
maxRequestsMonthly: false,
url: 'https://developers.google.com/maps/premium/usage-limits',
// sortDollars: 20000,
thirdParty: false,
humanOnly: true,
libraryRequired: true,
conditions: [
'Your ToS and Privacy Policy must reference Google\'s',
'No bulk downloads' //10.5e No mass downloading. You will not use the Service in a manner that gives you or a third party access to mass downloads or bulk feeds of any Content. For example, you are not permitted to offer a batch geocoding service that uses Content contained in the Maps API(s).
],
autocompleteMultiplier: 1/2.5, // based on I'm-not-sure-what
bonuses: ['Excellent worldwide quality'],
// 1 geocoding request=0.25 credits
// maxRequsetsMonthly: 100e3
// totalMonthly: requests => 0 + 0.5 * Math.max(requests - 2500 * MONTH, 0) / 1000
},
// {
// group: 'Mapzen (RIP)',
// name: 'Flex',
// includedRequestsMonthly: 25000,
// maxRequestsMonthly: false,
// dollarsMonthly: 0,
// extraPer1000: 0.5,
// extra: '+ 50c / 1,000',
// conditions: ['⚠ Service is shutting down'],
// totalMonthly: requests => 0 + 0.5 * Math.max(requests - 25000, 0) / 1000,
// url: 'https://mapzen.com/pricing/',
// thirdParty: true,
// openData: true,
// permanent: true,
// autocompleteMultiplier: 0.1 // not exactly, you also got 50k free autocompletes per month
// },
{
group: 'geocode.earth',
name: 'Basic',
includedRequestsMonthly: 200e3,
dollarsMonthly: 200,
requestsPerSecond: 5, //10 for autocomplete or reverse but that's too complicated
openData: true,
thirdParty: true,
permanent: true, // making assumptions HERE
bonuses: ['Made by the Mapzen team'],
conditions: ['Brand new company we know nothing about'],
url: 'https://geocode.earth/',
},
{
group: 'geocode.earth',
name: 'Advanced',
includedRequestsMonthly: 2e6,
dollarsMonthly: 500,
requestsPerSecond: 10, //20 for autocomplete or reverse but that's too complicated
openData: true,
thirdParty: true,
permanent: true, // making assumptions HERE
bonuses: ['Made by the Mapzen team'],
conditions: ['Brand new company we know nothing about'],
url: 'https://geocode.earth/',
},
{
group: 'geocode.earth',
name: 'Custom',
custom: true,
openData: true,
thirdParty: true,
permanent: true, // making assumptions HERE
bonuses: ['Made by the Mapzen team'],
conditions: ['Brand new company we know nothing about'],
url: 'https://geocode.earth/',
},
{
group: 'SmartyStreets',
name: 'International 1000',
includedRequestsMonthly: 1e3,
dollarsMonthly: 65,
url: 'https://smartystreets.com/pricing/international',
thirdParty: true,
autocomplete: false
},
{
group: 'SmartyStreets',
name: 'International 10,000',
includedRequestsMonthly: 10e3,
dollarsMonthly: 592,
url: 'https://smartystreets.com/pricing/international',
thirdParty: true,
autocomplete: false
},
{
group: 'SmartyStreets',
name: 'International 100,000',
includedRequestsMonthly: 100e3,
dollarsMonthly: 5400,
url: 'https://smartystreets.com/pricing/international',
thirdParty: true,
autocomplete: false
},
{
group: 'SmartyStreets',
name: 'International 1,000,000',
includedRequestsMonthly: 1e6,
dollarsMonthly: 50000,
url: 'https://smartystreets.com/pricing/international',
thirdParty: true,
autocomplete: false
},
{
group: 'Geocode.xyz',
name: 'Throttled API',
dollarsMonthly: 0,
requestsPerSecond: 1,
maxRequestsDaily: 86400,// in principle...
includedRequestsMonthly: 1e12,
permanent: true,
openData: true,
thirdParty: true,
url: 'https://geocode.xyz/pricing',
},
{
group: 'Geocode.xyz',
name: 'Pay-per-use',
dollarsMonthly: 0,
maxRequestsMonthly: false,
includedRequestsMonthly: 0,
extraPer1000: 2.5,
extra: '+ €2.50/1000 requests',
// totalMonthly: requests => 0 + 0.0025 * requests,
currencySymbol: '€',
permanent: true,
openData: true,
thirdParty: true,
url: 'https://geocode.xyz/pricing',
},
{
group: 'Geocode.xyz',
name: 'Monthly unlimited',
dollarsMonthly: 100,
maxRequestsMonthly: false,
includedRequestsMonthly: 1e12,
// extras: '€2.50/1000 requests',
extras: 'Unlimited requests',
// totalMonthly: requests => 0 + 0.0025 * requests,
currencySymbol: '€',
permanent: true,
openData: true,
thirdParty: true,
url: 'https://geocode.xyz/pricing',
},
{
group: 'LocationIQ',
name: 'Developer',
dollarsMonthly: 0,
includedRequestsDaily: 10e3,
requestsPerSecond: 60/60,
freeRequired: true,
url: 'https://locationiq.org/',
openData: true,
permanent: false,
thirdParty: true,
humanOnly: true
},
{
group: 'LocationIQ',
name: 'Professional',
dollarsMonthly: 50,
includedRequestsDaily: 20e3,
requestsPerSecond: 600/60,
freeRequired: false,
url: 'https://locationiq.org/',
openData: true,
permanent: false,
thirdParty: true,
humanOnly: true
},
{
group: 'LocationIQ',
name: 'Startup',
dollarsMonthly: 100,
includedRequestsDaily: 50e3,
requestsPerSecond: 720/60,
freeRequired: false,
url: 'https://locationiq.org/',
openData: true,
permanent: false,
thirdParty: true,
humanOnly: true
},
{
group: 'LocationIQ',
name: 'Business',
dollarsMonthly: 200,
includedRequestsDaily: 100e3,
requestsPerSecond: 900/60,
freeRequired: false,
url: 'https://locationiq.org/',
openData: true,
permanent: false,
thirdParty: true,
humanOnly: true
},
{
group: 'LocationIQ',
name: 'Business Plus',
dollarsMonthly: 500,
includedRequestsDaily: 500e3,
requestsPerSecond: 1200/60,
freeRequired: false,
url: 'https://locationiq.org/',
openData: true,
permanent: false,
thirdParty: true,
humanOnly: true
},
{
group: 'LocationIQ',
name: 'Enterprise',
custom:true,
// dollarsMonthly: 0,
// includedRequestsDaily: 10e3,
url: 'https://locationiq.org/',
openData: true,
thirdParty: true,
permanent: false,
sortDollars: 1000 * 12
//humanOnly: true // I'm guessing...
},
{
group: 'Mapquest',
name: 'Free',
dollarsMonthly: 0,
includedRequestsMonthly: 15e3,
thirdParty: false,
permanent: false,
humanOnly: true,
url: 'https://developer.mapquest.com/plans'
},
{
group: 'Mapquest',
name: 'Basic',
dollarsMonthly: 99,
includedRequestsMonthly: 30e3,
thirdParty: false,
permanent: false,
humanOnly: true,
conditions: ['Excess usage billed as "overage"'],
url: 'https://developer.mapquest.com/plans'
},
{
group: 'Mapquest',
name: 'Plus',
dollarsMonthly: 199,
includedRequestsMonthly: 75e3,
thirdParty: false,
permanent: false,
humanOnly: true,
conditions: ['Excess usage billed as "overage"'],
url: 'https://developer.mapquest.com/plans'
},
{
group: 'Mapquest',
name: 'Business',
dollarsMonthly: 399,
includedRequestsMonthly: 200e3,
thirdParty: false,
permanent: false,
humanOnly: true,
conditions: ['Excess usage billed as "overage"'],
url: 'https://developer.mapquest.com/plans'
},
{
group: 'Mapquest',
name: 'Business Plus',
dollarsMonthly: 799,
includedRequestsMonthly: 500e3,
thirdParty: false,
permanent: false,
humanOnly: true,
conditions: ['Excess usage billed as "overage"'],
url: 'https://developer.mapquest.com/plans'
},
{
group: 'Mapquest',
name: 'Business Enhanced',
dollarsMonthly: 499,
includedRequestsMonthly: 200e3,
bonuses: ['Store results (US+Canada)','Bulk queries, third-party-maps'],
conditions: ['6 month commitment', 'Excess usage billed as "overage"'],
thirdParty: true,
url: 'https://developer.mapquest.com/plans',
permanent: false
},
{
group: 'Mapquest',
name: 'Business Plus Enhanced',
dollarsMonthly: 899,
includedRequestsMonthly: 500e3,
bonuses: ['Store results (US + Canada)','Bulk queries, third-party-maps'],
conditions: ['6 month commitment', 'Excess usage billed as "overage"'],
thirdParty: true,
url: 'https://developer.mapquest.com/plans',
permanent: false
},
{
group: 'Mapquest',
name: 'Enterprise',
custom: true,
thirdParty: true,
conditions: ['Excess usage billed as "overage"'],
// probably these apply:
bonuses: ['Store results (US + Canada)','Bulk queries, third-party-maps'],
url: 'https://developer.mapquest.com/plans',
permanent: false,
sortDollars: 12000
},
{
group: 'Yandex',
name: 'Free',
thirdParty: false,
humanOnly: true,
publicRequired: true,
freeRequired: true,
permanent: false,
includedRequestsMonthly: 25e3,
dollarsMonthly: 0,
url: 'https://tech.yandex.com/maps/doc/jsapi/2.1/terms/index-docpage/?from=geocoder#conditions'
},
{
group: 'Yandex',
name: 'API for Business',
thirdParty: false,
humanOnly: true,
permanent: true,
includedRequestsMonthly: 100000,
conditions: ['Primarily eastern Europe', 'Storing geocodes "On request"', 'Processing without showing "On request"'],
publicRequired: false,
dollarsMonthly: 100000,
sortDollars:1772*12,//USD
currencySymbol: '₽', //rubles!
url: 'https://tech.yandex.com/maps/commercial/?from=geocoder'
},
{
group: 'Pitney-Bowes',
name: 'Quote #1',
includedRequestsMonthly: 0,
dollarsMonthly: 0,
extraPer1000: 18.13,
currencySymbol: '$A',
url: 'https://locate.pitneybowes.com/',
conditions:['"Premium" geocode API uses 3x credits', '3 credits per autocomplete request!'],
permanent: '30 days',
humanOnly: false, // see 3.3 here https://www.pitneybowes.com/us/developer/subscription-agreement.html?tab2
cacheLimitDays: 30,
autocompleteMultiplier: 3,
// custom: true,
// sortDollars:20000, // https://locate.pitneybowes.com/ // wonder how much it is
},
{
group: 'Geocode.farm',
name: 'Bronze',
includedRequestsDaily: 25e3,
dollarsMonthly: 100,
currencySymbol: '£',
url: 'https://geocode.farm/our-packages/',
conditions:['Based in Belize','⚠ "No chargebacks ever" policy'],
permanent: true,
thirdParty: true
},
{
group: 'Geocode.farm',
name: 'Silver',
includedRequestsDaily: 50e3,
dollarsMonthly: 200,
currencySymbol: '£',
url: 'https://geocode.farm/our-packages/',
conditions:['Based in Belize','⚠"No chargebacks ever" policy'],
permanent: true,
thirdParty: true
},
{
group: 'Geocode.farm',
name: 'Gold',
includedRequestsDaily: 100e3,
dollarsMonthly: 300,
currencySymbol: '£',
url: 'https://geocode.farm/our-packages/',
conditions:['Based in Belize','⚠"No chargebacks ever" policy'],
permanent: true,
thirdParty: true
},
{
group: 'Geocode.farm',
name: 'Platinum',
includedRequestsDaily: 1e6,
dollarsMonthly: 1000,
currencySymbol: '£',
url: 'https://geocode.farm/our-packages/',
conditions:['£1000 setup fee', 'Based in Belize','⚠"No chargebacks ever" policy'],
permanent: true,
thirdParty: true
},
{
group: 'Yahoo BOSS PlaceFinder',
name: '0-10,000',
includedRequestsDaily: 0,
maxRequestsDaily: 10e3,
dollarsMonthly: 0,
url: 'https://developer.yahoo.com/boss/geo/#pricing',
extra: '+ $6/1000',
extraPer1000: 6,
totalMonthly: requests => 0 + (requests /1000) * 6
},