You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{`If this GeoDataset already has a Start Time Field attached, the name of that start time field inside each feature's "properties" object for which to create a temporal index for the geodataset. Take care in using time field names for the appended GeoJSON features that are different from that of the existing features.`}
475
+
{`The name of a start time field inside each feature's "properties" object for which to create a temporal index for the geodataset. This enables time queries on GeoDatasets.`}
{`If this GeoDataset already has a End Time Field attached, the name of that end time field inside each feature's "properties" object for which to create a temporal index for the geodataset. Take care in using time field names for the appended GeoJSON features that are different from that of the existing features.`}
490
+
{`The name of an end time field inside each feature's "properties" object for which to create a temporal index for the geodataset. This enables time queries on GeoDatasets.`}
491
+
</Typography>
492
+
</div>
493
+
</div>
494
+
<divclassName={c.fields}>
495
+
<div>
496
+
<TextField
497
+
className={c.missionNameInput}
498
+
label="Group Id Field"
499
+
variant="filled"
500
+
value={groupIdField}
501
+
disabled
502
+
onChange={(e)=>{
503
+
setGroupIdField(e.target.value);
504
+
}}
505
+
/>
506
+
<TypographyclassName={c.subtitle2}>
507
+
{`The name of a field inside each feature's "properties" object to serve as a group id. This field cannot be changed after the GeoDataset is created.`}
508
+
</Typography>
509
+
</div>
510
+
<div>
511
+
<TextField
512
+
className={c.missionNameInput}
513
+
label="Feature Id Field"
514
+
variant="filled"
515
+
value={featureIdField}
516
+
disabled
517
+
onChange={(e)=>{
518
+
setFeatureIdField(e.target.value);
519
+
}}
520
+
/>
521
+
<TypographyclassName={c.subtitle2}>
522
+
{`The name of a field inside each feature's "properties" object to serve as a feature id. This field cannot be changed after the GeoDataset is created.`}
0 commit comments