Skip to content

Commit

Permalink
Fix OgcTimeDefault parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
pomadchin committed Apr 1, 2021
1 parent e741f46 commit 682b11a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import java.time.ZonedDateTime
import scala.util.Try

sealed trait OgcTimeDefault {
lazy val name: String = getClass.getName.split("\\.").last.toLowerCase
lazy val name: String = getClass.getName.split("\\$").last.toLowerCase
}

object OgcTimeDefault {
Expand Down
1 change: 1 addition & 0 deletions stac-example/src/main/resources/application.conf
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ layers = {
source = "http://localhost:9090/"
ignore-time = false
default-style = "red-to-blue"
time-default = "oldest"
compute-time-positions = true
time-format = "interval"
styles = [
Expand Down

0 comments on commit 682b11a

Please sign in to comment.