window = XSectionWindow("XSection Window")
See also: Python APIs for 2D Seismic Layers to add seismic layers to this window
window = MapWindow("Map Window")
See also: Python APIs for 2D Seismic Layers to add time slice layers to this window
seismicData = SeismicData("F:\\Data\\Segy\\Attributes\\cdp_stack.xgy")
crs = CoordinateSystem('32056:1173') # dataset must have coordinate system assigned
seismicData.setCoordinateSystem(crs)
window = MapWindow("Test")
seismicLayer = MapSeismicLayer(window, seismicData)
seismicLayer.setTimeSlice(3)
writer = KmzWriter(window)
writer.writeInBackground('C:\\test.kmz')
or
seismicData = SeismicData("F:\\Data\\Segy\\Attributes\\cdp_stack.xgy")
window = MapWindow("Test")
seismicLayer = MapSeismicLayer(window, seismicData)
seismicLayer.setTimeSlice(3)
crs = CoordinateSystem('32056:1173') # layer must have coordinate system assigned
seismicLayer.setCoordinateSystem(crs)
writer = KmzWriter(window)
writer.writeInBackground('C:\\test.kmz')
window = Window3D("3D Window")
See also: Python APIs for 3D Seismic Layers to add seismic layers to this window
window1 = XSectionWindow("XSection Window 1")
window2 = XSectionWindow("XSection Window 2")
combinedWindow = CombinedWindow("Combined")
combinedWindow.addViewerWindow(window1)
combinedWindow.addViewerWindow(window2)
combinedWindow.setViewerWindowPosition(window1, 1) // moves the first window added all the way to the right
window = FKWindow("Fourier Transform Window")
See also: Python APIs for FK and FT Layers to add FK layers to this window
window = SeismicHistogramWindow("Seismic Histogram Window")
See also: Python APIs for Seismic Histogram Layers add histogram layers to this window
window = WellHistogramWindow("Well Histogram Window")
See also: Python APIs for Well Histogram Layers add histogram layers to this window
window = SpectrumWindow("Spectrum Analysis Window")
See also: Python APIs for Spectrum and Spectrum Phase Layers to add spectrum layers to this window
window = SpectrumPhaseWindow("Spectrum Phase Analysis Window")
See also: Python APIs for Spectrum and Spectrum Phase Layers to add spectrum phase layers to this window
window = WellLogWindow("Well Log Window")
See also: Python APIs for 2D Well Layers to add well layers to this window