Skip to content

Commit

Permalink
Bug fixes and contact updates
Browse files Browse the repository at this point in the history
  • Loading branch information
wcarthur committed Oct 7, 2020
1 parent 9fdf814 commit 3380b82
Show file tree
Hide file tree
Showing 15 changed files with 513 additions and 103 deletions.
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.rst
Expand Up @@ -63,7 +63,7 @@ Enforcement
-----------

Instances of abusive, harassing, or otherwise unacceptable behavior may
be reported by contacting the project team at craig.arthur@ga.gov.au.
be reported by contacting the project team at hazards@ga.gov.au.
The project team will review and investigate all complaints, and will
respond in a way that it deems appropriate to the circumstances. The
project team is obligated to maintain confidentiality with regard to the
Expand Down
4 changes: 2 additions & 2 deletions DataProcess/DataProcess.py
Expand Up @@ -194,8 +194,8 @@ def processData(self, restrictToWindfieldDomain=False):
startSeason = config.getint('DataProcess', 'StartSeason')

indicator = loadData.getInitialPositions(inputData)
lat = np.array(inputData['lat'], 'd')
lon = np.mod(np.array(inputData['lon'], 'd'), 360)
lat = np.array(inputData['lat'], 'float32')
lon = np.mod(np.array(inputData['lon'], 'float32'), 360.)

if restrictToWindfieldDomain:
# Filter the input arrays to only retain the tracks that
Expand Down

0 comments on commit 3380b82

Please sign in to comment.