2
0

FMainForm.dfm 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760
  1. object MainForm: TMainForm
  2. Left = 252
  3. Top = 328
  4. Caption = 'Terrain Pack v1.1'
  5. ClientHeight = 412
  6. ClientWidth = 581
  7. Color = clBtnFace
  8. Font.Charset = DEFAULT_CHARSET
  9. Font.Color = clWindowText
  10. Font.Height = -11
  11. Font.Name = 'MS Sans Serif'
  12. Font.Style = []
  13. Menu = MainMenu
  14. OldCreateOrder = False
  15. ShowHint = True
  16. OnCreate = FormCreate
  17. OnDestroy = FormDestroy
  18. PixelsPerInch = 96
  19. TextHeight = 13
  20. object StringGrid: TStringGrid
  21. Left = 0
  22. Top = 135
  23. Width = 581
  24. Height = 257
  25. Align = alClient
  26. BorderStyle = bsNone
  27. DefaultColWidth = 110
  28. DefaultRowHeight = 19
  29. FixedCols = 0
  30. RowCount = 2
  31. Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goColSizing, goEditing, goThumbTracking]
  32. PopupMenu = PopupMenu
  33. TabOrder = 0
  34. OnSelectCell = StringGridSelectCell
  35. end
  36. object Panel1: TPanel
  37. Left = 0
  38. Top = 26
  39. Width = 581
  40. Height = 109
  41. Align = alTop
  42. BevelInner = bvRaised
  43. BevelOuter = bvLowered
  44. TabOrder = 1
  45. DesignSize = (
  46. 581
  47. 109)
  48. object Label1: TLabel
  49. Left = 8
  50. Top = 83
  51. Width = 48
  52. Height = 13
  53. Caption = 'DEM path'
  54. end
  55. object Label2: TLabel
  56. Left = 8
  57. Top = 11
  58. Width = 54
  59. Height = 13
  60. Caption = 'HTF output'
  61. end
  62. object Label3: TLabel
  63. Left = 8
  64. Top = 35
  65. Width = 51
  66. Height = 13
  67. Caption = 'World Size'
  68. end
  69. object Label4: TLabel
  70. Left = 120
  71. Top = 35
  72. Width = 17
  73. Height = 13
  74. Alignment = taCenter
  75. AutoSize = False
  76. Caption = 'x'
  77. end
  78. object Label5: TLabel
  79. Left = 320
  80. Top = 35
  81. Width = 66
  82. Height = 13
  83. Caption = 'Default height'
  84. end
  85. object Label6: TLabel
  86. Left = 208
  87. Top = 35
  88. Width = 40
  89. Height = 13
  90. Caption = 'Tile Size'
  91. end
  92. object Label7: TLabel
  93. Left = 192
  94. Top = 59
  95. Width = 55
  96. Height = 13
  97. Caption = 'Tile overlap'
  98. end
  99. object Label8: TLabel
  100. Left = 320
  101. Top = 59
  102. Width = 72
  103. Height = 13
  104. Caption = 'Filter to default:'
  105. end
  106. object Label9: TLabel
  107. Left = 472
  108. Top = 35
  109. Width = 37
  110. Height = 13
  111. Caption = 'Z Scale'
  112. end
  113. object EDHTFName: TEdit
  114. Left = 72
  115. Top = 8
  116. Width = 473
  117. Height = 21
  118. Anchors = [akLeft, akTop, akRight]
  119. TabOrder = 0
  120. end
  121. object EDDEMPath: TEdit
  122. Left = 72
  123. Top = 80
  124. Width = 473
  125. Height = 21
  126. Anchors = [akLeft, akTop, akRight]
  127. TabOrder = 1
  128. OnChange = EDDEMPathChange
  129. end
  130. object BUDEMPath: TButton
  131. Left = 547
  132. Top = 80
  133. Width = 24
  134. Height = 21
  135. Anchors = [akTop, akRight]
  136. Caption = '...'
  137. TabOrder = 2
  138. OnClick = BUDEMPathClick
  139. end
  140. object BUPickHTF: TButton
  141. Left = 547
  142. Top = 8
  143. Width = 24
  144. Height = 21
  145. Anchors = [akTop, akRight]
  146. Caption = '...'
  147. TabOrder = 3
  148. OnClick = BUPickHTFClick
  149. end
  150. object EDSizeX: TEdit
  151. Left = 72
  152. Top = 32
  153. Width = 49
  154. Height = 21
  155. TabOrder = 4
  156. end
  157. object EDSizeY: TEdit
  158. Left = 136
  159. Top = 32
  160. Width = 49
  161. Height = 21
  162. TabOrder = 5
  163. end
  164. object EDDefaultZ: TEdit
  165. Left = 400
  166. Top = 32
  167. Width = 49
  168. Height = 21
  169. TabOrder = 6
  170. Text = '0'
  171. OnChange = EDDefaultZChange
  172. end
  173. object EDTileSize: TEdit
  174. Left = 256
  175. Top = 32
  176. Width = 49
  177. Height = 21
  178. TabOrder = 7
  179. Text = '256'
  180. end
  181. object EDTileOverlap: TEdit
  182. Left = 256
  183. Top = 56
  184. Width = 49
  185. Height = 21
  186. Hint =
  187. 'Tile overlap in samples'#13#10'When overlap is 1, righternmost and bot' +
  188. 'tommost undefined samples '#13#10'will be filled completed with last r' +
  189. 'ow value in place of default value'
  190. TabOrder = 8
  191. Text = '0'
  192. end
  193. object EDZFilter: TEdit
  194. Left = 400
  195. Top = 56
  196. Width = 50
  197. Height = 21
  198. Hint =
  199. 'All samples with this altitude will be replaced by default heigh' +
  200. 't'
  201. TabOrder = 9
  202. OnChange = EDZFilterChange
  203. end
  204. object EDZScale: TEdit
  205. Left = 515
  206. Top = 32
  207. Width = 57
  208. Height = 21
  209. Hint =
  210. 'Scaling is applied after filtering, and applied to default heigh' +
  211. 't too'
  212. TabOrder = 10
  213. Text = '1.0'
  214. OnChange = EDZScaleChange
  215. end
  216. object CBWholeOnly: TCheckBox
  217. Left = 472
  218. Top = 59
  219. Width = 97
  220. Height = 17
  221. Caption = 'Whole tiles only'
  222. TabOrder = 11
  223. end
  224. end
  225. object ToolBar: TToolBar
  226. Left = 0
  227. Top = 0
  228. Width = 581
  229. Height = 26
  230. AutoSize = True
  231. BorderWidth = 1
  232. Caption = 'ToolBar'
  233. Images = ImageList
  234. TabOrder = 2
  235. object ToolButton1: TToolButton
  236. Left = 0
  237. Top = 0
  238. Action = ACOpen
  239. end
  240. object ToolButton2: TToolButton
  241. Left = 23
  242. Top = 0
  243. Action = ACSave
  244. end
  245. object ToolButton3: TToolButton
  246. Left = 46
  247. Top = 0
  248. Width = 8
  249. Caption = 'ToolButton3'
  250. ImageIndex = 2
  251. Style = tbsSeparator
  252. end
  253. object ToolButton4: TToolButton
  254. Left = 54
  255. Top = 0
  256. Action = ACNewDEM
  257. end
  258. object ToolButton5: TToolButton
  259. Left = 77
  260. Top = 0
  261. Action = ACRemoveDEM
  262. end
  263. object ToolButton6: TToolButton
  264. Left = 100
  265. Top = 0
  266. Width = 8
  267. Caption = 'ToolButton6'
  268. ImageIndex = 6
  269. Style = tbsSeparator
  270. end
  271. object ToolButton7: TToolButton
  272. Left = 108
  273. Top = 0
  274. Action = ACProcess
  275. end
  276. object ToolButton8: TToolButton
  277. Left = 131
  278. Top = 0
  279. Width = 8
  280. Caption = 'ToolButton8'
  281. ImageIndex = 4
  282. Style = tbsSeparator
  283. end
  284. object ToolButton9: TToolButton
  285. Left = 139
  286. Top = 0
  287. Action = ACViewer
  288. end
  289. end
  290. object CBType: TComboBox
  291. Left = 328
  292. Top = 184
  293. Width = 113
  294. Height = 21
  295. Hint = 'Select input file format.'
  296. Style = csDropDownList
  297. TabOrder = 3
  298. Visible = False
  299. OnChange = CBTypeChange
  300. Items.Strings = (
  301. '16 bits (Intel)'
  302. '16 bits unsigned (Intel)'
  303. '16 bits (non-Intel)'
  304. 'VTP'#39's BT (single)'
  305. 'BMP (Windows)'
  306. '32 bits FP ([0; 1], Intel)'
  307. 'DTED')
  308. end
  309. object CBFile: TComboBox
  310. Left = 8
  311. Top = 184
  312. Width = 113
  313. Height = 21
  314. Hint = 'Filename to be inported.'
  315. DropDownCount = 24
  316. TabOrder = 4
  317. Visible = False
  318. OnChange = CBTypeChange
  319. end
  320. object PanelFoot: TPanel
  321. Left = 0
  322. Top = 392
  323. Width = 581
  324. Height = 20
  325. Align = alBottom
  326. BevelOuter = bvNone
  327. BorderWidth = 3
  328. TabOrder = 5
  329. object ProgressBar: TProgressBar
  330. Left = 3
  331. Top = 3
  332. Width = 575
  333. Height = 14
  334. Align = alClient
  335. Smooth = True
  336. Step = 1
  337. TabOrder = 0
  338. end
  339. end
  340. object CBFlipRotate: TComboBox
  341. Left = 448
  342. Top = 184
  343. Width = 113
  344. Height = 21
  345. Hint =
  346. 'Rotate and/or flip the input data. (Use Rotate 270 for DTED data' +
  347. '.)'
  348. Style = csDropDownList
  349. TabOrder = 6
  350. Visible = False
  351. OnChange = CBTypeChange
  352. Items.Strings = (
  353. ''
  354. 'Flip Horizontal'
  355. 'Rotate 90'
  356. 'Rotate 180'
  357. 'Rotate 270'
  358. 'Flip and Rotate 90'
  359. 'Flip and Rotate 180'
  360. 'Flip and Rotate 270')
  361. end
  362. object MainMenu: TMainMenu
  363. Images = ImageList
  364. Left = 64
  365. Top = 232
  366. object File1: TMenuItem
  367. Caption = 'File'
  368. object Open1: TMenuItem
  369. Action = ACOpen
  370. end
  371. object Save1: TMenuItem
  372. Action = ACSave
  373. end
  374. object N1: TMenuItem
  375. Caption = '-'
  376. end
  377. object Exit1: TMenuItem
  378. Action = ACExit
  379. end
  380. end
  381. object DEMs1: TMenuItem
  382. Caption = 'DEMs'
  383. object Process1: TMenuItem
  384. Action = ACProcess
  385. end
  386. object N2: TMenuItem
  387. Caption = '-'
  388. end
  389. object AddDEMsource1: TMenuItem
  390. Action = ACNewDEM
  391. end
  392. object RemoveDEMsource1: TMenuItem
  393. Action = ACRemoveDEM
  394. end
  395. object N3: TMenuItem
  396. Caption = '-'
  397. end
  398. object HTFViewer1: TMenuItem
  399. Action = ACViewer
  400. end
  401. end
  402. object MIAbout: TMenuItem
  403. Caption = 'About...'
  404. OnClick = MIAboutClick
  405. end
  406. end
  407. object ActionList: TActionList
  408. Images = ImageList
  409. OnUpdate = ActionListUpdate
  410. Left = 136
  411. Top = 232
  412. object ACOpen: TAction
  413. Caption = 'Open...'
  414. ImageIndex = 1
  415. OnExecute = ACOpenExecute
  416. end
  417. object ACSave: TAction
  418. Caption = 'Save...'
  419. ImageIndex = 0
  420. OnExecute = ACSaveExecute
  421. end
  422. object ACExit: TAction
  423. Caption = 'Exit'
  424. ShortCut = 32856
  425. OnExecute = ACExitExecute
  426. end
  427. object ACNewDEM: TAction
  428. Caption = 'Add DEM source'
  429. ImageIndex = 4
  430. OnExecute = ACNewDEMExecute
  431. end
  432. object ACRemoveDEM: TAction
  433. Caption = 'Remove DEM source'
  434. ImageIndex = 5
  435. OnExecute = ACRemoveDEMExecute
  436. end
  437. object ACProcess: TAction
  438. Caption = 'Process'
  439. ImageIndex = 3
  440. OnExecute = ACProcessExecute
  441. end
  442. object ACViewer: TAction
  443. Caption = 'HTFViewer'
  444. ImageIndex = 2
  445. OnExecute = ACViewerExecute
  446. end
  447. end
  448. object ImageList: TImageList
  449. Left = 64
  450. Top = 288
  451. Bitmap = {
  452. 494C0101060009000C0010001000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
  453. 0000000000003600000028000000400000002000000001002000000000000020
  454. 0000000000000000000000000000000000000000000000000000000000000000
  455. 0000000000000000000000000000000000000000000000000000000000000000
  456. 0000000000000000000000000000000000000000000000000000000000000000
  457. 0000000000000000000000000000000000000000000000000000000000000000
  458. 0000000000000000000000000000000000000000000000000000000000000000
  459. 0000000000000000000000000000000000000000000000000000000000000000
  460. 0000000000000000000000000000000000000000000000000000000000000000
  461. 0000000000000000000000000000000000000000000000000000000000000000
  462. 0000000000000000000000000000000000000000000000000000000000000000
  463. 0000000000000000000000000000000000000000000000000000000000000000
  464. 0000000000000000000000000000000000000000000000000000000000000000
  465. 0000000000000000000000000000000000000000000000008000000000000000
  466. 0000000000000000000000000000000000000000000000000000000000000000
  467. 0000000000000000000000000000000000000000000000000000000000000000
  468. 0000000000000000000000000000000000000000000000000000000000000000
  469. 0000000000000000000000000000000000000000000000000000000000000000
  470. 0000000000000000000000000000000000000000000000000000000000000000
  471. 0000000000000000000000000000000000000000000000000000000000000000
  472. 0000000000000000000000000000000000000000000000000000000000000000
  473. 0000000000000000000000000000000000000000800000008000000000000000
  474. 0000000000000000000000000000000080000000000000000000000000000000
  475. 0000000000000000000000000000000000000000000000000000000000000000
  476. 0000000000000000000000000000000000000000000000000000000000000000
  477. 0000000000000000000000000000000000000000000000000000000000000000
  478. 0000000000000000000000000000000000000000000000000000000000000000
  479. 0000000000000000000000000000000000000000000000000000000000000000
  480. 0000000000000000000000000000000000000000000000000000000000000000
  481. 0000000000000000000000000000000000000000800000008000000080000000
  482. 0000000000000000000000008000000000000000000000000000000000000000
  483. 0000000000000000000000000000000000000000000000000000000000000000
  484. 0000000000000000000000000000000000000000000000000000000000000000
  485. 0000000000000000000000000000000000000000000000000000000000000000
  486. 0000000000000000000000000000000000000000000000000000000000000000
  487. 0000000000000000000000000000000000000000000000000000000000000000
  488. 0000000000000000000000000000000000000000000000000000000000000000
  489. 0000000000000000000000000000000000000000000000008000000080000000
  490. 0000000000000000800000008000000000000000000000000000000000000000
  491. 0000000000000000000000000000000000000000000000000000000000000000
  492. 0000000000000000000000000000000000000000000000000000000000000000
  493. 0000000000000000000000000000000000000000000000000000000000000000
  494. 0000000000000000000000000000000000000000000000000000000000000000
  495. 0000000000000000000000000000000000000000000000000000000000000000
  496. 0000000000000000000000000000000000000000000000000000000000000000
  497. 0000000000000000000000000000000000000000000000000000000000000000
  498. 8000000080008000800000000000000000000000000000000000000000000000
  499. 0000000000000000000000000000000000000000000000000000000000000000
  500. 0000000000000000000000000000000000000000000000000000000000000000
  501. 0000000000000000000000000000000000000000000000000000000000000000
  502. 00000000000000000000000000000000000000000000FFFFFF00FFFFFF00FFFF
  503. FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF000000
  504. 0000000000000000000000000000000000000000000000000000000000000000
  505. 0000000000000000000000000000000000000000000000000000800080000000
  506. 8000000080000000000000000000000000000000000000000000000000000000
  507. 0000000000000000000000000000000000000000000000000000000000000000
  508. 0000000000000000000000000000000000000000000000000000000000000000
  509. 0000000000000000000000000000000000000000000000000000000000000000
  510. 00000000000000000000000000000000000000000000FFFFFF00000000000000
  511. 0000FFFFFF000000000000000000FFFFFF000000000000000000FFFFFF000000
  512. 0000000000000000000000000000000000000000000000000000000000000000
  513. 0000000000000000000000000000000000000000000000000000000080008000
  514. 8000000080000000800000000000000000000000000000000000000000000000
  515. 0000000000000000000000000000000000000000000000000000000000000000
  516. 0000000000000000000000000000000000000000000000000000000000000000
  517. 0000000000000000000000000000000000000000000000000000000000000000
  518. 00000000000000000000000000000000000000000000FFFFFF00FFFFFF00FFFF
  519. FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF000000
  520. 0000000000000000000000000000000000000000000000000000000000000000
  521. 0000000000000000000000000000000000000000000000008000000080000000
  522. 0000000000000000800000008000800080000000000000000000000000000000
  523. 0000000000000000000000000000000000000000000000000000000000000000
  524. 0000000000000000000000000000000000000000000000000000000000000000
  525. 0000000000000000000000000000000000000000000000000000000000000000
  526. 0000000000000000000000000000000000000000000080000000800000008000
  527. 0000800000008000000080000000800000008000000080000000800000008000
  528. 0000800000000000000000000000000000000000000080000000800000008000
  529. 0000800000008000000080000000800080000000800080000000800000008000
  530. 0000800000000000000080008000000080000000000000000000000000000000
  531. 0000000000000000000000000000000000000000000000000000000000000000
  532. 0000000000000000000000000000000000000000000000000000000000000000
  533. 0000000000000000000000000000000000000000000000000000000000000000
  534. 0000000000000000000000000000000000000000000080000000FFFFFF00FFFF
  535. FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
  536. FF00800000000000000000000000000000000000000080000000FFFFFF00FFFF
  537. FF00FFFFFF00FFFFFF00FFFFFF000000800080008000FFFFFF00FFFFFF00FFFF
  538. FF00800000000000000000000000000000000000000000000000000000000000
  539. 0000000000000000000000000000000000000000000000000000000000000000
  540. 0000000000000000000000000000000000000000000000000000000000000000
  541. 0000000000000000000000000000000000000000000000000000000000000000
  542. 0000000000000000000000000000000000000000000080000000FFFFFF000000
  543. 000000000000FFFFFF000000000000000000FFFFFF000000000000000000FFFF
  544. FF00800000000000000000000000000000000000000080000000FFFFFF000000
  545. 000000000000FFFFFF000000000000000000FFFFFF000000000000000000FFFF
  546. FF00800000000000000000000000000000000000000000000000000000000000
  547. 0000000000000000000000000000000000000000000000000000000000000000
  548. 0000000000000000000000000000000000000000000000000000000000000000
  549. 0000000000000000000000000000000000000000000000000000000000000000
  550. 0000000000000000000000000000000000000000000080000000FFFFFF00FFFF
  551. FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
  552. FF00800000000000000000000000000000000000000080000000FFFFFF00FFFF
  553. FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
  554. FF00800000000000000000000000000000000000000000000000000000000000
  555. 0000000000000000000000000000000000000000000000000000000000000000
  556. 0000000000000000000000000000000000000000000000000000000000000000
  557. 0000000000000000000000000000000000000000000000000000000000000000
  558. 0000000000000000000000000000000000000000000080000000800000008000
  559. 0000800000008000000080000000800000008000000080000000800000008000
  560. 0000800000000000000000000000000000000000000080000000800000008000
  561. 0000800000008000000080000000800000008000000080000000800000008000
  562. 0000800000000000000000000000000000000000000000000000000000000000
  563. 0000000000000000000000000000000000000000000000000000000000000000
  564. 0000000000000000000000000000000000000000000000000000000000000000
  565. 0000000000000000000000000000000000000000000000000000000000000000
  566. 0000000000000000000000000000000000000000000080000000000000008000
  567. 0000800000000000000080000000800000000000000080000000800000000000
  568. 0000800000000000000000000000000000000000000080000000000000008000
  569. 0000800000000000000080000000800000000000000080000000800000000000
  570. 0000800000000000000000000000000000000000000000000000000000000000
  571. 0000000000000000000000000000000000000000000000000000000000000000
  572. 0000000000000000000000000000000000000000000000000000000000000000
  573. 0000000000000000000000000000000000000000000000000000000000000000
  574. 0000000000000000000000000000000000000000000080000000800000008000
  575. 0000800000008000000080000000800000008000000080000000800000008000
  576. 0000800000000000000000000000000000000000000080000000800000008000
  577. 0000800000008000000080000000800000008000000080000000800000008000
  578. 0000800000000000000000000000000000000000000000000000000000000000
  579. 0000000000000000000000000000000000000000000000000000000000000000
  580. 0000000000000000000000000000000000000000000000000000000000000000
  581. 0000000000000000000000000000000000000000000000000000000000000000
  582. 0000000000000000000000000000000000000000000000000000000000000000
  583. 0000000000000000000000000000000000000000000000000000000000000000
  584. 0000000000000000000000000000000000000000000000000000000000000000
  585. 0000000000000000000000000000000000000000000000000000000000000000
  586. 0000000000000000000000000000000000000000000000000000000000000080
  587. 8000000000000000000000000000000000000000000000000000000000000000
  588. 0000000000000000000000000000000000000000000000000000000000000000
  589. 0000000000000000000000000000000000000000000000000000000000000000
  590. 0000000000000000000000000000000000000000000000000000000000000000
  591. 0000000000000000000000000000000000000000000000000000000000000000
  592. 0000000000000000000000000000000000000000000000000000000000000000
  593. 0000000000000000000000000000000000000000000000000000000000000000
  594. 0000000000000000000000000000000000000000000000000000000000000080
  595. 80000080800000FFFF0000FFFF0000FFFF0000FFFF0000808000008080000080
  596. 8000000000000000000000000000000000000000000000000000000000000000
  597. 00000000000000000000FFFFFF0000000000FFFFFF0000000000FFFFFF000000
  598. 0000FFFFFF000000000000000000000000000000000000000000008080000080
  599. 8000000000000000000000000000000000000000000000000000000000000000
  600. 0000000000000080800000000000000000000000000000000000000000000000
  601. 0000000000000000000000000000000000000000000000000000000000000000
  602. 0000000000000000000000000000000000000000000000000000000000000000
  603. 0000008080000080800000000000008080000080800000000000000000000000
  604. 0000000000000000000000000000000000000000000000000000000000000000
  605. 0000000000000000000000000000000000000000000000000000000000000000
  606. 0000000000000000000000000000000000000000000000000000008080000080
  607. 8000000000000000000000000000000000000000000000000000000000000000
  608. 0000000000000080800000000000000000000000000000000000008080000080
  609. 8000008080000080800000808000008080000080800000808000008080000000
  610. 0000000000000000000000000000000000000000000000000000000000000000
  611. 0000000000008080800000000000000000000000000000000000000000000000
  612. 0000000000000000000000000000000000000000000000000000000000000000
  613. 0000FFFFFF000000000080808000000000000000000000000000000000000000
  614. 00008080800000000000FFFFFF00000000000000000000000000008080000080
  615. 8000000000000000000000000000000000000000000000000000000000000000
  616. 0000000000000080800000000000000000000000000000FFFF00000000000080
  617. 8000008080000080800000808000008080000080800000808000008080000080
  618. 8000000000000000000000000000000000000000000000000000000000000000
  619. 0000000000000000000000FFFF0000FFFF000080800000808000000000000000
  620. 0000000000000000000000000000000000000000000000000000000000000000
  621. 0000000000000000000000000000000000000000000000000000000000000000
  622. 0000000000000000000000000000000000000000000000000000008080000080
  623. 8000000000000000000000000000000000000000000000000000000000000000
  624. 00000000000000808000000000000000000000000000FFFFFF0000FFFF000000
  625. 0000008080000080800000808000008080000080800000808000008080000080
  626. 8000008080000000000000000000000000000000000000000000000000000000
  627. 000000FFFF0000FFFF0000000000000000000000000000000000008080000080
  628. 8000000000000000000000000000000000000000000000000000000000008000
  629. 00000000000000000000FFFFFF0000000000FFFFFF0000000000FFFFFF000000
  630. 0000FFFFFF000000000000000000000000000000000000000000008080000080
  631. 8000008080000080800000808000008080000080800000808000008080000080
  632. 8000008080000080800000000000000000000000000000FFFF00FFFFFF0000FF
  633. FF00000000000080800000808000008080000080800000808000008080000080
  634. 8000008080000080800000000000000000000000000000000000000000008080
  635. 800080000000FF000000FF0000000080000000800000FF000000000000000080
  636. 8000008080000000000000000000000000000000000000000000FF000000FF00
  637. 0000FF0000000000000000000000000000000000000080000000000000000000
  638. 0000000000000000000000000000000000000000000000000000008080000080
  639. 8000000000000000000000000000000000000000000000000000000000000000
  640. 00000080800000808000000000000000000000000000FFFFFF0000FFFF00FFFF
  641. FF0000FFFF000000000000000000000000000000000000000000000000000000
  642. 0000000000000000000000000000000000000000000000000000000000008000
  643. 0000FF000000FF000000FF0000000080000000800000FF000000FF0000000000
  644. 0000008080000000000080808000000000008080800080000000FF000000FF00
  645. 0000FF00000000800000008000000080000000800000FF000000800000008080
  646. 8000000000000000000000000000000000000000000000000000008080000000
  647. 0000000000000000000000000000000000000000000000000000000000000000
  648. 0000000000000080800000000000000000000000000000FFFF00FFFFFF0000FF
  649. FF00FFFFFF0000FFFF00FFFFFF0000FFFF00FFFFFF0000FFFF00000000000000
  650. 000000000000000000000000000000000000000000000000000080000000FF00
  651. 0000FF000000FF00000000800000008000000080000000800000FF000000FF00
  652. 00000000000000808000000000000000000080808000FF000000FF000000FF00
  653. 0000FF0000000080000000800000008000000080000080800000FF0000000000
  654. 0000000000000000000000000000000000000000000000000000008080000000
  655. 0000000000000000000000000000000000000000000000000000000000000000
  656. 00000000000000808000000000000000000000000000FFFFFF0000FFFF00FFFF
  657. FF0000FFFF00FFFFFF0000FFFF00FFFFFF0000FFFF00FFFFFF00000000000000
  658. 000000000000000000000000000000000000000000000000000080000000FF00
  659. 0000FF0000000080000000800000008000000080000000800000FF0000000080
  660. 00000000000000808000000000000000000080808000FF000000FF0000000080
  661. 00000080000000800000008000000080000000800000FF000000FF0000000000
  662. 0000000000000000000000000000000000000000000000000000008080000000
  663. 0000000000000000000000000000000000000000000000000000000000000000
  664. 0000000000000080800000000000000000000000000000FFFF00FFFFFF0000FF
  665. FF00000000000000000000000000000000000000000000000000000000000000
  666. 000000000000000000000000000000000000000000000000000080000000FF00
  667. 00000000000000800000008000000080000000800000FF000000008000000080
  668. 00000000000000808000000000000000000080808000FF000000008000000080
  669. 0000008000000080000000800000800000008080000080000000008000000000
  670. 0000000000000000000000000000000000000000000000000000008080000000
  671. 0000000000000000000000000000000000000000000000000000000000000000
  672. 0000000000000080800000000000000000000000000000000000000000000000
  673. 0000000000000000000000000000000000000000000000000000000000000000
  674. 000000000000000000000000000000000000000000000000000080808000FF00
  675. 0000008000000000000000800000FF0000000080000000800000008000000080
  676. 00000000000000FFFF00000000000000000080808000FF000000000000000080
  677. 000000800000800000000080000000800000FF00000000800000008000000000
  678. 0000000000000000000000000000000000000000000000000000008080000000
  679. 0000000000000000000000000000000000000000000000000000000000000000
  680. 0000000000000000000000000000000000000000000000000000000000000000
  681. 0000000000000000000000000000000000000000000000000000000000000000
  682. 000000000000000000000000000000000000000000000000000080808000FFFF
  683. 0000FF00000000800000FF000000FF000000FF000000FF000000008000000080
  684. 00000000000000FFFF0000000000000000008080800080808000FF000000FFFF
  685. FF0000000000FF000000FF000000FF000000FF00000000800000008000008080
  686. 8000000000000000000000000000000000000000000000000000008080000000
  687. 0000000000000000000000000000000000000000000000000000000000000000
  688. 0000000000000000000000000000000000000000000000000000000000000000
  689. 0000000000000000000000000000000000000000000000000000000000000000
  690. 0000000000000000000000000000000000000000000000000000000000008080
  691. 8000FFFF00000000000000800000000000000080000000800000008000000000
  692. 000000FFFF000000000080808000000000000000000080808000FFFFFF000000
  693. 0000FFFFFF000080000000800000008000000080000000800000000000000000
  694. 0000000000000000000000000000000000000000000000000000000000000000
  695. 0000000000000000000000000000000000000000000000000000000000000000
  696. 0000000000000000000000000000000000000000000000000000000000000000
  697. 0000000000000000000000000000000000000000000000000000000000000000
  698. 0000000000000000000000000000000000000000000000000000000000000000
  699. 000080808000FFFF000000000000008000000000000000800000000000000000
  700. 0000FFFFFF000000000000000000000000000000000000000000808080008080
  701. 8000808000000000000000800000008000000080000000000000000000000000
  702. 0000000000000000000000000000000000000000000000000000000000000000
  703. 0000000000000000000000000000000000000000000000000000000000000000
  704. 0000000000000000000000000000000000000000000000000000000000000000
  705. 0000000000000000000000000000000000000000000000000000000000000000
  706. 0000000000000000000000000000000000000000000000000000000000000000
  707. 0000000000008080800080808000808080008080800080808000000000008080
  708. 8000000000000000000000000000000000000000000000000000000000008080
  709. 8000808080008080800080808000808080008080800000000000000000000000
  710. 000000000000000000000000000000000000424D3E000000000000003E000000
  711. 2800000040000000200000000100010000000000000100000000000000000000
  712. 000000000000000000000000FFFFFF00FFFFFFFF00000000FFFBFFBF00000000
  713. FFFBFF3E00000000FFE0FF1D00000000FFFBFF9900000000000B000300000000
  714. 000F7FC700000000000F494300000000000F7F98000000000007000400000000
  715. 8007800700000000800780070000000080078007000000008007800700000000
  716. A497A497000000008007800700000000FFFFFFFFE007F843C001FFFFE007F515
  717. 8031001FF00FE8028031000FF83FE0E080310007F00FE80280010003E007C515
  718. 80010001E003800380010000E001000F8FF1001FC001000F8FF1001FC001000F
  719. 8FF1001FC801000F8FF18FF1C401200F8FF1FFF9C001080F8FF5FF75E501901F
  720. 8001FF8FF283C43FFFFFFFFFF827E07F00000000000000000000000000000000
  721. 000000000000}
  722. end
  723. object SDHTF: TSaveDialog
  724. DefaultExt = 'htf'
  725. Filter = 'HTF Files (*.htf)|*.htf|All files (*.*)|*.*'
  726. Options = [ofHideReadOnly, ofPathMustExist, ofEnableSizing]
  727. Title = 'HTF output'
  728. Left = 344
  729. Top = 232
  730. end
  731. object PopupMenu: TPopupMenu
  732. Images = ImageList
  733. Left = 232
  734. Top = 232
  735. object AddDEMsource2: TMenuItem
  736. Action = ACNewDEM
  737. end
  738. object RemoveDEMsource2: TMenuItem
  739. Action = ACRemoveDEM
  740. end
  741. end
  742. object ODTerrainPack: TOpenDialog
  743. DefaultExt = 'tpcfg'
  744. Filter = 'TerrainPack Configuration (*.tpcfg)|*.tpcfg|All files (*.*)|*.*'
  745. Options = [ofHideReadOnly, ofFileMustExist, ofEnableSizing]
  746. Left = 232
  747. Top = 288
  748. end
  749. object SDTerrainPack: TSaveDialog
  750. DefaultExt = 'tpcfg'
  751. Filter = 'TerrainPack Configuration (*.tpcfg)|*.tpcfg|All files (*.*)|*.*'
  752. Options = [ofHideReadOnly, ofPathMustExist, ofNoReadOnlyReturn, ofEnableSizing]
  753. Left = 344
  754. Top = 288
  755. end
  756. object ODPath: TOpenDialog
  757. Left = 288
  758. Top = 232
  759. end
  760. end