Add some graphics to the shotlog

This commit is contained in:
D. Berge
2023-10-31 19:15:43 +01:00
parent a76aefe418
commit 2c21f8f7ef

View File

@@ -53,6 +53,50 @@
</v-row> </v-row>
</template> </template>
<v-row>
<v-col cols=12 md=6 lg=4>
<div style="height:300px;">
<dougal-graph-project-sequence-inline-crossline
:items="shots"
gun-data-format="smsrc"
facet="2dhist"
>
</dougal-graph-project-sequence-inline-crossline>
</div>
</v-col>
<v-col cols=12 md=6 lg=4>
<div style="height:300px;">
<dougal-graph-project-sequence-inline-crossline
:items="shots"
gun-data-format="smsrc"
facet="crossline"
>
</dougal-graph-project-sequence-inline-crossline>
</div>
</v-col>
<v-col cols=12 md=6 lg=4>
<div ref="" style="height:300px;">
<dougal-graph-project-sequence-shotpoint-timing
:items="shots"
facet="area"
>
</dougal-graph-project-sequence-shotpoint-timing>
</div>
</v-col>
<v-col cols=12 md=6 lg=4 >
<div ref="" style="height:300px;">
<dougal-graph-project-sequence-inline-crossline
:items="shots"
facet="c-o"
>
</dougal-graph-project-sequence-inline-crossline>
</div>
</v-col>
</v-row>
</v-container> </v-container>
<v-card outlined tile class="flex-grow-1"> <v-card outlined tile class="flex-grow-1">
@@ -209,10 +253,17 @@
<script> <script>
import { mapActions, mapGetters } from 'vuex'; import { mapActions, mapGetters } from 'vuex';
import DougalGraphProjectSequenceInlineCrossline from '@/components/graphs/project/sequence/inline-crossline';
import DougalGraphProjectSequenceShotpointTiming from '@/components/graphs/project/sequence/shotpoint-timing';
export default { export default {
name: "SequenceSummary", name: "SequenceSummary",
components: {
DougalGraphProjectSequenceInlineCrossline,
DougalGraphProjectSequenceShotpointTiming
},
data () { data () {
return { return {
filter: null, filter: null,