Custom Query (454 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (55 - 57 of 454)

Ticket Resolution Summary Owner Reporter
#391 fixed Bug in GriddedSubsetSurface's distance X calculation Kevin Milner
Description

I noticed an apparent bug in the caching for GriddedSubsetSurface? while investigating #390. DistanceX uses a different cache but the getDistanceX method was being called with the regular cached location, siteLocForDistCalcs, instead of siteLocForDistXCalc. This means that our distance X calculations have potentially been off any time that distance X is calculated before any of the other distance metrics for a given site. Any results since the new surface implementation was added where values for multiple sites were calculated could be affected by this bug.

public synchronized double getDistanceX(Location siteLoc){
	if(!siteLocForDistXCalc.equals(siteLoc)) {
		siteLocForDistXCalc = siteLoc;
		distanceX = GriddedSurfaceUtils.getDistanceX(getEvenlyDiscritizedUpperEdge(), siteLocForDistCalcs);
	}
	return distanceX;
}
#158 worksforme Bug in HazardCurveLocal Peter Powers goulet@…
Description

Steps to reproduce: (PLEASE FILL IN)

Other info: (PLEASE FILL IN)

Application: HazardCurveLocal? Version: 1.1.1 Bulid Type: nightly

Metadata: Problem occured during initialization the ERF's. All parameters are set to default.

Exception:

java.lang.reflect.InvocationTargetException
	at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
	at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
	at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
	at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
	at org.opensha.sha.gui.beans.ERF_GuiBean.createERFClassInstance(ERF_GuiBean.java:141)
	at org.opensha.sha.gui.beans.ERF_GuiBean.init_erf_IndParamListAndEditor(ERF_GuiBean.java:248)
	at org.opensha.sha.gui.beans.ERF_GuiBean.<init>(ERF_GuiBean.java:120)
	at org.opensha.sha.gui.HazardCurveLocalModeApplication.initERF_GuiBean(HazardCurveLocalModeApplication.java:161)
	at org.opensha.sha.gui.HazardCurveServerModeApplication.init(HazardCurveServerModeApplication.java:382)
	at org.opensha.sha.gui.HazardCurveLocalModeApplication.main(HazardCurveLocalModeApplication.java:268)
Caused by: org.opensha.commons.exceptions.FaultException: Frankel96_AdjustableEqkRupForecastNo data loaded from org/opensha/sha/earthquake/rupForecastImpl/Frankel96/Frankel96_CAL_all.txt. File may be empty or doesn't exist.
	at org.opensha.sha.earthquake.rupForecastImpl.Frankel96.Frankel96_AdjustableEqkRupForecast.<init>(Frankel96_AdjustableEqkRupForecast.java:190)
	... 10 more
#239 invalid Bug in HazardCurveLocal Peter Powers anonymous
Description

Steps to reproduce: Bug immediately upon opening application

Other info: (PLEASE FILL IN)

Application: HazardCurveLocal? Version: 1.1.3 Bulid Type: dist

Exception:

java.lang.IllegalStateException: Buffers have not been created
	at sun.awt.windows.WComponentPeer.getBackBuffer(Unknown Source)
	at java.awt.Component$FlipBufferStrategy.getBackBuffer(Unknown Source)
	at java.awt.Component$FlipBufferStrategy.updateInternalBuffers(Unknown Source)
	at java.awt.Component$FlipBufferStrategy.revalidate(Unknown Source)
	at java.awt.Component$FlipBufferStrategy.revalidate(Unknown Source)
	at java.awt.Component$FlipBufferStrategy.getDrawGraphics(Unknown Source)
	at javax.swing.BufferStrategyPaintManager.prepare(Unknown Source)
	at javax.swing.BufferStrategyPaintManager.paint(Unknown Source)
	at javax.swing.RepaintManager.paint(Unknown Source)
	at javax.swing.JComponent.paint(Unknown Source)
	at java.awt.GraphicsCallback$PaintCallback.run(Unknown Source)
	at sun.awt.SunGraphicsCallback.runOneComponent(Unknown Source)
	at sun.awt.SunGraphicsCallback.runComponents(Unknown Source)
	at java.awt.Container.paint(Unknown Source)
	at javax.swing.RepaintManager.paintDirtyRegions(Unknown Source)
	at javax.swing.RepaintManager.paintDirtyRegions(Unknown Source)
	at javax.swing.RepaintManager.seqPaintDirtyRegions(Unknown Source)
	at javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(Unknown Source)
	at java.awt.event.InvocationEvent.dispatch(Unknown Source)
	at java.awt.EventQueue.dispatchEvent(Unknown Source)
	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
	at java.awt.EventDispatchThread.pumpEve
Note: See TracQuery for help on using queries.