Skip to content

Commit 4b471c8

Browse files
authored
Merge pull request #95 from lawinslow/master
Fixing wtr.heatmap.layers x-axis location issue
2 parents fe1c4ab + a0523ac commit 4b471c8

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: rLakeAnalyzer
22
Title: Lake Physics Tools
33
Maintainer: Luke Winslow <lawinslow@gmail.com>
4-
Version: 1.11.3
4+
Version: 1.11.4
55
Author: Luke Winslow, Jordan Read, Richard Woolway, Jennifer Brentrup, Taylor
66
Leach, Jake Zwart, Sam Albers, Doug Collinge
77
Description: Standardized methods for calculating common important derived

R/wtr.heatmap.layers.R

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,8 @@ wtr.heatmap.layers <- function(wtr, ...){
107107
graphics::lines(x=wtr.dates,y=wtr.all$top, col="gray50", lwd = 2)
108108
graphics::lines(x=wtr.dates,y=wtr.all$bottom,col="gray80", lwd = 2)
109109
graphics::axis(side = 2)
110-
graphics::axis(side = 3, labels=format(datestoshow, ttformat), at = datestoshow, pos = c(min(depths)), tck = -0.03)})
110+
#axis.Date(side=1, x=wtr.dates, at=datestoshow, format=ttformat)
111+
graphics::axis(side = 1, labels=format(datestoshow, ttformat), at = datestoshow, pos = c(max(depths)), tck = -0.03)})
111112

112113

113114

0 commit comments

Comments
 (0)