linked-rolls 0.39.0 → 0.39.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -6
- package/lib/Feature.d.ts +8 -5
- package/lib/Quantity.d.ts +1 -1
- package/lib/RollCopy.d.ts +9 -5
- package/lib/editionOps.d.ts +1 -1
- package/lib/schema.json +6 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -78,12 +78,17 @@ derivation loads as a list of one.
|
|
|
78
78
|
## What brought a feature about
|
|
79
79
|
|
|
80
80
|
A copy states no list of features. Each feature stands in the act that
|
|
81
|
-
brought it about: the
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
81
|
+
brought it about: the copy's own production for what the punching made,
|
|
82
|
+
an `Alteration` for what a later hand made, an `Attachment` for a patch
|
|
83
|
+
glued on. A `Removal` names by id what was taken off, which stood there
|
|
84
|
+
before the act.
|
|
85
|
+
|
|
86
|
+
Which act a feature stands in says when it came about and by whose
|
|
87
|
+
hand, and says nothing about what kind of feature it is. A hole may be
|
|
88
|
+
punched by hand long after the roll was cut, and a mark may come from
|
|
89
|
+
the factory, rarely though that happens. A feature no later act is
|
|
90
|
+
known to have made belongs to the punching, which is where a reading of
|
|
91
|
+
a scan puts every hole it finds.
|
|
87
92
|
|
|
88
93
|
Three kinds of act rather than two, because the CRM tells them apart.
|
|
89
94
|
E79 Part Addition asks that what is added be "a separate identifiable
|
package/lib/Feature.d.ts
CHANGED
|
@@ -169,9 +169,11 @@ export interface Writing extends Trace<'Writing'> {
|
|
|
169
169
|
*/
|
|
170
170
|
transcription: ObjectAssumption<Transcription>;
|
|
171
171
|
/**
|
|
172
|
-
* How far the writing stands askew
|
|
173
|
-
* the
|
|
174
|
-
*
|
|
172
|
+
* How far the writing stands askew. At zero it reads across the
|
|
173
|
+
* roll, from the bass side towards the treble, and the angle turns
|
|
174
|
+
* that reading direction towards the end of the roll, so that a
|
|
175
|
+
* right angle leaves it reading along the roll. A stamp pressed
|
|
176
|
+
* crooked and a label written lengthwise are both stated here.
|
|
175
177
|
* @see reo:rotation
|
|
176
178
|
*/
|
|
177
179
|
rotation?: Measure<'deg'>;
|
|
@@ -204,8 +206,9 @@ export interface GluedOn extends RollFeature<'GluedOn', typeof conditions.GluedO
|
|
|
204
206
|
*/
|
|
205
207
|
material: 'paper' | 'tape';
|
|
206
208
|
/**
|
|
207
|
-
* How far the patch was stuck on askew
|
|
208
|
-
*
|
|
209
|
+
* How far the patch was stuck on askew. At zero its edges stand
|
|
210
|
+
* square to the roll, and the angle turns them towards the end of
|
|
211
|
+
* it, as a writing's reading direction turns.
|
|
209
212
|
* @see reo:rotation
|
|
210
213
|
*/
|
|
211
214
|
rotation?: Measure<'deg'>;
|
package/lib/Quantity.d.ts
CHANGED
|
@@ -28,7 +28,7 @@ export type FeetPerMinute = Quantity<'ft/min'>;
|
|
|
28
28
|
export type MetersPerMinute = Quantity<'m/min'>;
|
|
29
29
|
/** How finely a scan was read: pixels of the image per inch of paper. */
|
|
30
30
|
export type Resolution = Quantity<'px/in'>;
|
|
31
|
-
/** An angle,
|
|
31
|
+
/** An angle on the roll, turning from the line across the paper towards the end of the roll. */
|
|
32
32
|
export type Degrees = Quantity<'deg'>;
|
|
33
33
|
/** Names a number in a unit. Partially apply it to make a constructor. */
|
|
34
34
|
export declare const quantity: <U extends string>(value: number) => Quantity<U>;
|
package/lib/RollCopy.d.ts
CHANGED
|
@@ -115,10 +115,12 @@ export interface ProductionEvent {
|
|
|
115
115
|
*/
|
|
116
116
|
speed?: ObjectAssumption<PaperSpeed>;
|
|
117
117
|
/**
|
|
118
|
-
* The features the
|
|
119
|
-
*
|
|
120
|
-
*
|
|
121
|
-
*
|
|
118
|
+
* The features the copy came from its punching with: the note and
|
|
119
|
+
* expression perforations, and now and then a mark the perforator
|
|
120
|
+
* left. A reading of a scan finds every hole on the paper at once
|
|
121
|
+
* and states it here, and a feature an editor reads as the work of
|
|
122
|
+
* a later hand belongs in the act that made it, whichever kind of
|
|
123
|
+
* feature it is.
|
|
122
124
|
* @see crm:P108 has produced
|
|
123
125
|
*/
|
|
124
126
|
produced?: AnyFeature[];
|
|
@@ -161,7 +163,9 @@ export type Modification = Partial<{
|
|
|
161
163
|
type: 'Alteration';
|
|
162
164
|
/**
|
|
163
165
|
* The features the act brought into being: a date written on the
|
|
164
|
-
* paper, a circle in pencil, a hole punched by hand.
|
|
166
|
+
* paper, a circle in pencil, a hole punched by hand. Any kind of
|
|
167
|
+
* feature may come of a later act, as any kind may come of the
|
|
168
|
+
* punching.
|
|
165
169
|
* @see crm:P108 has produced
|
|
166
170
|
*/
|
|
167
171
|
produced: AnyFeature[];
|
package/lib/editionOps.d.ts
CHANGED
|
@@ -77,7 +77,7 @@ export declare const symbolsCarriedOnlyBy: (edition: Edition, copyId: string) =>
|
|
|
77
77
|
* punched, being glued on, so `punched` says nothing of one.
|
|
78
78
|
*/
|
|
79
79
|
export interface FeatureAct {
|
|
80
|
-
/** The copy
|
|
80
|
+
/** The copy came from its punching with it, which is where a reading of a scan puts every hole. */
|
|
81
81
|
punched?: boolean;
|
|
82
82
|
/** The act that brought this feature about brought the new one about as well. */
|
|
83
83
|
beside?: string;
|
package/lib/schema.json
CHANGED
|
@@ -782,7 +782,7 @@
|
|
|
782
782
|
},
|
|
783
783
|
"rotation": {
|
|
784
784
|
"$ref": "#/definitions/Measure%3C%22deg%22%3E",
|
|
785
|
-
"description": "How far the patch was stuck on askew
|
|
785
|
+
"description": "How far the patch was stuck on askew. At zero its edges stand square to the roll, and the angle turns them towards the end of it, as a writing's reading direction turns.",
|
|
786
786
|
"ontology": "reo:rotation"
|
|
787
787
|
},
|
|
788
788
|
"side": {
|
|
@@ -1264,7 +1264,7 @@
|
|
|
1264
1264
|
"ontology": "crm:P4 has time-span"
|
|
1265
1265
|
},
|
|
1266
1266
|
"produced": {
|
|
1267
|
-
"description": "The features the act brought into being: a date written on the paper, a circle in pencil, a hole punched by hand.",
|
|
1267
|
+
"description": "The features the act brought into being: a date written on the paper, a circle in pencil, a hole punched by hand. Any kind of feature may come of a later act, as any kind may come of the punching.",
|
|
1268
1268
|
"items": {
|
|
1269
1269
|
"$ref": "#/definitions/AnyFeature"
|
|
1270
1270
|
},
|
|
@@ -1458,7 +1458,7 @@
|
|
|
1458
1458
|
},
|
|
1459
1459
|
"rotation": {
|
|
1460
1460
|
"$ref": "#/definitions/Measure%3C%22deg%22%3E",
|
|
1461
|
-
"description": "How far the writing stands askew
|
|
1461
|
+
"description": "How far the writing stands askew. At zero it reads across the roll, from the bass side towards the treble, and the angle turns that reading direction towards the end of the roll, so that a right angle leaves it reading along the roll. A stamp pressed crooked and a label written lengthwise are both stated here.",
|
|
1462
1462
|
"ontology": "reo:rotation"
|
|
1463
1463
|
},
|
|
1464
1464
|
"side": {
|
|
@@ -1588,7 +1588,7 @@
|
|
|
1588
1588
|
},
|
|
1589
1589
|
"rotation": {
|
|
1590
1590
|
"$ref": "#/definitions/Measure%3C%22deg%22%3E",
|
|
1591
|
-
"description": "How far the patch was stuck on askew
|
|
1591
|
+
"description": "How far the patch was stuck on askew. At zero its edges stand square to the roll, and the angle turns them towards the end of it, as a writing's reading direction turns.",
|
|
1592
1592
|
"ontology": "reo:rotation"
|
|
1593
1593
|
},
|
|
1594
1594
|
"side": {
|
|
@@ -2467,7 +2467,7 @@
|
|
|
2467
2467
|
"ontology": "crm:P126 employed"
|
|
2468
2468
|
},
|
|
2469
2469
|
"produced": {
|
|
2470
|
-
"description": "The features the
|
|
2470
|
+
"description": "The features the copy came from its punching with: the note and expression perforations, and now and then a mark the perforator left. A reading of a scan finds every hole on the paper at once and states it here, and a feature an editor reads as the work of a later hand belongs in the act that made it, whichever kind of feature it is.",
|
|
2471
2471
|
"items": {
|
|
2472
2472
|
"$ref": "#/definitions/AnyFeature"
|
|
2473
2473
|
},
|
|
@@ -3092,7 +3092,7 @@
|
|
|
3092
3092
|
},
|
|
3093
3093
|
"rotation": {
|
|
3094
3094
|
"$ref": "#/definitions/Measure%3C%22deg%22%3E",
|
|
3095
|
-
"description": "How far the writing stands askew
|
|
3095
|
+
"description": "How far the writing stands askew. At zero it reads across the roll, from the bass side towards the treble, and the angle turns that reading direction towards the end of the roll, so that a right angle leaves it reading along the roll. A stamp pressed crooked and a label written lengthwise are both stated here.",
|
|
3096
3096
|
"ontology": "reo:rotation"
|
|
3097
3097
|
},
|
|
3098
3098
|
"side": {
|
package/package.json
CHANGED