project.pbxproj
105 KB
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 45;
objects = {
/* Begin PBXBuildFile section */
B87626CA0E7529BE0024B9C5 /* ScreenProjection.h in Headers */ = {isa = PBXBuildFile; fileRef = B87626C80E7529BE0024B9C5 /* ScreenProjection.h */; };
B87626CB0E7529BE0024B9C5 /* ScreenProjection.m in Sources */ = {isa = PBXBuildFile; fileRef = B87626C90E7529BE0024B9C5 /* ScreenProjection.m */; };
B87626D00E752A010024B9C5 /* MapRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = B87626CE0E752A010024B9C5 /* MapRenderer.h */; };
B87626D70E752E6E0024B9C5 /* QuartzRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = B87626D50E752E6E0024B9C5 /* QuartzRenderer.h */; };
B87626D80E752E6E0024B9C5 /* QuartzRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = B87626D60E752E6E0024B9C5 /* QuartzRenderer.m */; };
B87626E90E7562620024B9C5 /* TileLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = B89428260E6BEA390080B2F5 /* TileLoader.m */; };
B87626F10E75654C0024B9C5 /* MathUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = B87626EF0E75654C0024B9C5 /* MathUtils.h */; };
B87626F20E75654C0024B9C5 /* MathUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = B87626F00E75654C0024B9C5 /* MathUtils.c */; };
B894284D0E6BEAB20080B2F5 /* ImagesAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = B894284B0E6BEAB20080B2F5 /* ImagesAppDelegate.m */; };
B894284E0E6BEAB20080B2F5 /* RootViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B894284C0E6BEAB20080B2F5 /* RootViewController.m */; };
B89428510E6BEABC0080B2F5 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = B89428500E6BEABC0080B2F5 /* main.m */; };
B89428580E6BEAD00080B2F5 /* MainView.xib in Resources */ = {isa = PBXBuildFile; fileRef = B89428540E6BEAD00080B2F5 /* MainView.xib */; };
B89428590E6BEAD00080B2F5 /* FlipsideView.xib in Resources */ = {isa = PBXBuildFile; fileRef = B89428550E6BEAD00080B2F5 /* FlipsideView.xib */; };
B894285A0E6BEAD00080B2F5 /* MainWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = B89428560E6BEAD00080B2F5 /* MainWindow.xib */; };
B89428600E6BEB020080B2F5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B894285C0E6BEB020080B2F5 /* Foundation.framework */; };
B89428610E6BEB020080B2F5 /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B894285D0E6BEB020080B2F5 /* CoreLocation.framework */; };
B89428620E6BEB020080B2F5 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B894285E0E6BEB020080B2F5 /* CoreGraphics.framework */; };
B89428630E6BEB020080B2F5 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B894285F0E6BEB020080B2F5 /* UIKit.framework */; };
B89429100E6BEB3D0080B2F5 /* FlipsideViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B89428460E6BEA3A0080B2F5 /* FlipsideViewController.m */; };
B89429190E6BEB420080B2F5 /* MainViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B89428410E6BEA3A0080B2F5 /* MainViewController.m */; };
B89429420E6BEB670080B2F5 /* MainView.m in Sources */ = {isa = PBXBuildFile; fileRef = B894283F0E6BEA3A0080B2F5 /* MainView.m */; };
B8A51E740E6D6171006AA8E2 /* loading.png in Resources */ = {isa = PBXBuildFile; fileRef = B8A51E730E6D6171006AA8E2 /* loading.png */; };
B8A51E910E6D7192006AA8E2 /* TileCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B8A51E900E6D7192006AA8E2 /* TileCache.m */; };
B8A522590E6E84F3006AA8E2 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B8A522580E6E84F3006AA8E2 /* QuartzCore.framework */; };
B8A5225D0E6E8508006AA8E2 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B8A522580E6E84F3006AA8E2 /* QuartzCore.framework */; };
B8A5C87A0E757FC8005509DE /* MapRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = B8A5C8790E757FC8005509DE /* MapRenderer.m */; };
B8A5C8860E758250005509DE /* CoreAnimationRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = B8A5C8840E758250005509DE /* CoreAnimationRenderer.h */; };
B8A5C8870E758250005509DE /* CoreAnimationRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = B8A5C8850E758250005509DE /* CoreAnimationRenderer.m */; };
B8A5C9220E75A107005509DE /* LayeredTileLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = B8A5C9200E75A107005509DE /* LayeredTileLoader.h */; };
B8A5C9230E75A107005509DE /* LayeredTileLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = B8A5C9210E75A107005509DE /* LayeredTileLoader.m */; };
B8A5C9BF0E763371005509DE /* Tile.c in Sources */ = {isa = PBXBuildFile; fileRef = B8A5C9BE0E763371005509DE /* Tile.c */; };
B8A5CB170E764C84005509DE /* TileImageSet.h in Headers */ = {isa = PBXBuildFile; fileRef = B8A5CB150E764C84005509DE /* TileImageSet.h */; };
B8A5CB180E764C84005509DE /* TileImageSet.m in Sources */ = {isa = PBXBuildFile; fileRef = B8A5CB160E764C84005509DE /* TileImageSet.m */; };
B8C6B1290E78C79200C12A12 /* LayerToScreenProjection.h in Headers */ = {isa = PBXBuildFile; fileRef = B8C6B1270E78C79200C12A12 /* LayerToScreenProjection.h */; };
B8C6B12A0E78C79200C12A12 /* LayerToScreenProjection.m in Sources */ = {isa = PBXBuildFile; fileRef = B8C6B1280E78C79200C12A12 /* LayerToScreenProjection.m */; };
B8D9B0640E6BEBCC00EDA368 /* FlipsideView.m in Sources */ = {isa = PBXBuildFile; fileRef = B89428440E6BEA3A0080B2F5 /* FlipsideView.m */; };
B8D9B0BD0E6BECD400EDA368 /* pj_tsfn.c in Sources */ = {isa = PBXBuildFile; fileRef = B89428140E6BEA390080B2F5 /* pj_tsfn.c */; };
B8D9B0BE0E6BECD400EDA368 /* PJ_tmerc.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427AC0E6BEA390080B2F5 /* PJ_tmerc.c */; };
B8D9B0BF0E6BECD400EDA368 /* PJ_loxim.c in Sources */ = {isa = PBXBuildFile; fileRef = B894280C0E6BEA390080B2F5 /* PJ_loxim.c */; };
B8D9B0C00E6BECD400EDA368 /* PJ_goode.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427B00E6BEA390080B2F5 /* PJ_goode.c */; };
B8D9B0C10E6BECD400EDA368 /* pj_open_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427C90E6BEA390080B2F5 /* pj_open_lib.c */; };
B8D9B0C20E6BECD400EDA368 /* dmstor.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427CA0E6BEA390080B2F5 /* dmstor.c */; };
B8D9B0C30E6BECD400EDA368 /* pj_qsfn.c in Sources */ = {isa = PBXBuildFile; fileRef = B894281B0E6BEA390080B2F5 /* pj_qsfn.c */; };
B8D9B0C40E6BECD400EDA368 /* PJ_sterea.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427AB0E6BEA390080B2F5 /* PJ_sterea.c */; };
B8D9B0C50E6BECD400EDA368 /* PJ_nell.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427A80E6BEA390080B2F5 /* PJ_nell.c */; };
B8D9B0C60E6BECD400EDA368 /* emess.h in Headers */ = {isa = PBXBuildFile; fileRef = B89427EC0E6BEA390080B2F5 /* emess.h */; };
B8D9B0C70E6BECD400EDA368 /* pj_inv.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427860E6BEA390080B2F5 /* pj_inv.c */; };
B8D9B0C80E6BECD400EDA368 /* gen_cheb.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427C10E6BEA390080B2F5 /* gen_cheb.c */; };
B8D9B0C90E6BECD400EDA368 /* PJ_aea.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427F70E6BEA390080B2F5 /* PJ_aea.c */; };
B8D9B0CA0E6BECD400EDA368 /* PJ_lask.c in Sources */ = {isa = PBXBuildFile; fileRef = B89428010E6BEA390080B2F5 /* PJ_lask.c */; };
B8D9B0CB0E6BECD400EDA368 /* pj_geocent.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427DB0E6BEA390080B2F5 /* pj_geocent.c */; };
B8D9B0CC0E6BECD400EDA368 /* PJ_putp6.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427F00E6BEA390080B2F5 /* PJ_putp6.c */; };
B8D9B0CD0E6BECD400EDA368 /* PJ_mill.c in Sources */ = {isa = PBXBuildFile; fileRef = B894279B0E6BEA390080B2F5 /* PJ_mill.c */; };
B8D9B0CE0E6BECD400EDA368 /* pj_errno.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427E40E6BEA390080B2F5 /* pj_errno.c */; };
B8D9B0CF0E6BECD400EDA368 /* pj_mlfn.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427900E6BEA390080B2F5 /* pj_mlfn.c */; };
B8D9B0D00E6BECD400EDA368 /* PJ_bonne.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427C20E6BEA390080B2F5 /* PJ_bonne.c */; };
B8D9B0D10E6BECD400EDA368 /* nad_cvt.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427D80E6BEA390080B2F5 /* nad_cvt.c */; };
B8D9B0D20E6BECD400EDA368 /* geodesic.h in Headers */ = {isa = PBXBuildFile; fileRef = B89428160E6BEA390080B2F5 /* geodesic.h */; };
B8D9B0D30E6BECD400EDA368 /* PJ_wag3.c in Sources */ = {isa = PBXBuildFile; fileRef = B89428090E6BEA390080B2F5 /* PJ_wag3.c */; };
B8D9B0D40E6BECD400EDA368 /* PJ_nell_h.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427A90E6BEA390080B2F5 /* PJ_nell_h.c */; };
B8D9B0D50E6BECD400EDA368 /* PJ_lsat.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427F80E6BEA390080B2F5 /* PJ_lsat.c */; };
B8D9B0D60E6BECD400EDA368 /* bchgen.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427870E6BEA390080B2F5 /* bchgen.c */; };
B8D9B0D70E6BECD400EDA368 /* PJ_krovak.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427B80E6BEA390080B2F5 /* PJ_krovak.c */; };
B8D9B0D80E6BECD400EDA368 /* pj_ell_set.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427E70E6BEA390080B2F5 /* pj_ell_set.c */; };
B8D9B0D90E6BECD400EDA368 /* PJ_cc.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427FA0E6BEA390080B2F5 /* PJ_cc.c */; };
B8D9B0DA0E6BECD400EDA368 /* pj_transform.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427AD0E6BEA390080B2F5 /* pj_transform.c */; };
B8D9B0DB0E6BECD400EDA368 /* PJ_gall.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427BD0E6BEA390080B2F5 /* PJ_gall.c */; };
B8D9B0DC0E6BECD400EDA368 /* PJ_putp4p.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427C40E6BEA390080B2F5 /* PJ_putp4p.c */; };
B8D9B0DD0E6BECD400EDA368 /* PJ_hatano.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427FC0E6BEA390080B2F5 /* PJ_hatano.c */; };
B8D9B0DE0E6BECD400EDA368 /* pj_zpoly1.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427E60E6BEA390080B2F5 /* pj_zpoly1.c */; };
B8D9B0DF0E6BECD400EDA368 /* PJ_mbt_fps.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427FD0E6BEA390080B2F5 /* PJ_mbt_fps.c */; };
B8D9B0E00E6BECD400EDA368 /* biveval.c in Sources */ = {isa = PBXBuildFile; fileRef = B89428020E6BEA390080B2F5 /* biveval.c */; };
B8D9B0E10E6BECD400EDA368 /* geod_for.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427CD0E6BEA390080B2F5 /* geod_for.c */; };
B8D9B0E20E6BECD400EDA368 /* PJ_tcc.c in Sources */ = {isa = PBXBuildFile; fileRef = B894278E0E6BEA390080B2F5 /* PJ_tcc.c */; };
B8D9B0E30E6BECD400EDA368 /* PJ_bacon.c in Sources */ = {isa = PBXBuildFile; fileRef = B894279F0E6BEA390080B2F5 /* PJ_bacon.c */; };
B8D9B0E40E6BECD400EDA368 /* PJ_fahey.c in Sources */ = {isa = PBXBuildFile; fileRef = B894278D0E6BEA390080B2F5 /* PJ_fahey.c */; };
B8D9B0E50E6BECD400EDA368 /* emess.c in Sources */ = {isa = PBXBuildFile; fileRef = B89428100E6BEA390080B2F5 /* emess.c */; };
B8D9B0E60E6BECD400EDA368 /* geod_set.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427880E6BEA390080B2F5 /* geod_set.c */; };
B8D9B0E70E6BECD400EDA368 /* PJ_gnom.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427A10E6BEA390080B2F5 /* PJ_gnom.c */; };
B8D9B0E80E6BECD400EDA368 /* PJ_putp2.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427EB0E6BEA390080B2F5 /* PJ_putp2.c */; };
B8D9B0E90E6BECD400EDA368 /* pj_pr_list.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427AA0E6BEA390080B2F5 /* pj_pr_list.c */; };
B8D9B0EA0E6BECD400EDA368 /* PJ_mod_ster.c in Sources */ = {isa = PBXBuildFile; fileRef = B894278F0E6BEA390080B2F5 /* PJ_mod_ster.c */; };
B8D9B0EB0E6BECD400EDA368 /* PJ_oea.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427940E6BEA390080B2F5 /* PJ_oea.c */; };
B8D9B0EC0E6BECD400EDA368 /* PJ_gn_sinu.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427B60E6BEA390080B2F5 /* PJ_gn_sinu.c */; };
B8D9B0ED0E6BECD400EDA368 /* pj_param.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427DD0E6BEA390080B2F5 /* pj_param.c */; };
B8D9B0EE0E6BECD400EDA368 /* PJ_gins8.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427FB0E6BEA390080B2F5 /* PJ_gins8.c */; };
B8D9B0EF0E6BECD400EDA368 /* PJ_wag7.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427BB0E6BEA390080B2F5 /* PJ_wag7.c */; };
B8D9B0F00E6BECD400EDA368 /* PJ_tpeqd.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427CE0E6BEA390080B2F5 /* PJ_tpeqd.c */; };
B8D9B0F10E6BECD400EDA368 /* PJ_poly.c in Sources */ = {isa = PBXBuildFile; fileRef = B89428120E6BEA390080B2F5 /* PJ_poly.c */; };
B8D9B0F20E6BECD400EDA368 /* PJ_hammer.c in Sources */ = {isa = PBXBuildFile; fileRef = B894279D0E6BEA390080B2F5 /* PJ_hammer.c */; };
B8D9B0F30E6BECD400EDA368 /* PJ_eck1.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427A40E6BEA390080B2F5 /* PJ_eck1.c */; };
B8D9B0F40E6BECD400EDA368 /* PJ_nsper.c in Sources */ = {isa = PBXBuildFile; fileRef = B894279C0E6BEA390080B2F5 /* PJ_nsper.c */; };
B8D9B0F50E6BECD400EDA368 /* p_series.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427840E6BEA390080B2F5 /* p_series.c */; };
B8D9B0F60E6BECD400EDA368 /* PJ_ocea.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427E50E6BEA390080B2F5 /* PJ_ocea.c */; };
B8D9B0F70E6BECD400EDA368 /* vector1.c in Sources */ = {isa = PBXBuildFile; fileRef = B89428000E6BEA390080B2F5 /* vector1.c */; };
B8D9B0F80E6BECD400EDA368 /* PJ_robin.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427AE0E6BEA390080B2F5 /* PJ_robin.c */; };
B8D9B0F90E6BECD400EDA368 /* PJ_wag2.c in Sources */ = {isa = PBXBuildFile; fileRef = B89428080E6BEA390080B2F5 /* PJ_wag2.c */; };
B8D9B0FA0E6BECD400EDA368 /* pj_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427910E6BEA390080B2F5 /* pj_utils.c */; };
B8D9B0FB0E6BECD400EDA368 /* PJ_august.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427F10E6BEA390080B2F5 /* PJ_august.c */; };
B8D9B0FC0E6BECD400EDA368 /* pj_datums.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427D30E6BEA390080B2F5 /* pj_datums.c */; };
B8D9B0FD0E6BECD400EDA368 /* PJ_wink2.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427920E6BEA390080B2F5 /* PJ_wink2.c */; };
B8D9B0FE0E6BECD400EDA368 /* pj_ellps.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427BF0E6BEA390080B2F5 /* pj_ellps.c */; };
B8D9B0FF0E6BECD400EDA368 /* PJ_sts.c in Sources */ = {isa = PBXBuildFile; fileRef = B89428070E6BEA390080B2F5 /* PJ_sts.c */; };
B8D9B1000E6BECD400EDA368 /* PJ_ob_tran.c in Sources */ = {isa = PBXBuildFile; fileRef = B89428180E6BEA390080B2F5 /* PJ_ob_tran.c */; };
B8D9B1010E6BECD400EDA368 /* bch2bps.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427850E6BEA390080B2F5 /* bch2bps.c */; };
B8D9B1020E6BECD400EDA368 /* PJ_labrd.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427A60E6BEA390080B2F5 /* PJ_labrd.c */; };
B8D9B1030E6BECD400EDA368 /* rtodms.c in Sources */ = {isa = PBXBuildFile; fileRef = B89428170E6BEA390080B2F5 /* rtodms.c */; };
B8D9B1040E6BECD400EDA368 /* pj_init.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427DC0E6BEA390080B2F5 /* pj_init.c */; };
B8D9B1050E6BECD400EDA368 /* PJ_moll.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427E10E6BEA390080B2F5 /* PJ_moll.c */; };
B8D9B1060E6BECD400EDA368 /* aasincos.c in Sources */ = {isa = PBXBuildFile; fileRef = B894279E0E6BEA390080B2F5 /* aasincos.c */; };
B8D9B1070E6BECD400EDA368 /* pj_units.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427BC0E6BEA390080B2F5 /* pj_units.c */; };
B8D9B1080E6BECD400EDA368 /* pj_fwd.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427F60E6BEA390080B2F5 /* pj_fwd.c */; };
B8D9B1090E6BECD400EDA368 /* PJ_mbtfpp.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427A70E6BEA390080B2F5 /* PJ_mbtfpp.c */; };
B8D9B10A0E6BECD400EDA368 /* PJ_fouc_s.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427D20E6BEA390080B2F5 /* PJ_fouc_s.c */; };
B8D9B10B0E6BECD400EDA368 /* pj_msfn.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427E90E6BEA390080B2F5 /* pj_msfn.c */; };
B8D9B10C0E6BECD400EDA368 /* PJ_eqc.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427950E6BEA390080B2F5 /* PJ_eqc.c */; };
B8D9B10D0E6BECD400EDA368 /* PJ_eck5.c in Sources */ = {isa = PBXBuildFile; fileRef = B894278B0E6BEA390080B2F5 /* PJ_eck5.c */; };
B8D9B10E0E6BECD400EDA368 /* PJ_putp3.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427B90E6BEA390080B2F5 /* PJ_putp3.c */; };
B8D9B10F0E6BECD400EDA368 /* PJ_putp5.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427FF0E6BEA390080B2F5 /* PJ_putp5.c */; };
B8D9B1100E6BECD400EDA368 /* PJ_eck2.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427A00E6BEA390080B2F5 /* PJ_eck2.c */; };
B8D9B1110E6BECD400EDA368 /* pj_gridinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427A20E6BEA390080B2F5 /* pj_gridinfo.c */; };
B8D9B1120E6BECD400EDA368 /* PJ_tcea.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427D60E6BEA390080B2F5 /* PJ_tcea.c */; };
B8D9B1130E6BECD400EDA368 /* pj_malloc.c in Sources */ = {isa = PBXBuildFile; fileRef = B89428060E6BEA390080B2F5 /* pj_malloc.c */; };
B8D9B1140E6BECD400EDA368 /* pj_deriv.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427BA0E6BEA390080B2F5 /* pj_deriv.c */; };
B8D9B1150E6BECD400EDA368 /* pj_phi2.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427C30E6BEA390080B2F5 /* pj_phi2.c */; };
B8D9B1160E6BECD400EDA368 /* PJ_omerc.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427CF0E6BEA390080B2F5 /* PJ_omerc.c */; };
B8D9B1170E6BECD400EDA368 /* PJ_chamb.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427F40E6BEA390080B2F5 /* PJ_chamb.c */; };
B8D9B1180E6BECD400EDA368 /* proj_mdist.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427AF0E6BEA390080B2F5 /* proj_mdist.c */; };
B8D9B1190E6BECD400EDA368 /* pj_gauss.c in Sources */ = {isa = PBXBuildFile; fileRef = B894278C0E6BEA390080B2F5 /* pj_gauss.c */; };
B8D9B11A0E6BECD400EDA368 /* PJ_somerc.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427D00E6BEA390080B2F5 /* PJ_somerc.c */; };
B8D9B11B0E6BECD400EDA368 /* pj_factors.c in Sources */ = {isa = PBXBuildFile; fileRef = B894280D0E6BEA390080B2F5 /* pj_factors.c */; };
B8D9B11C0E6BECD400EDA368 /* pj_latlong.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427970E6BEA390080B2F5 /* pj_latlong.c */; };
B8D9B11D0E6BECD400EDA368 /* proj_rouss.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427C50E6BEA390080B2F5 /* proj_rouss.c */; };
B8D9B11E0E6BECD400EDA368 /* proj_config.h in Headers */ = {isa = PBXBuildFile; fileRef = B89427EA0E6BEA390080B2F5 /* proj_config.h */; };
B8D9B11F0E6BECD400EDA368 /* PJ_lcca.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427EE0E6BEA390080B2F5 /* PJ_lcca.c */; };
B8D9B1200E6BECD400EDA368 /* pj_strerrno.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427CC0E6BEA390080B2F5 /* pj_strerrno.c */; };
B8D9B1210E6BECD400EDA368 /* PJ_eck3.c in Sources */ = {isa = PBXBuildFile; fileRef = B894280A0E6BEA390080B2F5 /* PJ_eck3.c */; };
B8D9B1220E6BECD400EDA368 /* PJ_merc.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427C00E6BEA390080B2F5 /* PJ_merc.c */; };
B8D9B1230E6BECD400EDA368 /* nad_init.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427990E6BEA390080B2F5 /* nad_init.c */; };
B8D9B1240E6BECD400EDA368 /* PJ_urmfps.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427BE0E6BEA390080B2F5 /* PJ_urmfps.c */; };
B8D9B1250E6BECD400EDA368 /* PJ_larr.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427B70E6BEA390080B2F5 /* PJ_larr.c */; };
B8D9B1260E6BECD400EDA368 /* PJ_mbtfpq.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427D40E6BEA390080B2F5 /* PJ_mbtfpq.c */; };
B8D9B1270E6BECD400EDA368 /* PJ_urm5.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427980E6BEA390080B2F5 /* PJ_urm5.c */; };
B8D9B1280E6BECD400EDA368 /* PJ_laea.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427D90E6BEA390080B2F5 /* PJ_laea.c */; };
B8D9B1290E6BECD400EDA368 /* PJ_ortho.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427CB0E6BEA390080B2F5 /* PJ_ortho.c */; };
B8D9B12A0E6BECD400EDA368 /* geocent.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427F30E6BEA390080B2F5 /* geocent.c */; };
B8D9B12B0E6BECD400EDA368 /* PJ_nocol.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427DE0E6BEA390080B2F5 /* PJ_nocol.c */; };
B8D9B12C0E6BECD400EDA368 /* PJ_bipc.c in Sources */ = {isa = PBXBuildFile; fileRef = B89428040E6BEA390080B2F5 /* PJ_bipc.c */; };
B8D9B12D0E6BECD400EDA368 /* mk_cheby.c in Sources */ = {isa = PBXBuildFile; fileRef = B89428050E6BEA390080B2F5 /* mk_cheby.c */; };
B8D9B12E0E6BECD400EDA368 /* PJ_denoy.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427D10E6BEA390080B2F5 /* PJ_denoy.c */; };
B8D9B12F0E6BECD400EDA368 /* PJ_eqdc.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427DA0E6BEA390080B2F5 /* PJ_eqdc.c */; };
B8D9B1300E6BECD400EDA368 /* pj_gridlist.c in Sources */ = {isa = PBXBuildFile; fileRef = B89428130E6BEA390080B2F5 /* pj_gridlist.c */; };
B8D9B1310E6BECD400EDA368 /* nad_intr.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427F90E6BEA390080B2F5 /* nad_intr.c */; };
B8D9B1320E6BECD400EDA368 /* PJ_geos.c in Sources */ = {isa = PBXBuildFile; fileRef = B894280E0E6BEA390080B2F5 /* PJ_geos.c */; };
B8D9B1330E6BECD400EDA368 /* PJ_vandg.c in Sources */ = {isa = PBXBuildFile; fileRef = B89428150E6BEA390080B2F5 /* PJ_vandg.c */; };
B8D9B1340E6BECD400EDA368 /* PJ_eck4.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427EF0E6BEA390080B2F5 /* PJ_eck4.c */; };
B8D9B1350E6BECD400EDA368 /* pj_apply_gridshift.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427E80E6BEA390080B2F5 /* pj_apply_gridshift.c */; };
B8D9B1360E6BECD400EDA368 /* PJ_nzmg.c in Sources */ = {isa = PBXBuildFile; fileRef = B894279A0E6BEA390080B2F5 /* PJ_nzmg.c */; };
B8D9B1370E6BECD400EDA368 /* pj_datum_set.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427E30E6BEA390080B2F5 /* pj_datum_set.c */; };
B8D9B1380E6BECD400EDA368 /* geocent.h in Headers */ = {isa = PBXBuildFile; fileRef = B89428030E6BEA390080B2F5 /* geocent.h */; };
B8D9B1390E6BECD400EDA368 /* nad_list.h in Headers */ = {isa = PBXBuildFile; fileRef = B89427E20E6BEA390080B2F5 /* nad_list.h */; };
B8D9B13A0E6BECD400EDA368 /* PJ_wink1.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427930E6BEA390080B2F5 /* PJ_wink1.c */; };
B8D9B13B0E6BECD400EDA368 /* PJ_vandg2.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427D70E6BEA390080B2F5 /* PJ_vandg2.c */; };
B8D9B13C0E6BECD400EDA368 /* PJ_airy.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427DF0E6BEA390080B2F5 /* PJ_airy.c */; };
B8D9B13D0E6BECD400EDA368 /* PJ_aeqd.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427FE0E6BEA390080B2F5 /* PJ_aeqd.c */; };
B8D9B13E0E6BECD400EDA368 /* PJ_lagrng.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427B10E6BEA390080B2F5 /* PJ_lagrng.c */; };
B8D9B13F0E6BECD400EDA368 /* pj_list.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427A50E6BEA390080B2F5 /* pj_list.c */; };
B8D9B1400E6BECD400EDA368 /* PJ_boggs.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427C80E6BEA390080B2F5 /* PJ_boggs.c */; };
B8D9B1410E6BECD400EDA368 /* geod_inv.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427B20E6BEA390080B2F5 /* geod_inv.c */; };
B8D9B1420E6BECD400EDA368 /* PJ_rpoly.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427F20E6BEA390080B2F5 /* PJ_rpoly.c */; };
B8D9B1430E6BECD400EDA368 /* pj_auth.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427890E6BEA390080B2F5 /* pj_auth.c */; };
B8D9B1440E6BECD400EDA368 /* adjlon.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427F50E6BEA390080B2F5 /* adjlon.c */; };
B8D9B1450E6BECD400EDA368 /* PJ_stere.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427D50E6BEA390080B2F5 /* PJ_stere.c */; };
B8D9B1460E6BECD400EDA368 /* PJ_vandg4.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427B30E6BEA390080B2F5 /* PJ_vandg4.c */; };
B8D9B1470E6BECD400EDA368 /* PJ_imw_p.c in Sources */ = {isa = PBXBuildFile; fileRef = B89428110E6BEA390080B2F5 /* PJ_imw_p.c */; };
B8D9B1480E6BECD400EDA368 /* jniproj.c in Sources */ = {isa = PBXBuildFile; fileRef = B89428190E6BEA390080B2F5 /* jniproj.c */; };
B8D9B1490E6BECD400EDA368 /* proj_api.h in Headers */ = {isa = PBXBuildFile; fileRef = B894281A0E6BEA390080B2F5 /* proj_api.h */; settings = {ATTRIBUTES = (Public, ); }; };
B8D9B14A0E6BECD400EDA368 /* PJ_cass.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427960E6BEA390080B2F5 /* PJ_cass.c */; };
B8D9B14B0E6BECD400EDA368 /* projects.h in Headers */ = {isa = PBXBuildFile; fileRef = B89427B40E6BEA390080B2F5 /* projects.h */; };
B8D9B14C0E6BECD400EDA368 /* pj_list.h in Headers */ = {isa = PBXBuildFile; fileRef = B89427C60E6BEA390080B2F5 /* pj_list.h */; };
B8D9B14D0E6BECD400EDA368 /* PJ_lcc.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427E00E6BEA390080B2F5 /* PJ_lcc.c */; };
B8D9B14E0E6BECD400EDA368 /* PJ_aitoff.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427ED0E6BEA390080B2F5 /* PJ_aitoff.c */; };
B8D9B14F0E6BECD400EDA368 /* PJ_crast.c in Sources */ = {isa = PBXBuildFile; fileRef = B894278A0E6BEA390080B2F5 /* PJ_crast.c */; };
B8D9B1500E6BECD400EDA368 /* PJ_cea.c in Sources */ = {isa = PBXBuildFile; fileRef = B894280B0E6BEA390080B2F5 /* PJ_cea.c */; };
B8D9B1510E6BECD400EDA368 /* PJ_collg.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427B50E6BEA390080B2F5 /* PJ_collg.c */; };
B8D9B1520E6BECD400EDA368 /* pj_release.c in Sources */ = {isa = PBXBuildFile; fileRef = B89427C70E6BEA390080B2F5 /* pj_release.c */; };
B8D9B1530E6BECD400EDA368 /* PJ_sconics.c in Sources */ = {isa = PBXBuildFile; fileRef = B894280F0E6BEA390080B2F5 /* PJ_sconics.c */; };
B8D9B1540E6BECD400EDA368 /* org_proj4_Projections.h in Headers */ = {isa = PBXBuildFile; fileRef = B89427A30E6BEA390080B2F5 /* org_proj4_Projections.h */; };
B8D9B17F0E6BF0DD00EDA368 /* LICENSE in Resources */ = {isa = PBXBuildFile; fileRef = B8D9B17E0E6BF0DD00EDA368 /* LICENSE */; };
B8D9B1EE0E6BFA2A00EDA368 /* libproj4.a in Frameworks */ = {isa = PBXBuildFile; fileRef = B8D9B0B70E6BEC1900EDA368 /* libproj4.a */; };
B8D9B1F10E6BFA4700EDA368 /* libMapView.a in Frameworks */ = {isa = PBXBuildFile; fileRef = B8D9B1E90E6BFA1C00EDA368 /* libMapView.a */; };
B8D9B1F20E6BFA7500EDA368 /* MemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B89428290E6BEA390080B2F5 /* MemoryCache.m */; };
B8D9B1F30E6BFA7500EDA368 /* TiledLayerController.m in Sources */ = {isa = PBXBuildFile; fileRef = B894283A0E6BEA3A0080B2F5 /* TiledLayerController.m */; };
B8D9B1F40E6BFA7500EDA368 /* Mercator.m in Sources */ = {isa = PBXBuildFile; fileRef = B89428360E6BEA3A0080B2F5 /* Mercator.m */; };
B8D9B1F50E6BFA7500EDA368 /* DiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B894282B0E6BEA390080B2F5 /* DiskCache.m */; };
B8D9B1F60E6BFA7500EDA368 /* Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = B89428340E6BEA390080B2F5 /* Transform.m */; };
B8D9B1F70E6BFA7500EDA368 /* TileImage.m in Sources */ = {isa = PBXBuildFile; fileRef = B89428240E6BEA390080B2F5 /* TileImage.m */; };
B8D9B1F80E6BFA7500EDA368 /* WebTileImage.m in Sources */ = {isa = PBXBuildFile; fileRef = B894282F0E6BEA390080B2F5 /* WebTileImage.m */; };
B8D9B1FA0E6BFA7500EDA368 /* FractalTileProjection.m in Sources */ = {isa = PBXBuildFile; fileRef = B89428380E6BEA3A0080B2F5 /* FractalTileProjection.m */; };
B8D9B1FB0E6BFA7500EDA368 /* Projection.m in Sources */ = {isa = PBXBuildFile; fileRef = B89428320E6BEA390080B2F5 /* Projection.m */; };
B8D9B1FC0E6BFA7500EDA368 /* MapView.m in Sources */ = {isa = PBXBuildFile; fileRef = B894283C0E6BEA3A0080B2F5 /* MapView.m */; };
B8D9B1FD0E6BFA7500EDA368 /* TileProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = B894282D0E6BEA390080B2F5 /* TileProxy.m */; };
B8D9B1FE0E6BFA7500EDA368 /* OpenStreetMapsSource.m in Sources */ = {isa = PBXBuildFile; fileRef = B89428200E6BEA390080B2F5 /* OpenStreetMapsSource.m */; };
B8D9B1FF0E6BFA7F00EDA368 /* MapView.h in Headers */ = {isa = PBXBuildFile; fileRef = B894283B0E6BEA3A0080B2F5 /* MapView.h */; settings = {ATTRIBUTES = (Public, ); }; };
B8D9B2000E6BFA7F00EDA368 /* FractalTileProjection.h in Headers */ = {isa = PBXBuildFile; fileRef = B89428370E6BEA3A0080B2F5 /* FractalTileProjection.h */; };
B8D9B2010E6BFA7F00EDA368 /* TiledLayerController.h in Headers */ = {isa = PBXBuildFile; fileRef = B89428390E6BEA3A0080B2F5 /* TiledLayerController.h */; };
B8D9B2020E6BFA7F00EDA368 /* TileImage.h in Headers */ = {isa = PBXBuildFile; fileRef = B89428230E6BEA390080B2F5 /* TileImage.h */; };
B8D9B2030E6BFA7F00EDA368 /* DiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = B894282A0E6BEA390080B2F5 /* DiskCache.h */; };
B8D9B2040E6BFA7F00EDA368 /* TileProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = B894282C0E6BEA390080B2F5 /* TileProxy.h */; };
B8D9B2060E6BFA7F00EDA368 /* MemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = B89428280E6BEA390080B2F5 /* MemoryCache.h */; };
B8D9B2070E6BFA7F00EDA368 /* Tile.h in Headers */ = {isa = PBXBuildFile; fileRef = B89428220E6BEA390080B2F5 /* Tile.h */; };
B8D9B2080E6BFA7F00EDA368 /* TileSource.h in Headers */ = {isa = PBXBuildFile; fileRef = B894281E0E6BEA390080B2F5 /* TileSource.h */; };
B8D9B2090E6BFA7F00EDA368 /* Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = B89428330E6BEA390080B2F5 /* Transform.h */; };
B8D9B20A0E6BFA7F00EDA368 /* TileCache.h in Headers */ = {isa = PBXBuildFile; fileRef = B89428270E6BEA390080B2F5 /* TileCache.h */; };
B8D9B20B0E6BFA7F00EDA368 /* WebTileImage.h in Headers */ = {isa = PBXBuildFile; fileRef = B894282E0E6BEA390080B2F5 /* WebTileImage.h */; };
B8D9B20C0E6BFA7F00EDA368 /* Projection.h in Headers */ = {isa = PBXBuildFile; fileRef = B89428310E6BEA390080B2F5 /* Projection.h */; };
B8D9B20D0E6BFA7F00EDA368 /* OpenStreetMapsSource.h in Headers */ = {isa = PBXBuildFile; fileRef = B894281F0E6BEA390080B2F5 /* OpenStreetMapsSource.h */; };
B8D9B20E0E6BFA7F00EDA368 /* Mercator.h in Headers */ = {isa = PBXBuildFile; fileRef = B89428350E6BEA3A0080B2F5 /* Mercator.h */; };
B8D9B23F0E6BFE0000EDA368 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B894285E0E6BEB020080B2F5 /* CoreGraphics.framework */; };
B8D9B2400E6BFE0000EDA368 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B894285C0E6BEB020080B2F5 /* Foundation.framework */; };
B8D9B2410E6BFE0400EDA368 /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B894285D0E6BEB020080B2F5 /* CoreLocation.framework */; };
B8D9B2420E6BFE0900EDA368 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B894285F0E6BEB020080B2F5 /* UIKit.framework */; };
B8D9B27D0E6D460500EDA368 /* FileTileImage.h in Headers */ = {isa = PBXBuildFile; fileRef = B8D9B27B0E6D460500EDA368 /* FileTileImage.h */; };
B8D9B27E0E6D460500EDA368 /* FileTileImage.m in Sources */ = {isa = PBXBuildFile; fileRef = B8D9B27C0E6D460500EDA368 /* FileTileImage.m */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
B8D9B1EC0E6BFA2400EDA368 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */;
proxyType = 1;
remoteGlobalIDString = B8D9B0B60E6BEC1900EDA368;
remoteInfo = proj4;
};
B8D9B1EF0E6BFA4400EDA368 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */;
proxyType = 1;
remoteGlobalIDString = B8D9B1E80E6BFA1C00EDA368;
remoteInfo = MapView;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
1D6058910D05DD3D006BFB54 /* RouteMe.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = RouteMe.app; sourceTree = BUILT_PRODUCTS_DIR; };
B87626C80E7529BE0024B9C5 /* ScreenProjection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ScreenProjection.h; sourceTree = "<group>"; };
B87626C90E7529BE0024B9C5 /* ScreenProjection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ScreenProjection.m; sourceTree = "<group>"; };
B87626CE0E752A010024B9C5 /* MapRenderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MapRenderer.h; sourceTree = "<group>"; };
B87626D50E752E6E0024B9C5 /* QuartzRenderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QuartzRenderer.h; sourceTree = "<group>"; };
B87626D60E752E6E0024B9C5 /* QuartzRenderer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QuartzRenderer.m; sourceTree = "<group>"; };
B87626EF0E75654C0024B9C5 /* MathUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MathUtils.h; sourceTree = "<group>"; };
B87626F00E75654C0024B9C5 /* MathUtils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MathUtils.c; sourceTree = "<group>"; };
B89427840E6BEA390080B2F5 /* p_series.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = p_series.c; sourceTree = "<group>"; };
B89427850E6BEA390080B2F5 /* bch2bps.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = bch2bps.c; sourceTree = "<group>"; };
B89427860E6BEA390080B2F5 /* pj_inv.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pj_inv.c; sourceTree = "<group>"; };
B89427870E6BEA390080B2F5 /* bchgen.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = bchgen.c; sourceTree = "<group>"; };
B89427880E6BEA390080B2F5 /* geod_set.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = geod_set.c; sourceTree = "<group>"; };
B89427890E6BEA390080B2F5 /* pj_auth.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pj_auth.c; sourceTree = "<group>"; };
B894278A0E6BEA390080B2F5 /* PJ_crast.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_crast.c; sourceTree = "<group>"; };
B894278B0E6BEA390080B2F5 /* PJ_eck5.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_eck5.c; sourceTree = "<group>"; };
B894278C0E6BEA390080B2F5 /* pj_gauss.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pj_gauss.c; sourceTree = "<group>"; };
B894278D0E6BEA390080B2F5 /* PJ_fahey.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_fahey.c; sourceTree = "<group>"; };
B894278E0E6BEA390080B2F5 /* PJ_tcc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_tcc.c; sourceTree = "<group>"; };
B894278F0E6BEA390080B2F5 /* PJ_mod_ster.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_mod_ster.c; sourceTree = "<group>"; };
B89427900E6BEA390080B2F5 /* pj_mlfn.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pj_mlfn.c; sourceTree = "<group>"; };
B89427910E6BEA390080B2F5 /* pj_utils.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pj_utils.c; sourceTree = "<group>"; };
B89427920E6BEA390080B2F5 /* PJ_wink2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_wink2.c; sourceTree = "<group>"; };
B89427930E6BEA390080B2F5 /* PJ_wink1.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_wink1.c; sourceTree = "<group>"; };
B89427940E6BEA390080B2F5 /* PJ_oea.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_oea.c; sourceTree = "<group>"; };
B89427950E6BEA390080B2F5 /* PJ_eqc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_eqc.c; sourceTree = "<group>"; };
B89427960E6BEA390080B2F5 /* PJ_cass.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_cass.c; sourceTree = "<group>"; };
B89427970E6BEA390080B2F5 /* pj_latlong.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pj_latlong.c; sourceTree = "<group>"; };
B89427980E6BEA390080B2F5 /* PJ_urm5.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_urm5.c; sourceTree = "<group>"; };
B89427990E6BEA390080B2F5 /* nad_init.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = nad_init.c; sourceTree = "<group>"; };
B894279A0E6BEA390080B2F5 /* PJ_nzmg.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_nzmg.c; sourceTree = "<group>"; };
B894279B0E6BEA390080B2F5 /* PJ_mill.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_mill.c; sourceTree = "<group>"; };
B894279C0E6BEA390080B2F5 /* PJ_nsper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_nsper.c; sourceTree = "<group>"; };
B894279D0E6BEA390080B2F5 /* PJ_hammer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_hammer.c; sourceTree = "<group>"; };
B894279E0E6BEA390080B2F5 /* aasincos.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = aasincos.c; sourceTree = "<group>"; };
B894279F0E6BEA390080B2F5 /* PJ_bacon.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_bacon.c; sourceTree = "<group>"; };
B89427A00E6BEA390080B2F5 /* PJ_eck2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_eck2.c; sourceTree = "<group>"; };
B89427A10E6BEA390080B2F5 /* PJ_gnom.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_gnom.c; sourceTree = "<group>"; };
B89427A20E6BEA390080B2F5 /* pj_gridinfo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pj_gridinfo.c; sourceTree = "<group>"; };
B89427A30E6BEA390080B2F5 /* org_proj4_Projections.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = org_proj4_Projections.h; sourceTree = "<group>"; };
B89427A40E6BEA390080B2F5 /* PJ_eck1.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_eck1.c; sourceTree = "<group>"; };
B89427A50E6BEA390080B2F5 /* pj_list.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pj_list.c; sourceTree = "<group>"; };
B89427A60E6BEA390080B2F5 /* PJ_labrd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_labrd.c; sourceTree = "<group>"; };
B89427A70E6BEA390080B2F5 /* PJ_mbtfpp.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_mbtfpp.c; sourceTree = "<group>"; };
B89427A80E6BEA390080B2F5 /* PJ_nell.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_nell.c; sourceTree = "<group>"; };
B89427A90E6BEA390080B2F5 /* PJ_nell_h.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_nell_h.c; sourceTree = "<group>"; };
B89427AA0E6BEA390080B2F5 /* pj_pr_list.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pj_pr_list.c; sourceTree = "<group>"; };
B89427AB0E6BEA390080B2F5 /* PJ_sterea.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_sterea.c; sourceTree = "<group>"; };
B89427AC0E6BEA390080B2F5 /* PJ_tmerc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_tmerc.c; sourceTree = "<group>"; };
B89427AD0E6BEA390080B2F5 /* pj_transform.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pj_transform.c; sourceTree = "<group>"; };
B89427AE0E6BEA390080B2F5 /* PJ_robin.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_robin.c; sourceTree = "<group>"; };
B89427AF0E6BEA390080B2F5 /* proj_mdist.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = proj_mdist.c; sourceTree = "<group>"; };
B89427B00E6BEA390080B2F5 /* PJ_goode.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_goode.c; sourceTree = "<group>"; };
B89427B10E6BEA390080B2F5 /* PJ_lagrng.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_lagrng.c; sourceTree = "<group>"; };
B89427B20E6BEA390080B2F5 /* geod_inv.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = geod_inv.c; sourceTree = "<group>"; };
B89427B30E6BEA390080B2F5 /* PJ_vandg4.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_vandg4.c; sourceTree = "<group>"; };
B89427B40E6BEA390080B2F5 /* projects.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = projects.h; sourceTree = "<group>"; };
B89427B50E6BEA390080B2F5 /* PJ_collg.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_collg.c; sourceTree = "<group>"; };
B89427B60E6BEA390080B2F5 /* PJ_gn_sinu.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_gn_sinu.c; sourceTree = "<group>"; };
B89427B70E6BEA390080B2F5 /* PJ_larr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_larr.c; sourceTree = "<group>"; };
B89427B80E6BEA390080B2F5 /* PJ_krovak.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_krovak.c; sourceTree = "<group>"; };
B89427B90E6BEA390080B2F5 /* PJ_putp3.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_putp3.c; sourceTree = "<group>"; };
B89427BA0E6BEA390080B2F5 /* pj_deriv.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pj_deriv.c; sourceTree = "<group>"; };
B89427BB0E6BEA390080B2F5 /* PJ_wag7.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_wag7.c; sourceTree = "<group>"; };
B89427BC0E6BEA390080B2F5 /* pj_units.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pj_units.c; sourceTree = "<group>"; };
B89427BD0E6BEA390080B2F5 /* PJ_gall.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_gall.c; sourceTree = "<group>"; };
B89427BE0E6BEA390080B2F5 /* PJ_urmfps.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_urmfps.c; sourceTree = "<group>"; };
B89427BF0E6BEA390080B2F5 /* pj_ellps.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pj_ellps.c; sourceTree = "<group>"; };
B89427C00E6BEA390080B2F5 /* PJ_merc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_merc.c; sourceTree = "<group>"; };
B89427C10E6BEA390080B2F5 /* gen_cheb.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = gen_cheb.c; sourceTree = "<group>"; };
B89427C20E6BEA390080B2F5 /* PJ_bonne.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_bonne.c; sourceTree = "<group>"; };
B89427C30E6BEA390080B2F5 /* pj_phi2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pj_phi2.c; sourceTree = "<group>"; };
B89427C40E6BEA390080B2F5 /* PJ_putp4p.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_putp4p.c; sourceTree = "<group>"; };
B89427C50E6BEA390080B2F5 /* proj_rouss.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = proj_rouss.c; sourceTree = "<group>"; };
B89427C60E6BEA390080B2F5 /* pj_list.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = pj_list.h; sourceTree = "<group>"; };
B89427C70E6BEA390080B2F5 /* pj_release.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pj_release.c; sourceTree = "<group>"; };
B89427C80E6BEA390080B2F5 /* PJ_boggs.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_boggs.c; sourceTree = "<group>"; };
B89427C90E6BEA390080B2F5 /* pj_open_lib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pj_open_lib.c; sourceTree = "<group>"; };
B89427CA0E6BEA390080B2F5 /* dmstor.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = dmstor.c; sourceTree = "<group>"; };
B89427CB0E6BEA390080B2F5 /* PJ_ortho.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_ortho.c; sourceTree = "<group>"; };
B89427CC0E6BEA390080B2F5 /* pj_strerrno.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pj_strerrno.c; sourceTree = "<group>"; };
B89427CD0E6BEA390080B2F5 /* geod_for.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = geod_for.c; sourceTree = "<group>"; };
B89427CE0E6BEA390080B2F5 /* PJ_tpeqd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_tpeqd.c; sourceTree = "<group>"; };
B89427CF0E6BEA390080B2F5 /* PJ_omerc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_omerc.c; sourceTree = "<group>"; };
B89427D00E6BEA390080B2F5 /* PJ_somerc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_somerc.c; sourceTree = "<group>"; };
B89427D10E6BEA390080B2F5 /* PJ_denoy.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_denoy.c; sourceTree = "<group>"; };
B89427D20E6BEA390080B2F5 /* PJ_fouc_s.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_fouc_s.c; sourceTree = "<group>"; };
B89427D30E6BEA390080B2F5 /* pj_datums.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pj_datums.c; sourceTree = "<group>"; };
B89427D40E6BEA390080B2F5 /* PJ_mbtfpq.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_mbtfpq.c; sourceTree = "<group>"; };
B89427D50E6BEA390080B2F5 /* PJ_stere.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_stere.c; sourceTree = "<group>"; };
B89427D60E6BEA390080B2F5 /* PJ_tcea.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_tcea.c; sourceTree = "<group>"; };
B89427D70E6BEA390080B2F5 /* PJ_vandg2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_vandg2.c; sourceTree = "<group>"; };
B89427D80E6BEA390080B2F5 /* nad_cvt.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = nad_cvt.c; sourceTree = "<group>"; };
B89427D90E6BEA390080B2F5 /* PJ_laea.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_laea.c; sourceTree = "<group>"; };
B89427DA0E6BEA390080B2F5 /* PJ_eqdc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_eqdc.c; sourceTree = "<group>"; };
B89427DB0E6BEA390080B2F5 /* pj_geocent.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pj_geocent.c; sourceTree = "<group>"; };
B89427DC0E6BEA390080B2F5 /* pj_init.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pj_init.c; sourceTree = "<group>"; };
B89427DD0E6BEA390080B2F5 /* pj_param.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pj_param.c; sourceTree = "<group>"; };
B89427DE0E6BEA390080B2F5 /* PJ_nocol.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_nocol.c; sourceTree = "<group>"; };
B89427DF0E6BEA390080B2F5 /* PJ_airy.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_airy.c; sourceTree = "<group>"; };
B89427E00E6BEA390080B2F5 /* PJ_lcc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_lcc.c; sourceTree = "<group>"; };
B89427E10E6BEA390080B2F5 /* PJ_moll.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_moll.c; sourceTree = "<group>"; };
B89427E20E6BEA390080B2F5 /* nad_list.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = nad_list.h; sourceTree = "<group>"; };
B89427E30E6BEA390080B2F5 /* pj_datum_set.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pj_datum_set.c; sourceTree = "<group>"; };
B89427E40E6BEA390080B2F5 /* pj_errno.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pj_errno.c; sourceTree = "<group>"; };
B89427E50E6BEA390080B2F5 /* PJ_ocea.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_ocea.c; sourceTree = "<group>"; };
B89427E60E6BEA390080B2F5 /* pj_zpoly1.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pj_zpoly1.c; sourceTree = "<group>"; };
B89427E70E6BEA390080B2F5 /* pj_ell_set.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pj_ell_set.c; sourceTree = "<group>"; };
B89427E80E6BEA390080B2F5 /* pj_apply_gridshift.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pj_apply_gridshift.c; sourceTree = "<group>"; };
B89427E90E6BEA390080B2F5 /* pj_msfn.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pj_msfn.c; sourceTree = "<group>"; };
B89427EA0E6BEA390080B2F5 /* proj_config.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = proj_config.h; sourceTree = "<group>"; };
B89427EB0E6BEA390080B2F5 /* PJ_putp2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_putp2.c; sourceTree = "<group>"; };
B89427EC0E6BEA390080B2F5 /* emess.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = emess.h; sourceTree = "<group>"; };
B89427ED0E6BEA390080B2F5 /* PJ_aitoff.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_aitoff.c; sourceTree = "<group>"; };
B89427EE0E6BEA390080B2F5 /* PJ_lcca.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_lcca.c; sourceTree = "<group>"; };
B89427EF0E6BEA390080B2F5 /* PJ_eck4.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_eck4.c; sourceTree = "<group>"; };
B89427F00E6BEA390080B2F5 /* PJ_putp6.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_putp6.c; sourceTree = "<group>"; };
B89427F10E6BEA390080B2F5 /* PJ_august.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_august.c; sourceTree = "<group>"; };
B89427F20E6BEA390080B2F5 /* PJ_rpoly.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_rpoly.c; sourceTree = "<group>"; };
B89427F30E6BEA390080B2F5 /* geocent.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = geocent.c; sourceTree = "<group>"; };
B89427F40E6BEA390080B2F5 /* PJ_chamb.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_chamb.c; sourceTree = "<group>"; };
B89427F50E6BEA390080B2F5 /* adjlon.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = adjlon.c; sourceTree = "<group>"; };
B89427F60E6BEA390080B2F5 /* pj_fwd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pj_fwd.c; sourceTree = "<group>"; };
B89427F70E6BEA390080B2F5 /* PJ_aea.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_aea.c; sourceTree = "<group>"; };
B89427F80E6BEA390080B2F5 /* PJ_lsat.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_lsat.c; sourceTree = "<group>"; };
B89427F90E6BEA390080B2F5 /* nad_intr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = nad_intr.c; sourceTree = "<group>"; };
B89427FA0E6BEA390080B2F5 /* PJ_cc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_cc.c; sourceTree = "<group>"; };
B89427FB0E6BEA390080B2F5 /* PJ_gins8.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_gins8.c; sourceTree = "<group>"; };
B89427FC0E6BEA390080B2F5 /* PJ_hatano.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_hatano.c; sourceTree = "<group>"; };
B89427FD0E6BEA390080B2F5 /* PJ_mbt_fps.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_mbt_fps.c; sourceTree = "<group>"; };
B89427FE0E6BEA390080B2F5 /* PJ_aeqd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_aeqd.c; sourceTree = "<group>"; };
B89427FF0E6BEA390080B2F5 /* PJ_putp5.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_putp5.c; sourceTree = "<group>"; };
B89428000E6BEA390080B2F5 /* vector1.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = vector1.c; sourceTree = "<group>"; };
B89428010E6BEA390080B2F5 /* PJ_lask.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_lask.c; sourceTree = "<group>"; };
B89428020E6BEA390080B2F5 /* biveval.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = biveval.c; sourceTree = "<group>"; };
B89428030E6BEA390080B2F5 /* geocent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = geocent.h; sourceTree = "<group>"; };
B89428040E6BEA390080B2F5 /* PJ_bipc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_bipc.c; sourceTree = "<group>"; };
B89428050E6BEA390080B2F5 /* mk_cheby.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = mk_cheby.c; sourceTree = "<group>"; };
B89428060E6BEA390080B2F5 /* pj_malloc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pj_malloc.c; sourceTree = "<group>"; };
B89428070E6BEA390080B2F5 /* PJ_sts.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_sts.c; sourceTree = "<group>"; };
B89428080E6BEA390080B2F5 /* PJ_wag2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_wag2.c; sourceTree = "<group>"; };
B89428090E6BEA390080B2F5 /* PJ_wag3.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_wag3.c; sourceTree = "<group>"; };
B894280A0E6BEA390080B2F5 /* PJ_eck3.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_eck3.c; sourceTree = "<group>"; };
B894280B0E6BEA390080B2F5 /* PJ_cea.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_cea.c; sourceTree = "<group>"; };
B894280C0E6BEA390080B2F5 /* PJ_loxim.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_loxim.c; sourceTree = "<group>"; };
B894280D0E6BEA390080B2F5 /* pj_factors.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pj_factors.c; sourceTree = "<group>"; };
B894280E0E6BEA390080B2F5 /* PJ_geos.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_geos.c; sourceTree = "<group>"; };
B894280F0E6BEA390080B2F5 /* PJ_sconics.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_sconics.c; sourceTree = "<group>"; };
B89428100E6BEA390080B2F5 /* emess.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = emess.c; sourceTree = "<group>"; };
B89428110E6BEA390080B2F5 /* PJ_imw_p.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_imw_p.c; sourceTree = "<group>"; };
B89428120E6BEA390080B2F5 /* PJ_poly.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_poly.c; sourceTree = "<group>"; };
B89428130E6BEA390080B2F5 /* pj_gridlist.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pj_gridlist.c; sourceTree = "<group>"; };
B89428140E6BEA390080B2F5 /* pj_tsfn.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pj_tsfn.c; sourceTree = "<group>"; };
B89428150E6BEA390080B2F5 /* PJ_vandg.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_vandg.c; sourceTree = "<group>"; };
B89428160E6BEA390080B2F5 /* geodesic.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = geodesic.h; sourceTree = "<group>"; };
B89428170E6BEA390080B2F5 /* rtodms.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = rtodms.c; sourceTree = "<group>"; };
B89428180E6BEA390080B2F5 /* PJ_ob_tran.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PJ_ob_tran.c; sourceTree = "<group>"; };
B89428190E6BEA390080B2F5 /* jniproj.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = jniproj.c; sourceTree = "<group>"; };
B894281A0E6BEA390080B2F5 /* proj_api.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = proj_api.h; sourceTree = "<group>"; };
B894281B0E6BEA390080B2F5 /* pj_qsfn.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pj_qsfn.c; sourceTree = "<group>"; };
B894281E0E6BEA390080B2F5 /* TileSource.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TileSource.h; sourceTree = "<group>"; };
B894281F0E6BEA390080B2F5 /* OpenStreetMapsSource.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OpenStreetMapsSource.h; sourceTree = "<group>"; };
B89428200E6BEA390080B2F5 /* OpenStreetMapsSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = OpenStreetMapsSource.m; sourceTree = "<group>"; };
B89428220E6BEA390080B2F5 /* Tile.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Tile.h; sourceTree = "<group>"; };
B89428230E6BEA390080B2F5 /* TileImage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TileImage.h; sourceTree = "<group>"; };
B89428240E6BEA390080B2F5 /* TileImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = TileImage.m; sourceTree = "<group>"; };
B89428250E6BEA390080B2F5 /* TileLoader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TileLoader.h; sourceTree = "<group>"; };
B89428260E6BEA390080B2F5 /* TileLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = TileLoader.m; sourceTree = "<group>"; };
B89428270E6BEA390080B2F5 /* TileCache.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TileCache.h; sourceTree = "<group>"; };
B89428280E6BEA390080B2F5 /* MemoryCache.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemoryCache.h; sourceTree = "<group>"; };
B89428290E6BEA390080B2F5 /* MemoryCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MemoryCache.m; sourceTree = "<group>"; };
B894282A0E6BEA390080B2F5 /* DiskCache.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DiskCache.h; sourceTree = "<group>"; };
B894282B0E6BEA390080B2F5 /* DiskCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = DiskCache.m; sourceTree = "<group>"; };
B894282C0E6BEA390080B2F5 /* TileProxy.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TileProxy.h; sourceTree = "<group>"; };
B894282D0E6BEA390080B2F5 /* TileProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = TileProxy.m; sourceTree = "<group>"; };
B894282E0E6BEA390080B2F5 /* WebTileImage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WebTileImage.h; sourceTree = "<group>"; };
B894282F0E6BEA390080B2F5 /* WebTileImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = WebTileImage.m; sourceTree = "<group>"; };
B89428310E6BEA390080B2F5 /* Projection.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Projection.h; sourceTree = "<group>"; };
B89428320E6BEA390080B2F5 /* Projection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Projection.m; sourceTree = "<group>"; };
B89428330E6BEA390080B2F5 /* Transform.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Transform.h; sourceTree = "<group>"; };
B89428340E6BEA390080B2F5 /* Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Transform.m; sourceTree = "<group>"; };
B89428350E6BEA3A0080B2F5 /* Mercator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Mercator.h; sourceTree = "<group>"; };
B89428360E6BEA3A0080B2F5 /* Mercator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Mercator.m; sourceTree = "<group>"; };
B89428370E6BEA3A0080B2F5 /* FractalTileProjection.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FractalTileProjection.h; sourceTree = "<group>"; };
B89428380E6BEA3A0080B2F5 /* FractalTileProjection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = FractalTileProjection.m; sourceTree = "<group>"; };
B89428390E6BEA3A0080B2F5 /* TiledLayerController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TiledLayerController.h; sourceTree = "<group>"; };
B894283A0E6BEA3A0080B2F5 /* TiledLayerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = TiledLayerController.m; sourceTree = "<group>"; };
B894283B0E6BEA3A0080B2F5 /* MapView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MapView.h; sourceTree = "<group>"; };
B894283C0E6BEA3A0080B2F5 /* MapView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MapView.m; sourceTree = "<group>"; };
B894283E0E6BEA3A0080B2F5 /* MainView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MainView.h; sourceTree = "<group>"; };
B894283F0E6BEA3A0080B2F5 /* MainView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MainView.m; sourceTree = "<group>"; };
B89428400E6BEA3A0080B2F5 /* MainViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MainViewController.h; sourceTree = "<group>"; };
B89428410E6BEA3A0080B2F5 /* MainViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MainViewController.m; sourceTree = "<group>"; };
B89428430E6BEA3A0080B2F5 /* FlipsideView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FlipsideView.h; sourceTree = "<group>"; };
B89428440E6BEA3A0080B2F5 /* FlipsideView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = FlipsideView.m; sourceTree = "<group>"; };
B89428450E6BEA3A0080B2F5 /* FlipsideViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FlipsideViewController.h; sourceTree = "<group>"; };
B89428460E6BEA3A0080B2F5 /* FlipsideViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = FlipsideViewController.m; sourceTree = "<group>"; };
B89428490E6BEAB20080B2F5 /* ImagesAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ImagesAppDelegate.h; sourceTree = "<group>"; };
B894284A0E6BEAB20080B2F5 /* RootViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RootViewController.h; sourceTree = "<group>"; };
B894284B0E6BEAB20080B2F5 /* ImagesAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ImagesAppDelegate.m; sourceTree = "<group>"; };
B894284C0E6BEAB20080B2F5 /* RootViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RootViewController.m; sourceTree = "<group>"; };
B894284F0E6BEABC0080B2F5 /* RouteMe_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RouteMe_Prefix.pch; sourceTree = "<group>"; };
B89428500E6BEABC0080B2F5 /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
B89428530E6BEAD00080B2F5 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
B89428540E6BEAD00080B2F5 /* MainView.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = MainView.xib; sourceTree = "<group>"; };
B89428550E6BEAD00080B2F5 /* FlipsideView.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = FlipsideView.xib; sourceTree = "<group>"; };
B89428560E6BEAD00080B2F5 /* MainWindow.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = MainWindow.xib; sourceTree = "<group>"; };
B894285C0E6BEB020080B2F5 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = ../../../../../../Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS2.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = "<group>"; };
B894285D0E6BEB020080B2F5 /* CoreLocation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreLocation.framework; path = ../../../../../../Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS2.0.sdk/System/Library/Frameworks/CoreLocation.framework; sourceTree = "<group>"; };
B894285E0E6BEB020080B2F5 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = ../../../../../../Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS2.0.sdk/System/Library/Frameworks/CoreGraphics.framework; sourceTree = "<group>"; };
B894285F0E6BEB020080B2F5 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = ../../../../../../Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS2.0.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = "<group>"; };
B8A51E730E6D6171006AA8E2 /* loading.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading.png; sourceTree = "<group>"; };
B8A51E900E6D7192006AA8E2 /* TileCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TileCache.m; sourceTree = "<group>"; };
B8A522580E6E84F3006AA8E2 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
B8A5C8790E757FC8005509DE /* MapRenderer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MapRenderer.m; sourceTree = "<group>"; };
B8A5C8840E758250005509DE /* CoreAnimationRenderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CoreAnimationRenderer.h; sourceTree = "<group>"; };
B8A5C8850E758250005509DE /* CoreAnimationRenderer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CoreAnimationRenderer.m; sourceTree = "<group>"; };
B8A5C9200E75A107005509DE /* LayeredTileLoader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LayeredTileLoader.h; sourceTree = "<group>"; };
B8A5C9210E75A107005509DE /* LayeredTileLoader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LayeredTileLoader.m; sourceTree = "<group>"; };
B8A5C9BE0E763371005509DE /* Tile.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Tile.c; sourceTree = "<group>"; };
B8A5CB150E764C84005509DE /* TileImageSet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TileImageSet.h; sourceTree = "<group>"; };
B8A5CB160E764C84005509DE /* TileImageSet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TileImageSet.m; sourceTree = "<group>"; };
B8C6B1270E78C79200C12A12 /* LayerToScreenProjection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LayerToScreenProjection.h; sourceTree = "<group>"; };
B8C6B1280E78C79200C12A12 /* LayerToScreenProjection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LayerToScreenProjection.m; sourceTree = "<group>"; };
B8D9B0B70E6BEC1900EDA368 /* libproj4.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libproj4.a; sourceTree = BUILT_PRODUCTS_DIR; };
B8D9B17D0E6BF0D600EDA368 /* README */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README; sourceTree = "<group>"; };
B8D9B17E0E6BF0DD00EDA368 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
B8D9B1E90E6BFA1C00EDA368 /* libMapView.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libMapView.a; sourceTree = BUILT_PRODUCTS_DIR; };
B8D9B27B0E6D460500EDA368 /* FileTileImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FileTileImage.h; sourceTree = "<group>"; };
B8D9B27C0E6D460500EDA368 /* FileTileImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FileTileImage.m; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
1D60588F0D05DD3D006BFB54 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
B89428600E6BEB020080B2F5 /* Foundation.framework in Frameworks */,
B89428610E6BEB020080B2F5 /* CoreLocation.framework in Frameworks */,
B89428620E6BEB020080B2F5 /* CoreGraphics.framework in Frameworks */,
B89428630E6BEB020080B2F5 /* UIKit.framework in Frameworks */,
B8D9B1F10E6BFA4700EDA368 /* libMapView.a in Frameworks */,
B8A5225D0E6E8508006AA8E2 /* QuartzCore.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
B8D9B0B50E6BEC1900EDA368 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
B8D9B1E70E6BFA1C00EDA368 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
B8D9B1EE0E6BFA2A00EDA368 /* libproj4.a in Frameworks */,
B8D9B23F0E6BFE0000EDA368 /* CoreGraphics.framework in Frameworks */,
B8D9B2400E6BFE0000EDA368 /* Foundation.framework in Frameworks */,
B8D9B2410E6BFE0400EDA368 /* CoreLocation.framework in Frameworks */,
B8D9B2420E6BFE0900EDA368 /* UIKit.framework in Frameworks */,
B8A522590E6E84F3006AA8E2 /* QuartzCore.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
19C28FACFE9D520D11CA2CBB /* Products */ = {
isa = PBXGroup;
children = (
1D6058910D05DD3D006BFB54 /* RouteMe.app */,
B8D9B0B70E6BEC1900EDA368 /* libproj4.a */,
B8D9B1E90E6BFA1C00EDA368 /* libMapView.a */,
);
name = Products;
sourceTree = "<group>";
};
29B97314FDCFA39411CA2CEA /* CustomTemplate */ = {
isa = PBXGroup;
children = (
B894285B0E6BEAE40080B2F5 /* Frameworks */,
B89428520E6BEAC70080B2F5 /* Resources */,
B89428480E6BEA970080B2F5 /* Application Support */,
B89428420E6BEA3A0080B2F5 /* Flipside View */,
B894283D0E6BEA3A0080B2F5 /* Main View */,
B894281C0E6BEA390080B2F5 /* Map View */,
B89427830E6BEA390080B2F5 /* proj4 */,
19C28FACFE9D520D11CA2CBB /* Products */,
B8D9B17D0E6BF0D600EDA368 /* README */,
B8D9B17E0E6BF0DD00EDA368 /* LICENSE */,
);
name = CustomTemplate;
sourceTree = "<group>";
};
B87626CC0E7529CF0024B9C5 /* Renderers */ = {
isa = PBXGroup;
children = (
B87626D30E752B640024B9C5 /* Quartz Renderer */,
B8A5C8780E757E95005509DE /* Core Animation Renderer */,
B87626D20E752B280024B9C5 /* Tiled Layer Renderer */,
B89428250E6BEA390080B2F5 /* TileLoader.h */,
B89428260E6BEA390080B2F5 /* TileLoader.m */,
B87626C80E7529BE0024B9C5 /* ScreenProjection.h */,
B87626C90E7529BE0024B9C5 /* ScreenProjection.m */,
B87626CE0E752A010024B9C5 /* MapRenderer.h */,
B8A5C8790E757FC8005509DE /* MapRenderer.m */,
);
name = Renderers;
sourceTree = "<group>";
};
B87626D20E752B280024B9C5 /* Tiled Layer Renderer */ = {
isa = PBXGroup;
children = (
B89428390E6BEA3A0080B2F5 /* TiledLayerController.h */,
B894283A0E6BEA3A0080B2F5 /* TiledLayerController.m */,
);
name = "Tiled Layer Renderer";
sourceTree = "<group>";
};
B87626D30E752B640024B9C5 /* Quartz Renderer */ = {
isa = PBXGroup;
children = (
B87626D50E752E6E0024B9C5 /* QuartzRenderer.h */,
B87626D60E752E6E0024B9C5 /* QuartzRenderer.m */,
);
name = "Quartz Renderer";
sourceTree = "<group>";
};
B87626D40E752DF30024B9C5 /* Cache */ = {
isa = PBXGroup;
children = (
B89428270E6BEA390080B2F5 /* TileCache.h */,
B8A51E900E6D7192006AA8E2 /* TileCache.m */,
B89428280E6BEA390080B2F5 /* MemoryCache.h */,
B89428290E6BEA390080B2F5 /* MemoryCache.m */,
B894282A0E6BEA390080B2F5 /* DiskCache.h */,
B894282B0E6BEA390080B2F5 /* DiskCache.m */,
);
name = Cache;
sourceTree = "<group>";
};
B87626EE0E7565350024B9C5 /* Utilities */ = {
isa = PBXGroup;
children = (
B87626EF0E75654C0024B9C5 /* MathUtils.h */,
B87626F00E75654C0024B9C5 /* MathUtils.c */,
);
name = Utilities;
sourceTree = "<group>";
};
B89427830E6BEA390080B2F5 /* proj4 */ = {
isa = PBXGroup;
children = (
B89427840E6BEA390080B2F5 /* p_series.c */,
B89427850E6BEA390080B2F5 /* bch2bps.c */,
B89427860E6BEA390080B2F5 /* pj_inv.c */,
B89427870E6BEA390080B2F5 /* bchgen.c */,
B89427880E6BEA390080B2F5 /* geod_set.c */,
B89427890E6BEA390080B2F5 /* pj_auth.c */,
B894278A0E6BEA390080B2F5 /* PJ_crast.c */,
B894278B0E6BEA390080B2F5 /* PJ_eck5.c */,
B894278C0E6BEA390080B2F5 /* pj_gauss.c */,
B894278D0E6BEA390080B2F5 /* PJ_fahey.c */,
B894278E0E6BEA390080B2F5 /* PJ_tcc.c */,
B894278F0E6BEA390080B2F5 /* PJ_mod_ster.c */,
B89427900E6BEA390080B2F5 /* pj_mlfn.c */,
B89427910E6BEA390080B2F5 /* pj_utils.c */,
B89427920E6BEA390080B2F5 /* PJ_wink2.c */,
B89427930E6BEA390080B2F5 /* PJ_wink1.c */,
B89427940E6BEA390080B2F5 /* PJ_oea.c */,
B89427950E6BEA390080B2F5 /* PJ_eqc.c */,
B89427960E6BEA390080B2F5 /* PJ_cass.c */,
B89427970E6BEA390080B2F5 /* pj_latlong.c */,
B89427980E6BEA390080B2F5 /* PJ_urm5.c */,
B89427990E6BEA390080B2F5 /* nad_init.c */,
B894279A0E6BEA390080B2F5 /* PJ_nzmg.c */,
B894279B0E6BEA390080B2F5 /* PJ_mill.c */,
B894279C0E6BEA390080B2F5 /* PJ_nsper.c */,
B894279D0E6BEA390080B2F5 /* PJ_hammer.c */,
B894279E0E6BEA390080B2F5 /* aasincos.c */,
B894279F0E6BEA390080B2F5 /* PJ_bacon.c */,
B89427A00E6BEA390080B2F5 /* PJ_eck2.c */,
B89427A10E6BEA390080B2F5 /* PJ_gnom.c */,
B89427A20E6BEA390080B2F5 /* pj_gridinfo.c */,
B89427A30E6BEA390080B2F5 /* org_proj4_Projections.h */,
B89427A40E6BEA390080B2F5 /* PJ_eck1.c */,
B89427A50E6BEA390080B2F5 /* pj_list.c */,
B89427A60E6BEA390080B2F5 /* PJ_labrd.c */,
B89427A70E6BEA390080B2F5 /* PJ_mbtfpp.c */,
B89427A80E6BEA390080B2F5 /* PJ_nell.c */,
B89427A90E6BEA390080B2F5 /* PJ_nell_h.c */,
B89427AA0E6BEA390080B2F5 /* pj_pr_list.c */,
B89427AB0E6BEA390080B2F5 /* PJ_sterea.c */,
B89427AC0E6BEA390080B2F5 /* PJ_tmerc.c */,
B89427AD0E6BEA390080B2F5 /* pj_transform.c */,
B89427AE0E6BEA390080B2F5 /* PJ_robin.c */,
B89427AF0E6BEA390080B2F5 /* proj_mdist.c */,
B89427B00E6BEA390080B2F5 /* PJ_goode.c */,
B89427B10E6BEA390080B2F5 /* PJ_lagrng.c */,
B89427B20E6BEA390080B2F5 /* geod_inv.c */,
B89427B30E6BEA390080B2F5 /* PJ_vandg4.c */,
B89427B40E6BEA390080B2F5 /* projects.h */,
B89427B50E6BEA390080B2F5 /* PJ_collg.c */,
B89427B60E6BEA390080B2F5 /* PJ_gn_sinu.c */,
B89427B70E6BEA390080B2F5 /* PJ_larr.c */,
B89427B80E6BEA390080B2F5 /* PJ_krovak.c */,
B89427B90E6BEA390080B2F5 /* PJ_putp3.c */,
B89427BA0E6BEA390080B2F5 /* pj_deriv.c */,
B89427BB0E6BEA390080B2F5 /* PJ_wag7.c */,
B89427BC0E6BEA390080B2F5 /* pj_units.c */,
B89427BD0E6BEA390080B2F5 /* PJ_gall.c */,
B89427BE0E6BEA390080B2F5 /* PJ_urmfps.c */,
B89427BF0E6BEA390080B2F5 /* pj_ellps.c */,
B89427C00E6BEA390080B2F5 /* PJ_merc.c */,
B89427C10E6BEA390080B2F5 /* gen_cheb.c */,
B89427C20E6BEA390080B2F5 /* PJ_bonne.c */,
B89427C30E6BEA390080B2F5 /* pj_phi2.c */,
B89427C40E6BEA390080B2F5 /* PJ_putp4p.c */,
B89427C50E6BEA390080B2F5 /* proj_rouss.c */,
B89427C60E6BEA390080B2F5 /* pj_list.h */,
B89427C70E6BEA390080B2F5 /* pj_release.c */,
B89427C80E6BEA390080B2F5 /* PJ_boggs.c */,
B89427C90E6BEA390080B2F5 /* pj_open_lib.c */,
B89427CA0E6BEA390080B2F5 /* dmstor.c */,
B89427CB0E6BEA390080B2F5 /* PJ_ortho.c */,
B89427CC0E6BEA390080B2F5 /* pj_strerrno.c */,
B89427CD0E6BEA390080B2F5 /* geod_for.c */,
B89427CE0E6BEA390080B2F5 /* PJ_tpeqd.c */,
B89427CF0E6BEA390080B2F5 /* PJ_omerc.c */,
B89427D00E6BEA390080B2F5 /* PJ_somerc.c */,
B89427D10E6BEA390080B2F5 /* PJ_denoy.c */,
B89427D20E6BEA390080B2F5 /* PJ_fouc_s.c */,
B89427D30E6BEA390080B2F5 /* pj_datums.c */,
B89427D40E6BEA390080B2F5 /* PJ_mbtfpq.c */,
B89427D50E6BEA390080B2F5 /* PJ_stere.c */,
B89427D60E6BEA390080B2F5 /* PJ_tcea.c */,
B89427D70E6BEA390080B2F5 /* PJ_vandg2.c */,
B89427D80E6BEA390080B2F5 /* nad_cvt.c */,
B89427D90E6BEA390080B2F5 /* PJ_laea.c */,
B89427DA0E6BEA390080B2F5 /* PJ_eqdc.c */,
B89427DB0E6BEA390080B2F5 /* pj_geocent.c */,
B89427DC0E6BEA390080B2F5 /* pj_init.c */,
B89427DD0E6BEA390080B2F5 /* pj_param.c */,
B89427DE0E6BEA390080B2F5 /* PJ_nocol.c */,
B89427DF0E6BEA390080B2F5 /* PJ_airy.c */,
B89427E00E6BEA390080B2F5 /* PJ_lcc.c */,
B89427E10E6BEA390080B2F5 /* PJ_moll.c */,
B89427E20E6BEA390080B2F5 /* nad_list.h */,
B89427E30E6BEA390080B2F5 /* pj_datum_set.c */,
B89427E40E6BEA390080B2F5 /* pj_errno.c */,
B89427E50E6BEA390080B2F5 /* PJ_ocea.c */,
B89427E60E6BEA390080B2F5 /* pj_zpoly1.c */,
B89427E70E6BEA390080B2F5 /* pj_ell_set.c */,
B89427E80E6BEA390080B2F5 /* pj_apply_gridshift.c */,
B89427E90E6BEA390080B2F5 /* pj_msfn.c */,
B89427EA0E6BEA390080B2F5 /* proj_config.h */,
B89427EB0E6BEA390080B2F5 /* PJ_putp2.c */,
B89427EC0E6BEA390080B2F5 /* emess.h */,
B89427ED0E6BEA390080B2F5 /* PJ_aitoff.c */,
B89427EE0E6BEA390080B2F5 /* PJ_lcca.c */,
B89427EF0E6BEA390080B2F5 /* PJ_eck4.c */,
B89427F00E6BEA390080B2F5 /* PJ_putp6.c */,
B89427F10E6BEA390080B2F5 /* PJ_august.c */,
B89427F20E6BEA390080B2F5 /* PJ_rpoly.c */,
B89427F30E6BEA390080B2F5 /* geocent.c */,
B89427F40E6BEA390080B2F5 /* PJ_chamb.c */,
B89427F50E6BEA390080B2F5 /* adjlon.c */,
B89427F60E6BEA390080B2F5 /* pj_fwd.c */,
B89427F70E6BEA390080B2F5 /* PJ_aea.c */,
B89427F80E6BEA390080B2F5 /* PJ_lsat.c */,
B89427F90E6BEA390080B2F5 /* nad_intr.c */,
B89427FA0E6BEA390080B2F5 /* PJ_cc.c */,
B89427FB0E6BEA390080B2F5 /* PJ_gins8.c */,
B89427FC0E6BEA390080B2F5 /* PJ_hatano.c */,
B89427FD0E6BEA390080B2F5 /* PJ_mbt_fps.c */,
B89427FE0E6BEA390080B2F5 /* PJ_aeqd.c */,
B89427FF0E6BEA390080B2F5 /* PJ_putp5.c */,
B89428000E6BEA390080B2F5 /* vector1.c */,
B89428010E6BEA390080B2F5 /* PJ_lask.c */,
B89428020E6BEA390080B2F5 /* biveval.c */,
B89428030E6BEA390080B2F5 /* geocent.h */,
B89428040E6BEA390080B2F5 /* PJ_bipc.c */,
B89428050E6BEA390080B2F5 /* mk_cheby.c */,
B89428060E6BEA390080B2F5 /* pj_malloc.c */,
B89428070E6BEA390080B2F5 /* PJ_sts.c */,
B89428080E6BEA390080B2F5 /* PJ_wag2.c */,
B89428090E6BEA390080B2F5 /* PJ_wag3.c */,
B894280A0E6BEA390080B2F5 /* PJ_eck3.c */,
B894280B0E6BEA390080B2F5 /* PJ_cea.c */,
B894280C0E6BEA390080B2F5 /* PJ_loxim.c */,
B894280D0E6BEA390080B2F5 /* pj_factors.c */,
B894280E0E6BEA390080B2F5 /* PJ_geos.c */,
B894280F0E6BEA390080B2F5 /* PJ_sconics.c */,
B89428100E6BEA390080B2F5 /* emess.c */,
B89428110E6BEA390080B2F5 /* PJ_imw_p.c */,
B89428120E6BEA390080B2F5 /* PJ_poly.c */,
B89428130E6BEA390080B2F5 /* pj_gridlist.c */,
B89428140E6BEA390080B2F5 /* pj_tsfn.c */,
B89428150E6BEA390080B2F5 /* PJ_vandg.c */,
B89428160E6BEA390080B2F5 /* geodesic.h */,
B89428170E6BEA390080B2F5 /* rtodms.c */,
B89428180E6BEA390080B2F5 /* PJ_ob_tran.c */,
B89428190E6BEA390080B2F5 /* jniproj.c */,
B894281A0E6BEA390080B2F5 /* proj_api.h */,
B894281B0E6BEA390080B2F5 /* pj_qsfn.c */,
);
name = proj4;
sourceTree = "<group>";
};
B894281C0E6BEA390080B2F5 /* Map View */ = {
isa = PBXGroup;
children = (
B87626EE0E7565350024B9C5 /* Utilities */,
B87626CC0E7529CF0024B9C5 /* Renderers */,
B894283B0E6BEA3A0080B2F5 /* MapView.h */,
B894283C0E6BEA3A0080B2F5 /* MapView.m */,
B89428210E6BEA390080B2F5 /* Tile Management */,
B89428300E6BEA390080B2F5 /* Projections */,
B894281D0E6BEA390080B2F5 /* Tile Source */,
);
name = "Map View";
sourceTree = "<group>";
};
B894281D0E6BEA390080B2F5 /* Tile Source */ = {
isa = PBXGroup;
children = (
B894281E0E6BEA390080B2F5 /* TileSource.h */,
B894281F0E6BEA390080B2F5 /* OpenStreetMapsSource.h */,
B89428200E6BEA390080B2F5 /* OpenStreetMapsSource.m */,
);
name = "Tile Source";
sourceTree = "<group>";
};
B89428210E6BEA390080B2F5 /* Tile Management */ = {
isa = PBXGroup;
children = (
B87626D40E752DF30024B9C5 /* Cache */,
B89428220E6BEA390080B2F5 /* Tile.h */,
B8A5C9BE0E763371005509DE /* Tile.c */,
B89428230E6BEA390080B2F5 /* TileImage.h */,
B89428240E6BEA390080B2F5 /* TileImage.m */,
B894282C0E6BEA390080B2F5 /* TileProxy.h */,
B894282D0E6BEA390080B2F5 /* TileProxy.m */,
B894282E0E6BEA390080B2F5 /* WebTileImage.h */,
B894282F0E6BEA390080B2F5 /* WebTileImage.m */,
B8D9B27B0E6D460500EDA368 /* FileTileImage.h */,
B8D9B27C0E6D460500EDA368 /* FileTileImage.m */,
B8A5CB150E764C84005509DE /* TileImageSet.h */,
B8A5CB160E764C84005509DE /* TileImageSet.m */,
);
name = "Tile Management";
sourceTree = "<group>";
};
B89428300E6BEA390080B2F5 /* Projections */ = {
isa = PBXGroup;
children = (
B89428310E6BEA390080B2F5 /* Projection.h */,
B89428320E6BEA390080B2F5 /* Projection.m */,
B89428330E6BEA390080B2F5 /* Transform.h */,
B89428340E6BEA390080B2F5 /* Transform.m */,
B89428350E6BEA3A0080B2F5 /* Mercator.h */,
B89428360E6BEA3A0080B2F5 /* Mercator.m */,
B89428370E6BEA3A0080B2F5 /* FractalTileProjection.h */,
B89428380E6BEA3A0080B2F5 /* FractalTileProjection.m */,
);
name = Projections;
sourceTree = "<group>";
};
B894283D0E6BEA3A0080B2F5 /* Main View */ = {
isa = PBXGroup;
children = (
B894283E0E6BEA3A0080B2F5 /* MainView.h */,
B894283F0E6BEA3A0080B2F5 /* MainView.m */,
B89428400E6BEA3A0080B2F5 /* MainViewController.h */,
B89428410E6BEA3A0080B2F5 /* MainViewController.m */,
);
name = "Main View";
sourceTree = "<group>";
};
B89428420E6BEA3A0080B2F5 /* Flipside View */ = {
isa = PBXGroup;
children = (
B89428430E6BEA3A0080B2F5 /* FlipsideView.h */,
B89428440E6BEA3A0080B2F5 /* FlipsideView.m */,
B89428450E6BEA3A0080B2F5 /* FlipsideViewController.h */,
B89428460E6BEA3A0080B2F5 /* FlipsideViewController.m */,
);
name = "Flipside View";
sourceTree = "<group>";
};
B89428480E6BEA970080B2F5 /* Application Support */ = {
isa = PBXGroup;
children = (
B894284F0E6BEABC0080B2F5 /* RouteMe_Prefix.pch */,
B89428500E6BEABC0080B2F5 /* main.m */,
B89428490E6BEAB20080B2F5 /* ImagesAppDelegate.h */,
B894284A0E6BEAB20080B2F5 /* RootViewController.h */,
B894284B0E6BEAB20080B2F5 /* ImagesAppDelegate.m */,
B894284C0E6BEAB20080B2F5 /* RootViewController.m */,
);
name = "Application Support";
sourceTree = "<group>";
};
B89428520E6BEAC70080B2F5 /* Resources */ = {
isa = PBXGroup;
children = (
B8A51E730E6D6171006AA8E2 /* loading.png */,
B89428530E6BEAD00080B2F5 /* Info.plist */,
B89428540E6BEAD00080B2F5 /* MainView.xib */,
B89428550E6BEAD00080B2F5 /* FlipsideView.xib */,
B89428560E6BEAD00080B2F5 /* MainWindow.xib */,
);
name = Resources;
sourceTree = "<group>";
};
B894285B0E6BEAE40080B2F5 /* Frameworks */ = {
isa = PBXGroup;
children = (
B8A522580E6E84F3006AA8E2 /* QuartzCore.framework */,
B894285C0E6BEB020080B2F5 /* Foundation.framework */,
B894285D0E6BEB020080B2F5 /* CoreLocation.framework */,
B894285E0E6BEB020080B2F5 /* CoreGraphics.framework */,
B894285F0E6BEB020080B2F5 /* UIKit.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
B8A5C8780E757E95005509DE /* Core Animation Renderer */ = {
isa = PBXGroup;
children = (
B8A5C8840E758250005509DE /* CoreAnimationRenderer.h */,
B8A5C8850E758250005509DE /* CoreAnimationRenderer.m */,
B8A5C9200E75A107005509DE /* LayeredTileLoader.h */,
B8A5C9210E75A107005509DE /* LayeredTileLoader.m */,
B8C6B1270E78C79200C12A12 /* LayerToScreenProjection.h */,
B8C6B1280E78C79200C12A12 /* LayerToScreenProjection.m */,
);
name = "Core Animation Renderer";
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
B8D9B0B30E6BEC1900EDA368 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
B8D9B0C60E6BECD400EDA368 /* emess.h in Headers */,
B8D9B0D20E6BECD400EDA368 /* geodesic.h in Headers */,
B8D9B11E0E6BECD400EDA368 /* proj_config.h in Headers */,
B8D9B1380E6BECD400EDA368 /* geocent.h in Headers */,
B8D9B1390E6BECD400EDA368 /* nad_list.h in Headers */,
B8D9B1490E6BECD400EDA368 /* proj_api.h in Headers */,
B8D9B14B0E6BECD400EDA368 /* projects.h in Headers */,
B8D9B14C0E6BECD400EDA368 /* pj_list.h in Headers */,
B8D9B1540E6BECD400EDA368 /* org_proj4_Projections.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
B8D9B1E50E6BFA1C00EDA368 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
B8D9B1FF0E6BFA7F00EDA368 /* MapView.h in Headers */,
B8D9B2000E6BFA7F00EDA368 /* FractalTileProjection.h in Headers */,
B8D9B2010E6BFA7F00EDA368 /* TiledLayerController.h in Headers */,
B8D9B2020E6BFA7F00EDA368 /* TileImage.h in Headers */,
B8D9B2030E6BFA7F00EDA368 /* DiskCache.h in Headers */,
B8D9B2040E6BFA7F00EDA368 /* TileProxy.h in Headers */,
B8D9B2060E6BFA7F00EDA368 /* MemoryCache.h in Headers */,
B8D9B2070E6BFA7F00EDA368 /* Tile.h in Headers */,
B8D9B2080E6BFA7F00EDA368 /* TileSource.h in Headers */,
B8D9B2090E6BFA7F00EDA368 /* Transform.h in Headers */,
B8D9B20A0E6BFA7F00EDA368 /* TileCache.h in Headers */,
B8D9B20B0E6BFA7F00EDA368 /* WebTileImage.h in Headers */,
B8D9B20C0E6BFA7F00EDA368 /* Projection.h in Headers */,
B8D9B20D0E6BFA7F00EDA368 /* OpenStreetMapsSource.h in Headers */,
B8D9B20E0E6BFA7F00EDA368 /* Mercator.h in Headers */,
B8D9B27D0E6D460500EDA368 /* FileTileImage.h in Headers */,
B87626CA0E7529BE0024B9C5 /* ScreenProjection.h in Headers */,
B87626D00E752A010024B9C5 /* MapRenderer.h in Headers */,
B87626D70E752E6E0024B9C5 /* QuartzRenderer.h in Headers */,
B87626F10E75654C0024B9C5 /* MathUtils.h in Headers */,
B8A5C8860E758250005509DE /* CoreAnimationRenderer.h in Headers */,
B8A5C9220E75A107005509DE /* LayeredTileLoader.h in Headers */,
B8A5CB170E764C84005509DE /* TileImageSet.h in Headers */,
B8C6B1290E78C79200C12A12 /* LayerToScreenProjection.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
1D6058900D05DD3D006BFB54 /* RouteMe */ = {
isa = PBXNativeTarget;
buildConfigurationList = 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "RouteMe" */;
buildPhases = (
1D60588D0D05DD3D006BFB54 /* Resources */,
1D60588E0D05DD3D006BFB54 /* Sources */,
1D60588F0D05DD3D006BFB54 /* Frameworks */,
);
buildRules = (
);
dependencies = (
B8D9B1F00E6BFA4400EDA368 /* PBXTargetDependency */,
);
name = RouteMe;
productName = RouteMe;
productReference = 1D6058910D05DD3D006BFB54 /* RouteMe.app */;
productType = "com.apple.product-type.application";
};
B8D9B0B60E6BEC1900EDA368 /* proj4 */ = {
isa = PBXNativeTarget;
buildConfigurationList = B8D9B0BA0E6BEC3800EDA368 /* Build configuration list for PBXNativeTarget "proj4" */;
buildPhases = (
B8D9B0B30E6BEC1900EDA368 /* Headers */,
B8D9B0B40E6BEC1900EDA368 /* Sources */,
B8D9B0B50E6BEC1900EDA368 /* Frameworks */,
);
buildRules = (
);
dependencies = (
);
name = proj4;
productName = proj4;
productReference = B8D9B0B70E6BEC1900EDA368 /* libproj4.a */;
productType = "com.apple.product-type.library.static";
};
B8D9B1E80E6BFA1C00EDA368 /* MapView */ = {
isa = PBXNativeTarget;
buildConfigurationList = B8D9B2110E6BFACA00EDA368 /* Build configuration list for PBXNativeTarget "MapView" */;
buildPhases = (
B8D9B1E50E6BFA1C00EDA368 /* Headers */,
B8D9B1E60E6BFA1C00EDA368 /* Sources */,
B8D9B1E70E6BFA1C00EDA368 /* Frameworks */,
);
buildRules = (
);
dependencies = (
B8D9B1ED0E6BFA2400EDA368 /* PBXTargetDependency */,
);
name = MapView;
productName = MapView;
productReference = B8D9B1E90E6BFA1C00EDA368 /* libMapView.a */;
productType = "com.apple.product-type.library.static";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
29B97313FDCFA39411CA2CEA /* Project object */ = {
isa = PBXProject;
buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "RouteMe" */;
compatibilityVersion = "Xcode 3.1";
hasScannedForEncodings = 1;
mainGroup = 29B97314FDCFA39411CA2CEA /* CustomTemplate */;
projectDirPath = "";
projectRoot = "";
targets = (
1D6058900D05DD3D006BFB54 /* RouteMe */,
B8D9B0B60E6BEC1900EDA368 /* proj4 */,
B8D9B1E80E6BFA1C00EDA368 /* MapView */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
1D60588D0D05DD3D006BFB54 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
B89428580E6BEAD00080B2F5 /* MainView.xib in Resources */,
B89428590E6BEAD00080B2F5 /* FlipsideView.xib in Resources */,
B894285A0E6BEAD00080B2F5 /* MainWindow.xib in Resources */,
B8D9B17F0E6BF0DD00EDA368 /* LICENSE in Resources */,
B8A51E740E6D6171006AA8E2 /* loading.png in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
1D60588E0D05DD3D006BFB54 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
B894284D0E6BEAB20080B2F5 /* ImagesAppDelegate.m in Sources */,
B894284E0E6BEAB20080B2F5 /* RootViewController.m in Sources */,
B89428510E6BEABC0080B2F5 /* main.m in Sources */,
B89429100E6BEB3D0080B2F5 /* FlipsideViewController.m in Sources */,
B89429190E6BEB420080B2F5 /* MainViewController.m in Sources */,
B89429420E6BEB670080B2F5 /* MainView.m in Sources */,
B8D9B0640E6BEBCC00EDA368 /* FlipsideView.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
B8D9B0B40E6BEC1900EDA368 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
B8D9B0BD0E6BECD400EDA368 /* pj_tsfn.c in Sources */,
B8D9B0BE0E6BECD400EDA368 /* PJ_tmerc.c in Sources */,
B8D9B0BF0E6BECD400EDA368 /* PJ_loxim.c in Sources */,
B8D9B0C00E6BECD400EDA368 /* PJ_goode.c in Sources */,
B8D9B0C10E6BECD400EDA368 /* pj_open_lib.c in Sources */,
B8D9B0C20E6BECD400EDA368 /* dmstor.c in Sources */,
B8D9B0C30E6BECD400EDA368 /* pj_qsfn.c in Sources */,
B8D9B0C40E6BECD400EDA368 /* PJ_sterea.c in Sources */,
B8D9B0C50E6BECD400EDA368 /* PJ_nell.c in Sources */,
B8D9B0C70E6BECD400EDA368 /* pj_inv.c in Sources */,
B8D9B0C80E6BECD400EDA368 /* gen_cheb.c in Sources */,
B8D9B0C90E6BECD400EDA368 /* PJ_aea.c in Sources */,
B8D9B0CA0E6BECD400EDA368 /* PJ_lask.c in Sources */,
B8D9B0CB0E6BECD400EDA368 /* pj_geocent.c in Sources */,
B8D9B0CC0E6BECD400EDA368 /* PJ_putp6.c in Sources */,
B8D9B0CD0E6BECD400EDA368 /* PJ_mill.c in Sources */,
B8D9B0CE0E6BECD400EDA368 /* pj_errno.c in Sources */,
B8D9B0CF0E6BECD400EDA368 /* pj_mlfn.c in Sources */,
B8D9B0D00E6BECD400EDA368 /* PJ_bonne.c in Sources */,
B8D9B0D10E6BECD400EDA368 /* nad_cvt.c in Sources */,
B8D9B0D30E6BECD400EDA368 /* PJ_wag3.c in Sources */,
B8D9B0D40E6BECD400EDA368 /* PJ_nell_h.c in Sources */,
B8D9B0D50E6BECD400EDA368 /* PJ_lsat.c in Sources */,
B8D9B0D60E6BECD400EDA368 /* bchgen.c in Sources */,
B8D9B0D70E6BECD400EDA368 /* PJ_krovak.c in Sources */,
B8D9B0D80E6BECD400EDA368 /* pj_ell_set.c in Sources */,
B8D9B0D90E6BECD400EDA368 /* PJ_cc.c in Sources */,
B8D9B0DA0E6BECD400EDA368 /* pj_transform.c in Sources */,
B8D9B0DB0E6BECD400EDA368 /* PJ_gall.c in Sources */,
B8D9B0DC0E6BECD400EDA368 /* PJ_putp4p.c in Sources */,
B8D9B0DD0E6BECD400EDA368 /* PJ_hatano.c in Sources */,
B8D9B0DE0E6BECD400EDA368 /* pj_zpoly1.c in Sources */,
B8D9B0DF0E6BECD400EDA368 /* PJ_mbt_fps.c in Sources */,
B8D9B0E00E6BECD400EDA368 /* biveval.c in Sources */,
B8D9B0E10E6BECD400EDA368 /* geod_for.c in Sources */,
B8D9B0E20E6BECD400EDA368 /* PJ_tcc.c in Sources */,
B8D9B0E30E6BECD400EDA368 /* PJ_bacon.c in Sources */,
B8D9B0E40E6BECD400EDA368 /* PJ_fahey.c in Sources */,
B8D9B0E50E6BECD400EDA368 /* emess.c in Sources */,
B8D9B0E60E6BECD400EDA368 /* geod_set.c in Sources */,
B8D9B0E70E6BECD400EDA368 /* PJ_gnom.c in Sources */,
B8D9B0E80E6BECD400EDA368 /* PJ_putp2.c in Sources */,
B8D9B0E90E6BECD400EDA368 /* pj_pr_list.c in Sources */,
B8D9B0EA0E6BECD400EDA368 /* PJ_mod_ster.c in Sources */,
B8D9B0EB0E6BECD400EDA368 /* PJ_oea.c in Sources */,
B8D9B0EC0E6BECD400EDA368 /* PJ_gn_sinu.c in Sources */,
B8D9B0ED0E6BECD400EDA368 /* pj_param.c in Sources */,
B8D9B0EE0E6BECD400EDA368 /* PJ_gins8.c in Sources */,
B8D9B0EF0E6BECD400EDA368 /* PJ_wag7.c in Sources */,
B8D9B0F00E6BECD400EDA368 /* PJ_tpeqd.c in Sources */,
B8D9B0F10E6BECD400EDA368 /* PJ_poly.c in Sources */,
B8D9B0F20E6BECD400EDA368 /* PJ_hammer.c in Sources */,
B8D9B0F30E6BECD400EDA368 /* PJ_eck1.c in Sources */,
B8D9B0F40E6BECD400EDA368 /* PJ_nsper.c in Sources */,
B8D9B0F50E6BECD400EDA368 /* p_series.c in Sources */,
B8D9B0F60E6BECD400EDA368 /* PJ_ocea.c in Sources */,
B8D9B0F70E6BECD400EDA368 /* vector1.c in Sources */,
B8D9B0F80E6BECD400EDA368 /* PJ_robin.c in Sources */,
B8D9B0F90E6BECD400EDA368 /* PJ_wag2.c in Sources */,
B8D9B0FA0E6BECD400EDA368 /* pj_utils.c in Sources */,
B8D9B0FB0E6BECD400EDA368 /* PJ_august.c in Sources */,
B8D9B0FC0E6BECD400EDA368 /* pj_datums.c in Sources */,
B8D9B0FD0E6BECD400EDA368 /* PJ_wink2.c in Sources */,
B8D9B0FE0E6BECD400EDA368 /* pj_ellps.c in Sources */,
B8D9B0FF0E6BECD400EDA368 /* PJ_sts.c in Sources */,
B8D9B1000E6BECD400EDA368 /* PJ_ob_tran.c in Sources */,
B8D9B1010E6BECD400EDA368 /* bch2bps.c in Sources */,
B8D9B1020E6BECD400EDA368 /* PJ_labrd.c in Sources */,
B8D9B1030E6BECD400EDA368 /* rtodms.c in Sources */,
B8D9B1040E6BECD400EDA368 /* pj_init.c in Sources */,
B8D9B1050E6BECD400EDA368 /* PJ_moll.c in Sources */,
B8D9B1060E6BECD400EDA368 /* aasincos.c in Sources */,
B8D9B1070E6BECD400EDA368 /* pj_units.c in Sources */,
B8D9B1080E6BECD400EDA368 /* pj_fwd.c in Sources */,
B8D9B1090E6BECD400EDA368 /* PJ_mbtfpp.c in Sources */,
B8D9B10A0E6BECD400EDA368 /* PJ_fouc_s.c in Sources */,
B8D9B10B0E6BECD400EDA368 /* pj_msfn.c in Sources */,
B8D9B10C0E6BECD400EDA368 /* PJ_eqc.c in Sources */,
B8D9B10D0E6BECD400EDA368 /* PJ_eck5.c in Sources */,
B8D9B10E0E6BECD400EDA368 /* PJ_putp3.c in Sources */,
B8D9B10F0E6BECD400EDA368 /* PJ_putp5.c in Sources */,
B8D9B1100E6BECD400EDA368 /* PJ_eck2.c in Sources */,
B8D9B1110E6BECD400EDA368 /* pj_gridinfo.c in Sources */,
B8D9B1120E6BECD400EDA368 /* PJ_tcea.c in Sources */,
B8D9B1130E6BECD400EDA368 /* pj_malloc.c in Sources */,
B8D9B1140E6BECD400EDA368 /* pj_deriv.c in Sources */,
B8D9B1150E6BECD400EDA368 /* pj_phi2.c in Sources */,
B8D9B1160E6BECD400EDA368 /* PJ_omerc.c in Sources */,
B8D9B1170E6BECD400EDA368 /* PJ_chamb.c in Sources */,
B8D9B1180E6BECD400EDA368 /* proj_mdist.c in Sources */,
B8D9B1190E6BECD400EDA368 /* pj_gauss.c in Sources */,
B8D9B11A0E6BECD400EDA368 /* PJ_somerc.c in Sources */,
B8D9B11B0E6BECD400EDA368 /* pj_factors.c in Sources */,
B8D9B11C0E6BECD400EDA368 /* pj_latlong.c in Sources */,
B8D9B11D0E6BECD400EDA368 /* proj_rouss.c in Sources */,
B8D9B11F0E6BECD400EDA368 /* PJ_lcca.c in Sources */,
B8D9B1200E6BECD400EDA368 /* pj_strerrno.c in Sources */,
B8D9B1210E6BECD400EDA368 /* PJ_eck3.c in Sources */,
B8D9B1220E6BECD400EDA368 /* PJ_merc.c in Sources */,
B8D9B1230E6BECD400EDA368 /* nad_init.c in Sources */,
B8D9B1240E6BECD400EDA368 /* PJ_urmfps.c in Sources */,
B8D9B1250E6BECD400EDA368 /* PJ_larr.c in Sources */,
B8D9B1260E6BECD400EDA368 /* PJ_mbtfpq.c in Sources */,
B8D9B1270E6BECD400EDA368 /* PJ_urm5.c in Sources */,
B8D9B1280E6BECD400EDA368 /* PJ_laea.c in Sources */,
B8D9B1290E6BECD400EDA368 /* PJ_ortho.c in Sources */,
B8D9B12A0E6BECD400EDA368 /* geocent.c in Sources */,
B8D9B12B0E6BECD400EDA368 /* PJ_nocol.c in Sources */,
B8D9B12C0E6BECD400EDA368 /* PJ_bipc.c in Sources */,
B8D9B12D0E6BECD400EDA368 /* mk_cheby.c in Sources */,
B8D9B12E0E6BECD400EDA368 /* PJ_denoy.c in Sources */,
B8D9B12F0E6BECD400EDA368 /* PJ_eqdc.c in Sources */,
B8D9B1300E6BECD400EDA368 /* pj_gridlist.c in Sources */,
B8D9B1310E6BECD400EDA368 /* nad_intr.c in Sources */,
B8D9B1320E6BECD400EDA368 /* PJ_geos.c in Sources */,
B8D9B1330E6BECD400EDA368 /* PJ_vandg.c in Sources */,
B8D9B1340E6BECD400EDA368 /* PJ_eck4.c in Sources */,
B8D9B1350E6BECD400EDA368 /* pj_apply_gridshift.c in Sources */,
B8D9B1360E6BECD400EDA368 /* PJ_nzmg.c in Sources */,
B8D9B1370E6BECD400EDA368 /* pj_datum_set.c in Sources */,
B8D9B13A0E6BECD400EDA368 /* PJ_wink1.c in Sources */,
B8D9B13B0E6BECD400EDA368 /* PJ_vandg2.c in Sources */,
B8D9B13C0E6BECD400EDA368 /* PJ_airy.c in Sources */,
B8D9B13D0E6BECD400EDA368 /* PJ_aeqd.c in Sources */,
B8D9B13E0E6BECD400EDA368 /* PJ_lagrng.c in Sources */,
B8D9B13F0E6BECD400EDA368 /* pj_list.c in Sources */,
B8D9B1400E6BECD400EDA368 /* PJ_boggs.c in Sources */,
B8D9B1410E6BECD400EDA368 /* geod_inv.c in Sources */,
B8D9B1420E6BECD400EDA368 /* PJ_rpoly.c in Sources */,
B8D9B1430E6BECD400EDA368 /* pj_auth.c in Sources */,
B8D9B1440E6BECD400EDA368 /* adjlon.c in Sources */,
B8D9B1450E6BECD400EDA368 /* PJ_stere.c in Sources */,
B8D9B1460E6BECD400EDA368 /* PJ_vandg4.c in Sources */,
B8D9B1470E6BECD400EDA368 /* PJ_imw_p.c in Sources */,
B8D9B1480E6BECD400EDA368 /* jniproj.c in Sources */,
B8D9B14A0E6BECD400EDA368 /* PJ_cass.c in Sources */,
B8D9B14D0E6BECD400EDA368 /* PJ_lcc.c in Sources */,
B8D9B14E0E6BECD400EDA368 /* PJ_aitoff.c in Sources */,
B8D9B14F0E6BECD400EDA368 /* PJ_crast.c in Sources */,
B8D9B1500E6BECD400EDA368 /* PJ_cea.c in Sources */,
B8D9B1510E6BECD400EDA368 /* PJ_collg.c in Sources */,
B8D9B1520E6BECD400EDA368 /* pj_release.c in Sources */,
B8D9B1530E6BECD400EDA368 /* PJ_sconics.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
B8D9B1E60E6BFA1C00EDA368 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
B8D9B1F20E6BFA7500EDA368 /* MemoryCache.m in Sources */,
B8D9B1F30E6BFA7500EDA368 /* TiledLayerController.m in Sources */,
B8D9B1F40E6BFA7500EDA368 /* Mercator.m in Sources */,
B8D9B1F50E6BFA7500EDA368 /* DiskCache.m in Sources */,
B8D9B1F60E6BFA7500EDA368 /* Transform.m in Sources */,
B8D9B1F70E6BFA7500EDA368 /* TileImage.m in Sources */,
B8D9B1F80E6BFA7500EDA368 /* WebTileImage.m in Sources */,
B8D9B1FA0E6BFA7500EDA368 /* FractalTileProjection.m in Sources */,
B8D9B1FB0E6BFA7500EDA368 /* Projection.m in Sources */,
B8D9B1FC0E6BFA7500EDA368 /* MapView.m in Sources */,
B8D9B1FD0E6BFA7500EDA368 /* TileProxy.m in Sources */,
B8D9B1FE0E6BFA7500EDA368 /* OpenStreetMapsSource.m in Sources */,
B8D9B27E0E6D460500EDA368 /* FileTileImage.m in Sources */,
B8A51E910E6D7192006AA8E2 /* TileCache.m in Sources */,
B87626CB0E7529BE0024B9C5 /* ScreenProjection.m in Sources */,
B87626D80E752E6E0024B9C5 /* QuartzRenderer.m in Sources */,
B87626E90E7562620024B9C5 /* TileLoader.m in Sources */,
B87626F20E75654C0024B9C5 /* MathUtils.c in Sources */,
B8A5C87A0E757FC8005509DE /* MapRenderer.m in Sources */,
B8A5C8870E758250005509DE /* CoreAnimationRenderer.m in Sources */,
B8A5C9230E75A107005509DE /* LayeredTileLoader.m in Sources */,
B8A5C9BF0E763371005509DE /* Tile.c in Sources */,
B8A5CB180E764C84005509DE /* TileImageSet.m in Sources */,
B8C6B12A0E78C79200C12A12 /* LayerToScreenProjection.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
B8D9B1ED0E6BFA2400EDA368 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = B8D9B0B60E6BEC1900EDA368 /* proj4 */;
targetProxy = B8D9B1EC0E6BFA2400EDA368 /* PBXContainerItemProxy */;
};
B8D9B1F00E6BFA4400EDA368 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = B8D9B1E80E6BFA1C00EDA368 /* MapView */;
targetProxy = B8D9B1EF0E6BFA4400EDA368 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin XCBuildConfiguration section */
1D6058940D05DD3E006BFB54 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
COPY_PHASE_STRIP = NO;
GCC_DYNAMIC_NO_PIC = NO;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = RouteMe_Prefix.pch;
INFOPLIST_FILE = Info.plist;
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"\"$(SRCROOT)/build/Debug-iphonesimulator\"",
"\"$(SRCROOT)/build/Release-iphoneos\"",
);
PRODUCT_NAME = RouteMe;
SDKROOT = iphoneos2.1;
};
name = Debug;
};
1D6058950D05DD3E006BFB54 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
COPY_PHASE_STRIP = YES;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = RouteMe_Prefix.pch;
INFOPLIST_FILE = Info.plist;
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"\"$(SRCROOT)/build/Debug-iphonesimulator\"",
"\"$(SRCROOT)/build/Release-iphoneos\"",
);
PRODUCT_NAME = RouteMe;
SDKROOT = iphoneos2.1;
};
name = Release;
};
B8D9B0B80E6BEC1A00EDA368 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
COPY_PHASE_STRIP = NO;
GCC_DYNAMIC_NO_PIC = NO;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_WARN_UNUSED_VARIABLE = NO;
PREBINDING = NO;
PRODUCT_NAME = proj4;
};
name = Debug;
};
B8D9B0B90E6BEC1A00EDA368 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
COPY_PHASE_STRIP = YES;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_ENABLE_FIX_AND_CONTINUE = NO;
GCC_WARN_UNUSED_VARIABLE = NO;
PREBINDING = NO;
PRODUCT_NAME = proj4;
ZERO_LINK = NO;
};
name = Release;
};
B8D9B1EA0E6BFA1D00EDA368 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
COPY_PHASE_STRIP = NO;
DEAD_CODE_STRIPPING = NO;
GCC_DYNAMIC_NO_PIC = NO;
GCC_OPTIMIZATION_LEVEL = 0;
PREBINDING = NO;
PRODUCT_NAME = MapView;
SDKROOT = iphoneos2.1;
};
name = Debug;
};
B8D9B1EB0E6BFA1D00EDA368 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
COPY_PHASE_STRIP = YES;
DEAD_CODE_STRIPPING = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_ENABLE_FIX_AND_CONTINUE = NO;
PREBINDING = NO;
PRODUCT_NAME = MapView;
SDKROOT = iphoneos2.1;
ZERO_LINK = NO;
};
name = Release;
};
C01FCF4F08A954540054247B /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
GCC_C_LANGUAGE_STANDARD = c99;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
ONLY_ACTIVE_ARCH = YES;
PREBINDING = NO;
SDKROOT = iphoneos2.0;
};
name = Debug;
};
C01FCF5008A954540054247B /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
GCC_C_LANGUAGE_STANDARD = c99;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
PREBINDING = NO;
SDKROOT = iphoneos2.0;
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "RouteMe" */ = {
isa = XCConfigurationList;
buildConfigurations = (
1D6058940D05DD3E006BFB54 /* Debug */,
1D6058950D05DD3E006BFB54 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
B8D9B0BA0E6BEC3800EDA368 /* Build configuration list for PBXNativeTarget "proj4" */ = {
isa = XCConfigurationList;
buildConfigurations = (
B8D9B0B80E6BEC1A00EDA368 /* Debug */,
B8D9B0B90E6BEC1A00EDA368 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
B8D9B2110E6BFACA00EDA368 /* Build configuration list for PBXNativeTarget "MapView" */ = {
isa = XCConfigurationList;
buildConfigurations = (
B8D9B1EA0E6BFA1D00EDA368 /* Debug */,
B8D9B1EB0E6BFA1D00EDA368 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
C01FCF4E08A954540054247B /* Build configuration list for PBXProject "RouteMe" */ = {
isa = XCConfigurationList;
buildConfigurations = (
C01FCF4F08A954540054247B /* Debug */,
C01FCF5008A954540054247B /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 29B97313FDCFA39411CA2CEA /* Project object */;
}