-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpatterns.js
437 lines (379 loc) · 19.6 KB
/
patterns.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
class JPPitLogPatternCreator {
constructor() {
this.patternCanvas = document.createElement('canvas');
this.patternContext = this.patternCanvas.getContext('2d');
}
createPattern(soilType, patternSize=60, markerSize=4, lineWidth=1){
// Ref: https://www.city.osaka.lg.jp/kensetsu/cmsfiles/contents/0000023/23825/5_04.pdf
// Ref2: https://www.jice.or.jp/cms/kokudo/pdf/tech/material/dokouh21_08.pdf
// Ref3: https://www.zenchiren.or.jp/houkoku/PDF/2-02.pdf
const firstCategoryNameList = ["礫", "礫質土", "砂", "砂質土", "シルト",
"粘性土", "有機質土", "火山灰質粘性土", "高有機質土(腐植土)"];
const secondCategoryNameList = ["砂質", "シルト質", "粘土質", "有機質", "火山灰質",
"玉石混り", "砂利、礫混り", "砂混り", "シルト混り", "粘土混り",
"有機質土混り", "火山灰混り", "貝殻混り"];
const thirdCategoryNameList = ["硬岩", "中硬岩", "軟岩、風化岩", "玉石", "浮石(軽石)", "シラス",
"スコリア", "火山灰", "ローム", "黒ボク", "マサ", "表土", "埋土", "廃棄物"];
const categoryMatchedIndices = this.matchCategoryName_(soilType, firstCategoryNameList, secondCategoryNameList, thirdCategoryNameList);
console.log(categoryMatchedIndices);
return this.createPatternBase_(categoryMatchedIndices, patternSize, markerSize, lineWidth);
}
matchCategoryName_(soilType, firstCategoryNameList, secondCategoryNameList, thirdCategoryNameList){
// exceptional case
if (soilType === "火山灰質粘性土"){
return [7, -1, -1];
}
// perfect match
const temp_firstCategoryMatchedIndex = firstCategoryNameList.findIndex(name => soilType === name);
if (temp_firstCategoryMatchedIndex !== -1){
return [temp_firstCategoryMatchedIndex, -1, -1];
}
else{
// partial match
const secondCategoryIndex = secondCategoryNameList.findIndex(name => soilType.includes(name));
if (secondCategoryIndex !== -1){
const firstCategoryIndex = firstCategoryNameList.findIndex(name => name === soilType.replace(secondCategoryNameList[secondCategoryIndex], ""));
if (firstCategoryIndex !== -1){
return [firstCategoryIndex, secondCategoryIndex, -1];
}
else{
const thirdCategoryIndex = thirdCategoryNameList.findIndex(name => name === soilType);
return [-1, -1, thirdCategoryIndex];
}
}
else{
const thirdCategoryIndex = thirdCategoryNameList.findIndex(name => name === soilType);
return [-1, -1, thirdCategoryIndex];
}
}
}
createPatternBase_(categoryMatchedIndices, patternSize, markerSize, lineWidth){
const firstCategoryIndex = categoryMatchedIndices[0];
const secondCategoryIndex = categoryMatchedIndices[1];
const thirdCategoryIndex = categoryMatchedIndices[2];
let firstPatternContext = null;
let secondPatternContext = null;
let thirdPatternContext = null;
if (firstCategoryIndex !== -1){
firstPatternContext = this.createFirstCategoryPattern_(firstCategoryIndex, patternSize, markerSize, lineWidth);
}
if (secondCategoryIndex !== -1){
secondPatternContext = this.createSecondCategoryPattern_(secondCategoryIndex, patternSize, markerSize, lineWidth);
}
if (thirdCategoryIndex !== -1){
thirdPatternContext = this.createThirdCategoryPattern_(thirdCategoryIndex, patternSize, markerSize, lineWidth);
}
return this.combinePatternContexts_(firstPatternContext, secondPatternContext, thirdPatternContext);
}
createFirstCategoryPattern_(firstCategoryIndex, patternSize, markerSize, lineWidth){
const patternCanvas = document.createElement('canvas');
patternCanvas.width = patternSize;
patternCanvas.height = patternSize;
const patternContext = patternCanvas.getContext('2d');
// Index 0: 礫
if (firstCategoryIndex === 0){
patternContext.fillStyle = "#ffffff";
patternContext.beginPath();
patternContext.arc(patternSize / 4, patternSize * 3/ 4, markerSize, 0, Math.PI * 2, true); // Adjusted position
patternContext.fill();
patternContext.lineWidth = lineWidth;
patternContext.stroke();
patternContext.fillStyle = "#ffffff";
patternContext.beginPath();
patternContext.arc(patternSize * 3/ 4, patternSize / 4, markerSize, 0, Math.PI * 2, true); // Adjusted position
patternContext.fill();
patternContext.lineWidth = lineWidth;
patternContext.stroke();
}
// Index 1: 礫質土
else if (firstCategoryIndex === 1){
for (let i = 0; i < 2; i++){
for (let j = 0; j < 2; j++){
patternContext.fillStyle = "#ffffff";
patternContext.beginPath();
patternContext.arc(patternSize / 4 + patternSize / 2 * i, patternSize / 4 + patternSize / 2 * j, markerSize, 0, Math.PI * 2, true); // Adjusted position
patternContext.fill();
patternContext.lineWidth = lineWidth;
patternContext.stroke();
}
}
}
// Index 2: 砂
else if (firstCategoryIndex === 2){
patternContext.fillStyle = "#000000";
patternContext.beginPath();
patternContext.arc(patternSize / 4, patternSize * 3/ 4, markerSize, 0, Math.PI * 2, true); // Adjusted position
patternContext.fill();
patternContext.lineWidth = lineWidth;
patternContext.stroke();
patternContext.fillStyle = "#000000";
patternContext.beginPath();
patternContext.arc(patternSize * 3/ 4, patternSize / 4, markerSize, 0, Math.PI * 2, true); // Adjusted position
patternContext.fill();
patternContext.lineWidth = lineWidth;
patternContext.stroke();
}
// Index 3: 砂質土
else if (firstCategoryIndex === 3){
for (let i = 0; i < 2; i++){
for (let j = 0; j < 2; j++){
patternContext.fillStyle = "#000000";
patternContext.beginPath();
patternContext.arc(patternSize / 4 + patternSize / 2 * i, patternSize / 4 + patternSize / 2 * j, markerSize, 0, Math.PI * 2, true); // Adjusted position
patternContext.fill();
patternContext.lineWidth = lineWidth;
patternContext.stroke();
}
}
}
// Index 4: シルト
else if (firstCategoryIndex === 4){
for (let i = 0; i < 2; i++){
for (let j = 0; j < 3; j++){
patternContext.fillStyle = "#000000";
patternContext.rect(patternSize / 6 + patternSize / 2 * i, patternSize / 6 + patternSize / 3 * j, patternSize / 3, lineWidth);
patternContext.fill();
}
}
}
// Index 5: 粘性土
else if (firstCategoryIndex === 5){
for (let j = 0; j < 3; j++){
patternContext.fillStyle = "#000000";
patternContext.rect(0, patternSize / 6 + patternSize / 3 * j, patternSize, lineWidth);
patternContext.fill();
}
}
// Index 6: 有機質土
else if (firstCategoryIndex === 6){
for (let i = 0; i < 2; i++){
for (let j = 0; j < 3; j++){
for (let k = 0; k < 2; k++){
patternContext.fillStyle = "#000000";
patternContext.beginPath();
patternContext.moveTo(patternSize / 4 + patternSize / 2 * i - lineWidth / 2 + 2 * lineWidth * k, patternSize / 12 + patternSize / 3 * j);
patternContext.lineTo(patternSize / 4 + patternSize / 2 * i - lineWidth / 2 + 2 * lineWidth * k, patternSize * 3 / 12 + patternSize / 3 * j);
patternContext.closePath();
patternContext.lineWidth = lineWidth;
patternContext.stroke();
}
}
}
}
// Index 7: 火山灰質粘性土
else if (firstCategoryIndex === 7){
// bazier curve regressing 1/2 sin curve
// (-pi/2, -1), (-pi/2 + (pi - 2), -1),(pi / 2 - (pi - 2), 1), (pi/2, 1)
for (let i = 0; i < 4; i++){
for (let j = 0; j < 3; j++){
patternContext.fillStyle = "#000000";
patternContext.beginPath();
patternContext.moveTo(patternSize / 4 * i, patternSize * 3 / 10 + patternSize / 3 * j);
patternContext.bezierCurveTo((Math.PI - 2) / Math.PI * patternSize / 8 + patternSize / 4 * i, patternSize * 3 / 10 + patternSize / 3 * j,
2 / Math.PI * patternSize / 8 + patternSize / 4 * i, patternSize * 1 / 10 + patternSize / 3 * j,
patternSize / 8 + patternSize / 4 * i, patternSize * 1 / 10 + patternSize / 3 * j)
patternContext.bezierCurveTo((Math.PI - 2) / Math.PI * patternSize / 8 + patternSize / 8 + patternSize / 4 * i, patternSize * 1 / 10 + patternSize / 3 * j,
2 / Math.PI * patternSize / 8 + patternSize / 8 + patternSize / 4 * i, patternSize * 3 / 10 + patternSize / 3 * j,
patternSize / 4 + patternSize / 4 * i, patternSize * 3 / 10 + patternSize / 3 * j)
patternContext.lineWidth = lineWidth;
patternContext.stroke();
}
}
}
// Index 8: 高有機質土(腐植土)
else if (firstCategoryIndex === 8){
for (let i = 0; i < 2; i++){
for (let j = 0; j < 2; j++){
patternContext.fillStyle = "#000000";
const x_center = patternSize / 4 + patternSize / 2 * i;
const y_center = patternSize / 4 + patternSize / 2 * j;
patternContext.beginPath();
patternContext.moveTo(x_center - markerSize, y_center - markerSize);
patternContext.lineTo(x_center, y_center); // center point
patternContext.lineTo(x_center, y_center + markerSize);
patternContext.lineTo(x_center, y_center);
patternContext.lineTo(x_center + markerSize, y_center - markerSize);
patternContext.lineTo(x_center + 2 * markerSize, y_center - markerSize);
patternContext.lineWidth = lineWidth;
patternContext.stroke();
}
}
}
else {
return null;
}
return patternContext.createPattern(patternCanvas, 'repeat');
}
createSecondCategoryPattern_(secondCategoryIndex, patternSize, markerSize, lineWidth){
const patternCanvas = document.createElement('canvas');
patternCanvas.width = patternSize;
patternCanvas.height = patternSize;
const patternContext = patternCanvas.getContext('2d');
// Index 0: 砂質
// TODO: 斜線の端部の処理が必要。部分的に連続になってしまっている。
if (secondCategoryIndex === 0){
patternContext.fillStyle = "#000000";
patternContext.setLineDash([2.5, 2.5]);
patternContext.lineWidth = lineWidth
patternContext.beginPath();
patternContext.moveTo(patternSize, 0);
patternContext.lineTo(0, patternSize);
patternContext.stroke();
patternContext.beginPath();
patternContext.moveTo(patternSize - 4 * lineWidth, 0);
patternContext.lineTo(0, patternSize - 4 * lineWidth);
patternContext.stroke();
patternContext.beginPath();
patternContext.moveTo(patternSize, 4 * lineWidth);
patternContext.lineTo(4 * lineWidth, patternSize);
patternContext.stroke();
patternContext.beginPath();
patternContext.moveTo(patternSize - 4 * lineWidth, patternSize);
patternContext.lineTo(patternSize, patternSize - 4 * lineWidth);
patternContext.stroke();
patternContext.beginPath();
patternContext.moveTo(0, 4 * lineWidth);
patternContext.lineTo(4 * lineWidth, 0);
patternContext.stroke();
}
// Index 1: シルト質
else if (secondCategoryIndex === 1){
patternContext.fillStyle = "#000000";
patternContext.setLineDash([5, 5]);
patternContext.lineWidth = lineWidth
patternContext.beginPath();
patternContext.moveTo(patternSize, 0);
patternContext.lineTo(0, patternSize);
patternContext.stroke();
patternContext.beginPath();
patternContext.moveTo(patternSize - 4 * lineWidth, 0);
patternContext.lineTo(0, patternSize - 4 * lineWidth);
patternContext.stroke();
patternContext.beginPath();
patternContext.moveTo(patternSize, 4 * lineWidth);
patternContext.lineTo(4 * lineWidth, patternSize);
patternContext.stroke();
patternContext.beginPath();
patternContext.moveTo(patternSize - 4 * lineWidth, patternSize);
patternContext.lineTo(patternSize, patternSize - 4 * lineWidth);
patternContext.stroke();
patternContext.beginPath();
patternContext.moveTo(0, 4 * lineWidth);
patternContext.lineTo(4 * lineWidth, 0);
patternContext.stroke();
}
// Index 2: 粘土質
else if (secondCategoryIndex === 2){
patternContext.fillStyle = "#000000";
patternContext.lineWidth = lineWidth
patternContext.beginPath();
patternContext.moveTo(patternSize, 0);
patternContext.lineTo(0, patternSize);
patternContext.stroke();
patternContext.beginPath();
patternContext.moveTo(patternSize - 4 * lineWidth, 0);
patternContext.lineTo(0, patternSize - 4 * lineWidth);
patternContext.stroke();
patternContext.beginPath();
patternContext.moveTo(patternSize, 4 * lineWidth);
patternContext.lineTo(4 * lineWidth, patternSize);
patternContext.stroke();
patternContext.beginPath();
patternContext.moveTo(patternSize - 4 * lineWidth, patternSize);
patternContext.lineTo(patternSize, patternSize - 4 * lineWidth);
patternContext.stroke();
patternContext.beginPath();
patternContext.moveTo(0, 4 * lineWidth);
patternContext.lineTo(4 * lineWidth, 0);
patternContext.stroke();
}
// Index 3: 有機質
// TODO: linewidthとpatternSizeの関係を調整する必要がある。
else if (secondCategoryIndex === 3){
patternContext.fillStyle = "#000000";
patternContext.lineWidth = lineWidth
for (let i = 0; i < 2; i++){
for (let j = 0; j < 4; j++){
for (let k = 0; k < 2; k++){
patternContext.beginPath();
patternContext.moveTo(patternSize - patternSize / 8 * (2*j - 1)
+ patternSize / 12 * (2*i - 1) + 2 * lineWidth * (2*k - 1),
- patternSize / 16 + patternSize / 8 * (2*j + 1));
patternContext.lineTo(patternSize - patternSize / 8 * (2*j - 1)
+ patternSize / 12 * (2*i - 1) + 2 * lineWidth * (2*k - 1),
patternSize / 16 + patternSize / 8 * (2*j + 1));
patternContext.stroke();
}
}
}
}
// Index 4: 火山灰質
else if (secondCategoryIndex === 4){
patternContext.fillStyle = "#000000";
patternContext.lineWidth = lineWidth
for (let i = 0; i < 2; i++){
for (let j = 0; j < 4; j++){
for (let k = 0; k < 2; k++){
patternContext.beginPath();
patternContext.stroke();
}
}
}
}
// Index 5: 玉石混り
// Index 6: 砂利、礫混り
// Index 7: 砂混り
// Index 8: シルト混り
// Index 9: 粘土混り
// Index 10: 有機質土混り
// Index 11: 火山灰混り
// Index 12: 貝殻混り
else {
return null;
}
return patternContext.createPattern(patternCanvas, 'repeat');
}
createThirdCategoryPattern_(thirdCategoryIndex, patternSize, markerSize){
}
combinePatternContexts_(firstPatternContext, secondPatternContext, thirdPatternContext){
if (thirdPatternContext !== null){
return thirdPatternContext;
}
else if (firstPatternContext !== null && secondPatternContext !== null){
return secondPatternContext
}
else if (firstPatternContext !== null){
return firstPatternContext;
}
else if (secondPatternContext !== null){
return secondPatternContext;
}
else{
return null;
}
}
createDotPattern(color, spacing, radius) {
const patternCanvas = document.createElement('canvas');
patternCanvas.width = spacing;
patternCanvas.height = spacing;
const patternContext = patternCanvas.getContext('2d');
// Draw the dot pattern
patternContext.fillStyle = color;
patternContext.beginPath();
patternContext.arc(spacing / 2, spacing / 2, radius, 0, Math.PI * 2, true);
patternContext.fill();
return patternContext;
}
combine(patternContext1, patternContext2) {
const size = Math.max(patternContext1.canvas.width, patternContext2.canvas.width);
this.patternCanvas.width = size;
this.patternCanvas.height = size;
// Clear the canvas before drawing
this.patternContext.clearRect(0, 0, size, size);
// Draw the first pattern
this.patternContext.drawImage(patternContext1.canvas, 0, 0);
// Draw the second pattern
this.patternContext.drawImage(patternContext2.canvas, 0, 0);
return this.patternContext.createPattern(this.patternCanvas, 'repeat');
}
}