This repository was archived by the owner on Jan 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathinputs.py
194 lines (176 loc) · 7.13 KB
/
inputs.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
#!/usr/bin/env python
# -*- coding: utf-8 -*-
###############################################################################
# Copyright Kitware Inc. and Epidemico Inc.
#
# Licensed under the Apache License, Version 2.0 ( the "License" );
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
###############################################################################
import json
import os
import tempfile
from base64 import b64encode
import fiona
import geopandas
import requests
from six import StringIO
from gaia.core import GaiaException
from gaia.filters import filter_pandas
from gaia.inputs import GaiaIO
from gaia import formats, types
import girder_worker
from girder.constants import PACKAGE_DIR
import girder_client
class MinervaVectorIO(GaiaIO):
"""
Interface to Minerva item geojson
"""
type = types.VECTOR
default_output = formats.JSON
def __init__(self, item_id=None, token=None, name='gaia_result.json',
uri='', **kwargs):
"""
Read and write GeoJSON data to/from Girder
:param item_id: Item id to read/write from/to
:param uri: location of temporary file
:param kwargs: Other keyword arguments
"""
self.id = item_id
self.token = token
if uri:
self.uri = uri
else:
tmpdir = tempfile.mkdtemp()
self.uri = tempfile.mkstemp(suffix='.json', dir=tmpdir)[1]
self.filename = name
girderHost = None
girderPort = None
girderScheme = None
try:
girderHost = girder_worker.config.get('minerva', 'girder_host_name')
girderPort = girder_worker.config.get('minerva', 'girder_host_port')
girderScheme = girder_worker.config.get('minerva', 'girder_host_scheme')
except:
girderHost = 'localhost'
girderPort = '8080'
girderScheme = 'http'
client = girder_client.GirderClient(host=girderHost, port=girderPort, scheme=girderScheme)
client.token = token
self.client = client
self.meta = self.client.getItem(item_id)
super(MinervaVectorIO, self).__init__(uri=self.uri, **kwargs)
def save_geojson(self):
"""
Save GeoJSON from a Minerva item
TODO: Use caching like the girder_worker.girder_io plugin
TODO: Separate methods for saving geojson from different sources
TODO: Get geojson via WFS calls for local WMS vector layers
"""
minerva = self.meta['meta']['minerva']
if 'geojson_file' in minerva:
# Uploaded GeoJSON is stored as a file in Girder
self.client.downloadFile(minerva['geojson_file']['_id'], self.uri)
elif 'geojson' in minerva:
# Mongo collection is stored in item meta
geojson = json.loads(minerva['geojson']['data'])
# TODO: Don't use mongo metadata for filename
with open(self.uri, 'w') as outjson:
json.dump(geojson, outjson)
# elif 'dataset_type' in minerva and minerva['dataset_type'] == 'wms':
# from girder.plugins.minerva.utility.minerva_utility import decryptCredentials
# servers = config.getConfig()['gaia_minerva_wms']['servers']
# if minerva['base_url'] in servers:
# params = 'srsName=EPSG:4326&typename={name}&outputFormat=json'\
# + '&version=1.0.0&service=WFS&request=GetFeature'
# url = '{base}?{params}'.format(
# base=minerva['base_url'].replace('/wms', '/wfs'),
# params=params.format(name=minerva['type_name'])
# )
# headers = {}
# if 'credentials' in minerva:
# credentials = (minerva['credentials'])
# basic_auth = 'Basic ' + b64encode(
# decryptCredentials(credentials))
# headers = {'Authorization': basic_auth}
# with open(self.uri, 'w') as outjson:
# r = requests.get(url, headers=headers)
# r.raise_for_status()
# json.dump(r.json(), outjson)
# else:
# raise GaiaException('This server {} is not supported. \n{}'.format(minerva))
else:
raise GaiaException('Unsupported data source. \n{}'.format(minerva))
def read(self, epsg=None, **kwargs):
"""
Read vector data from Girder
:param format: Format to return data in (default is GeoDataFrame)
:param epsg: EPSG code to reproject data to
:return: Data in GeoJSON
"""
if self.data is None:
self.save_geojson()
self.data = geopandas.read_file(self.uri)
if self.filters:
self.filter_data()
out_data = self.data
if epsg and self.get_epsg() != epsg:
out_data = geopandas.GeoDataFrame.copy(out_data)
out_data[out_data.geometry.name] = \
self.data.geometry.to_crs(epsg=epsg)
out_data.crs = fiona.crs.from_epsg(epsg)
if format == formats.JSON:
return out_data.to_json()
else:
return out_data
def write(self, filename=None, as_type='json'):
"""
Write data (assumed geopandas) to geojson or shapefile
:param filename: Base filename
:param as_type: json or memory
:return: file girder uri
"""
filedata = self.data.to_json()
if not filename:
filename = self.filename
if as_type == 'json':
self.uri = self.uri.replace(os.path.basename(self.uri), filename)
self.create_output_dir(self.uri)
with open(self.uri, 'w') as outfile:
outfile.write(filedata)
elif as_type == 'memory':
pass
else:
raise NotImplementedError('{} not a valid type'.format(as_type))
fd = StringIO(filedata)
upload = self.client.uploadFile(parentId=self.id, stream=fd,
size=len(filedata), name=filename)
item_meta = self.client.getItem(self.id)['meta']
item_meta['minerva']['geojson_file'] = {
'_id': upload['_id'],
'name': upload['name']
}
item_meta['minerva']['geo_render'] = {
'type': 'geojson',
'file_id': upload['_id']
}
self.client.addMetadataToItem(self.id, item_meta)
return os.path.join(
self.client.urlBase, 'file', upload['_id'], 'download')
def filter_data(self):
"""
Apply filters to the dataset
:return:
"""
self.data = filter_pandas(self.data, self.filters)
PLUGIN_CLASS_EXPORTS = [
MinervaVectorIO
]