Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
nshmp-ws-static
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ghsc
National Seismic Hazard Model Project
nshmp-ws-static
Commits
54d60a1c
Commit
54d60a1c
authored
3 years ago
by
Clayton, Brandon Scott
Browse files
Options
Downloads
Patches
Plain Diff
Match to dynamic response
parent
f5fd7b5d
No related branches found
No related tags found
2 merge requests
!101
Production Release | nshmp-ws-static
,
!99
Update Usage
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/gov/usgs/earthquake/nshmp/netcdf/www/NetcdfService.java
+31
-10
31 additions, 10 deletions
...a/gov/usgs/earthquake/nshmp/netcdf/www/NetcdfService.java
with
31 additions
and
10 deletions
src/main/java/gov/usgs/earthquake/nshmp/netcdf/www/NetcdfService.java
+
31
−
10
View file @
54d60a1c
...
...
@@ -2,17 +2,18 @@ package gov.usgs.earthquake.nshmp.netcdf.www;
import
static
gov
.
usgs
.
earthquake
.
nshmp
.
netcdf
.
www
.
NetcdfWsUtils
.
GSON
;
import
java.util.
List
;
import
java.util.
Map
;
import
java.util.logging.Logger
;
import
gov.usgs.earthquake.nshmp.Maths
;
import
gov.usgs.earthquake.nshmp.data.XySequence
;
import
gov.usgs.earthquake.nshmp.geo.Bounds
;
import
gov.usgs.earthquake.nshmp.geo.Location
;
import
gov.usgs.earthquake.nshmp.gmm.NehrpSiteClass
;
import
gov.usgs.earthquake.nshmp.netcdf.Netcdf
;
import
gov.usgs.earthquake.nshmp.netcdf.data.ScienceBaseMetadata
;
import
gov.usgs.earthquake.nshmp.netcdf.www.NetcdfController.Query
;
import
gov.usgs.earthquake.nshmp.netcdf.www.NetcdfController.Service
;
import
gov.usgs.earthquake.nshmp.netcdf.www.meta.DoubleParameter
;
import
gov.usgs.earthquake.nshmp.www.Response
;
import
io.micronaut.http.HttpRequest
;
...
...
@@ -126,7 +127,7 @@ public abstract class NetcdfService {
final
String
description
;
final
String
[]
syntax
;
final
String
netcdfFile
;
final
Parameters
parameters
;
final
Parameters
model
;
final
ScienceBaseMetadata
scienceBaseMetadata
;
Metadata
(
HttpRequest
<?>
request
,
String
description
)
{
...
...
@@ -134,25 +135,45 @@ public abstract class NetcdfService {
url
=
url
.
endsWith
(
"/"
)
?
url
.
substring
(
0
,
url
.
length
()
-
1
)
:
url
;
this
.
description
=
description
;
scienceBaseMetadata
=
netcdf
().
netcdfData
().
scienceBaseMetadata
();
netcdfFile
=
netcdf
().
netcdfPath
().
toString
();
netcdfFile
=
netcdf
().
netcdfPath
().
getFileName
().
toString
();
syntax
=
new
String
[]
{
url
+
"/{longitude:number}/{latitude:number}"
,
url
+
"?longitude={number}&latitude={number}"
,
url
+
"/{longitude:number}/{latitude:number}/{siteClass:NehrpSiteClass}"
,
url
+
"?longitude={number}&latitude={number}&siteClass={NehrpSiteClass}"
,
};
parameters
=
new
Parameters
();
model
=
new
Parameters
();
}
}
class
Parameters
{
final
Bounds
bounds
;
final
List
<
NehrpSiteClass
>
siteClasses
;
final
String
name
;
final
DoubleParameter
longitude
;
final
DoubleParameter
latitude
;
final
Map
<
NehrpSiteClass
,
Double
>
siteClasses
;
final
DoubleParameter
vs30
;
Parameters
()
{
var
coordinates
=
netcdf
().
netcdfData
();
bounds
=
coordinates
.
bounds
();
siteClasses
=
coordinates
.
siteClasses
();
var
netcdfData
=
netcdf
().
netcdfData
();
var
bounds
=
netcdfData
.
bounds
();
name
=
netcdfData
.
scienceBaseMetadata
().
label
;
longitude
=
new
DoubleParameter
(
"Longitude"
,
"°"
,
Maths
.
round
(
bounds
.
min
.
longitude
,
3
),
Maths
.
round
(
bounds
.
max
.
longitude
,
3
));
latitude
=
new
DoubleParameter
(
"Latitude"
,
"°"
,
Maths
.
round
(
bounds
.
min
.
latitude
,
3
),
Maths
.
round
(
bounds
.
max
.
latitude
,
3
));
siteClasses
=
netcdfData
.
vs30Map
();
vs30
=
new
DoubleParameter
(
"Vs30"
,
"m/s"
,
150
,
1500
);
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment