Skip to content

Commit

Permalink
updated geostreams version; fixed SR, NDVI layers
Browse files Browse the repository at this point in the history
  • Loading branch information
jonglee1 committed Mar 4, 2022
1 parent 067fa7f commit 9acb9e9
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 17 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"license": "ISC",
"dependencies": {
"@date-io/date-fns": "1.3.13",
"@geostreams/core": "3.8.0",
"@geostreams/geostreaming": "3.8.0",
"@geostreams/core": "3.9.2",
"@geostreams/geostreaming": "3.9.2",
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "~4.0.0-alpha.57",
Expand Down
30 changes: 16 additions & 14 deletions src/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,30 +30,32 @@ export default {
],
'Satellite Multispectral Image SR':[
{
title: 'SR 09-30-2020',
id: 'manual:SatelliteImage.Reifsteck.2020.09.30.SR',
type: 'wms',
legend: 'wms?request=GetLegendGraphic&layer=manual:research-region&format=image%2Fpng'
title: 'SR 09-20-2020',
id: '601d8c3fe4b0affc633634ad:SatelliteImage.Reifsteck.2020.09.20.SR.tif_601d8d40e4b0affc6336376e',
type: 'wms'
// ,
// legend: 'wms?request=GetLegendGraphic&layer=601d8c3fe4b0affc633634ad:SatelliteImage.Reifsteck.2020.09.20.SR.tif_601d8d40e4b0affc6336376e&format=image%2Fpng'
},
{
title: 'SR 09-01-2020',
id: 'manual:SatelliteImage.Reifsteck.2020.09.01.SR',
type: 'wms',
legend: 'wms?request=GetLegendGraphic&layer=manual:research-region&format=image%2Fpng'
title: 'SR 08-22-2020',
id: '601d8c3fe4b0affc633634ad:SatelliteImage.Reifsteck.2020.08.22.SR.tif_601d8d40e4b0affc6336375a',
type: 'wms'
// ,
// legend: 'wms?request=GetLegendGraphic&layer=601d8c3fe4b0affc633634ad:SatelliteImage.Reifsteck.2020.08.22.SR.tif_601d8d40e4b0affc6336375a&format=image%2Fpng'
}
],
'Satellite Multispectral Image NDVI': [
{
title: 'NDVI 09-30-2020',
id: 'manual:SatelliteImage.Reifsteck.2020.09.30.NDVI',
title: 'NDVI 09-20-2020',
id: '601d8dcde4b0affc633642ac:SatelliteImage.Reifsteck.2020.09.20.NDVI.tif_601d8e4de4b0affc63364784',
type: 'wms',
legend: 'wms?request=GetLegendGraphic&layer=manual:research-region&format=image%2Fpng'
legend: 'wms?request=GetLegendGraphic&layer=601d8dcde4b0affc633642ac:SatelliteImage.Reifsteck.2020.09.20.NDVI.tif_601d8e4de4b0affc63364784&format=image%2Fpng'
},
{
title: 'NDVI 09-01-2020',
id: 'manual:SatelliteImage.Reifsteck.2020.09.01.NDVI',
title: 'NDVI 08-22-2020',
id: '601d8dcde4b0affc633642ac:SatelliteImage.Reifsteck.2020.08.22.NDVI.tif_601d8e4de4b0affc63364706',
type: 'wms',
legend: 'wms?request=GetLegendGraphic&layer=manual:research-region&format=image%2Fpng'
legend: 'wms?request=GetLegendGraphic&layer=601d8dcde4b0affc633642ac:SatelliteImage.Reifsteck.2020.08.22.NDVI.tif_601d8e4de4b0affc63364706&format=image%2Fpng'
}
],
'Cation Exchange Capacity (meg/100g)':[
Expand Down
2 changes: 1 addition & 1 deletion webpack.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ module.exports = webpackMerge.merge(commonConfig, {
new Webpack.DefinePlugin({
'process.env.NODE_ENV': '"development"',
'process.env.GEOSERVER_URL': JSON.stringify(process.env.GEOSERVER_URL || 'https://smartfarm.ncsa.illinois.edu/geoserver'),
'process.env.GEOSTREAMS_URL': JSON.stringify(process.env.GEOSTREAMS_URL || 'http://localhost:9000/geostreams')
'process.env.GEOSTREAMS_URL': JSON.stringify(process.env.GEOSTREAMS_URL || 'https://smartfarm.ncsa.illinois.edu/geostreams')
})
]
});

0 comments on commit 9acb9e9

Please sign in to comment.