-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OGCSources enhanced temporal support #352
Conversation
2a3bec4
to
c5015a3
Compare
c5015a3
to
c209c7a
Compare
fe5de1f
to
10a5205
Compare
10a5205
to
efc0f41
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know this is just a formatting change, but I wish we had scapegoat / scalastyle / something that would tell us when we could just whateverOption.fold
Ugh ignore that comment it was supposed to be on a line but I presed the wrong buttons |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you give me some suggestions for what I'm supposed to test?
ogc-example/src/main/scala/geotrellis/server/ogc/conf/OgcSourceConf.scala
Outdated
Show resolved
Hide resolved
@jisantuc this PR introduces two new configuration options:
To test it you'd need to run gt server and to add these params to any of the (temporal) layers to see how it behaves. But I can show you this demo later / I'll definitely show it on the meeting later next week. :D |
Can you demo to me tomorrow afternoon? Things on GitHub I need to remember to look at later stress me out |
9c83994
to
58b7fb7
Compare
… ignore-time. Fix a incorrect OgcTime Duration computaions and parsing.
58b7fb7
to
73f29f0
Compare
73ba796
to
65cddbd
Compare
65cddbd
to
e741f46
Compare
@@ -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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
case objects
inside the object
:/
682b11a
to
4481d99
Compare
Overview
This PR adds configuration option to fetch data from the CollectionSummary (that is the default behavior now)
Demo
WCS Temporal Intervals support:
WMS Temporal Intervals support:
Checklist
Closes #347
Closes #325
Closes #324