urbanopt-geojson 0.6.5 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/CHANGELOG.md +32 -0
- data/LICENSE.md +1 -1
- data/doc_templates/LICENSE.md +1 -1
- data/doc_templates/copyright_erb.txt +1 -1
- data/doc_templates/copyright_js.txt +2 -2
- data/doc_templates/copyright_ruby.txt +1 -1
- data/docs/package-lock.json +15964 -1722
- data/docs/package.json +1 -1
- data/lib/measures/urban_geometry_creation/measure.rb +1 -1
- data/lib/measures/urban_geometry_creation_zoning/measure.rb +1 -1
- data/lib/urbanopt/geojson/building.rb +1 -1
- data/lib/urbanopt/geojson/derived_extension.rb +1 -1
- data/lib/urbanopt/geojson/district_system.rb +1 -1
- data/lib/urbanopt/geojson/feature.rb +2 -2
- data/lib/urbanopt/geojson/geo_file.rb +18 -3
- data/lib/urbanopt/geojson/helper.rb +1 -1
- data/lib/urbanopt/geojson/logging.rb +1 -1
- data/lib/urbanopt/geojson/mapper_classes.rb +1 -1
- data/lib/urbanopt/geojson/model.rb +1 -1
- data/lib/urbanopt/geojson/region.rb +1 -1
- data/lib/urbanopt/geojson/scale_area.rb +1 -1
- data/lib/urbanopt/geojson/schema/breaker_properties.json +33 -0
- data/lib/urbanopt/geojson/schema/building_properties.json +641 -591
- data/lib/urbanopt/geojson/schema/capacitor_properties.json +38 -0
- data/lib/urbanopt/geojson/schema/consumer_properties.json +58 -0
- data/lib/urbanopt/geojson/schema/distribution_generator.json +45 -0
- data/lib/urbanopt/geojson/schema/distribution_transformer.json +54 -0
- data/lib/urbanopt/geojson/schema/district_system_properties.json +19 -15
- data/lib/urbanopt/geojson/schema/dummy_node_properties.json +21 -0
- data/lib/urbanopt/geojson/schema/electrical_connector_properties.json +6 -135
- data/lib/urbanopt/geojson/schema/hvmv_substation_properties.json +54 -0
- data/lib/urbanopt/geojson/schema/line_properties.json +69 -0
- data/lib/urbanopt/geojson/schema/region_properties.json +1 -1
- data/lib/urbanopt/geojson/schema/site_properties.json +126 -98
- data/lib/urbanopt/geojson/schema/switch_properties.json +33 -0
- data/lib/urbanopt/geojson/update_areas.rb +1 -1
- data/lib/urbanopt/geojson/validate_geojson.rb +1 -1
- data/lib/urbanopt/geojson/version.rb +2 -2
- data/lib/urbanopt/geojson/zoning.rb +1 -1
- data/lib/urbanopt/geojson.rb +1 -1
- data/lib/urbanopt-geojson.rb +1 -1
- data/urbanopt-geojson-gem.gemspec +2 -2
- metadata +18 -9
@@ -1,99 +1,127 @@
|
|
1
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
|
-
|
2
|
+
"$schema": "http://json-schema.org/draft-04/schema#",
|
3
|
+
"id": "http://json-schema.org/openstudio-urban-modeling/taxlot_properties.json#",
|
4
|
+
"title": "URBANopt Site",
|
5
|
+
"description": "Schema for an URBANopt Site object",
|
6
|
+
"type": "object",
|
7
|
+
"properties": {
|
8
|
+
"id": {
|
9
|
+
"description": "Unique id used to refer to this feature within this dataset, generated by database.",
|
10
|
+
"type": "string"
|
11
|
+
},
|
12
|
+
"project_id": {
|
13
|
+
"description": "Project which this feature belongs to.",
|
14
|
+
"type": "string"
|
15
|
+
},
|
16
|
+
"name": {
|
17
|
+
"description": "Feature name",
|
18
|
+
"type": "string"
|
19
|
+
},
|
20
|
+
"state": {
|
21
|
+
"description": "State name",
|
22
|
+
"type": "string"
|
23
|
+
},
|
24
|
+
"city": {
|
25
|
+
"description": "City name",
|
26
|
+
"type": "string"
|
27
|
+
},
|
28
|
+
"latitude": {
|
29
|
+
"description": "Latitude of site origin in WGS 84 coordinate system (deg)",
|
30
|
+
"type": "number"
|
31
|
+
},
|
32
|
+
"longitude": {
|
33
|
+
"description": "Longitude of site origin in WGS 84 coordinate system (deg)",
|
34
|
+
"type": "number"
|
35
|
+
},
|
36
|
+
"surface_elevation": {
|
37
|
+
"description": "The surface elevation (above NAVD88 datum) of the project (ft). ",
|
38
|
+
"type": "number"
|
39
|
+
},
|
40
|
+
"import_surrounding_buildings_as_shading": {
|
41
|
+
"description": "If true, import geometry from surrounding buildings when performing energy calculations.",
|
42
|
+
"type": "boolean"
|
43
|
+
},
|
44
|
+
"timesteps_per_hour": {
|
45
|
+
"description": "Number of timesteps per hour for energy simulations.",
|
46
|
+
"type": "integer",
|
47
|
+
"minimum": 1,
|
48
|
+
"maximum": 60
|
49
|
+
},
|
50
|
+
"begin_date": {
|
51
|
+
"description": "Date to begin simulation, format YYYY-MM-DD.",
|
52
|
+
"type": "string"
|
53
|
+
},
|
54
|
+
"end_date": {
|
55
|
+
"description": "Date to end simulation, format YYYY-MM-DD.",
|
56
|
+
"type": "string"
|
57
|
+
},
|
58
|
+
"climate_zone": {
|
59
|
+
"description": "ASHRAE 169 climate zone.",
|
60
|
+
"type": "string"
|
61
|
+
},
|
62
|
+
"cec_climate_zone": {
|
63
|
+
"description": "CEC Title24 climate zone.",
|
64
|
+
"type": "string"
|
65
|
+
},
|
66
|
+
"default_template": {
|
67
|
+
"description": "Default OpenStudio Standards template.",
|
68
|
+
"type": "string"
|
69
|
+
},
|
70
|
+
"weather_filename": {
|
71
|
+
"description": "Name of weather file in EPW format.",
|
72
|
+
"type": "string"
|
73
|
+
},
|
74
|
+
"tariff_filename": {
|
75
|
+
"description": "Name of utility tariff file in IDF or URDB format.",
|
76
|
+
"type": "string"
|
77
|
+
},
|
78
|
+
"underground_cables_ratio": {
|
79
|
+
"description": "Ratio of overall cables that are underground vs. overhead for RNM analysis.",
|
80
|
+
"type": "number"
|
81
|
+
},
|
82
|
+
"only_lv_consumers": {
|
83
|
+
"description": "If true, only low voltage consumers will be considered in the RNM analysis.",
|
84
|
+
"type": "boolean"
|
85
|
+
},
|
86
|
+
"max_number_of_lv_nodes_per_building": {
|
87
|
+
"description": "Maximum number of low voltage nodes to represent a single building.",
|
88
|
+
"type": "number"
|
89
|
+
},
|
90
|
+
"emissions": {
|
91
|
+
"description": "Should be set to true to calculate emissions for the associated building.",
|
92
|
+
"type": "boolean"
|
93
|
+
},
|
94
|
+
"emissions_future_subregion": {
|
95
|
+
"description": "Future subregion. Options are: AZNMc, CAMXc, ERCTc, FRCCc, MROEc, MROWc, NEWEc, NWPPc, NYSTc, RFCEc, RFCMc, RFCWc, RMPAc, SPNOc, SPSOc, SRMVc, SRMWc, SRSOc, SRTVc, and SRVCc",
|
96
|
+
"type": "string"
|
97
|
+
},
|
98
|
+
"emissions_hourly_historical_subregion": {
|
99
|
+
"description": "Historical hourly subregion. Options are: California, Carolinas, Central, Florida, Mid-Atlantic, Midwest, New England, New York, Northwest, Rocky Mountains, Southeast, Southwest, Tennessee, and Texas",
|
100
|
+
"type": "string"
|
101
|
+
},
|
102
|
+
"emissions_annual_historical_subregion": {
|
103
|
+
"description": "Historical annual subregion. Options are: AKGD, AKMS, AZNM, CAMX, ERCT, FRCC, HIMS, HIOA, MROE, MROW, NEWE, NWPP, NYCW, NYLI, NYUP, RFCE, RFCM, RFCW, RMPA, SPNO, SPSO, SRMV, SRMW, SRSO, SRTV, and SRVC",
|
104
|
+
"type": "string"
|
105
|
+
},
|
106
|
+
"emissions_future_year": {
|
107
|
+
"description": "Future Year. Options are: 2020 to 2050 in two year increments",
|
108
|
+
"type": "string"
|
109
|
+
},
|
110
|
+
"emissions_hourly_historical_year": {
|
111
|
+
"description": "Hourly Historical Year. Options are: 2019.",
|
112
|
+
"type": "string"
|
113
|
+
},
|
114
|
+
"emissions_annual_historical_year": {
|
115
|
+
"description": "Annual Historical Year. Options are: 2007, 2009, 2010, 2012, 2014, 2016, 2018, and 2019.",
|
116
|
+
"type": "string"
|
117
|
+
},
|
118
|
+
"user_data": {
|
119
|
+
"description": "Arbitrary user data"
|
120
|
+
}
|
121
|
+
},
|
122
|
+
"required": [
|
123
|
+
"latitude",
|
124
|
+
"longitude"
|
125
|
+
],
|
126
|
+
"additionalProperties": false
|
127
|
+
}
|
@@ -0,0 +1,33 @@
|
|
1
|
+
{
|
2
|
+
"$schema": "http://json-schema.org/draft-04/schema#",
|
3
|
+
"id": "http://json-schema.org/openstudio-urban-modeling/switch_properties.json#",
|
4
|
+
"title": "URBANopt Switch",
|
5
|
+
"description": "Schema for an URBANopt RNM Switch object",
|
6
|
+
"type": "object",
|
7
|
+
"properties": {
|
8
|
+
"Code": {
|
9
|
+
"description": "Unique name/ID of the feature in the RNM analysis.",
|
10
|
+
"type": "string"
|
11
|
+
},
|
12
|
+
"NodeA": {
|
13
|
+
"description": "Name/ID of the RNM 'From' Node it is associated with.",
|
14
|
+
"type": "string"
|
15
|
+
},
|
16
|
+
"NodeB": {
|
17
|
+
"description": "Name/ID of the RNM 'To' Node it is associated with.",
|
18
|
+
"type": "string"
|
19
|
+
},
|
20
|
+
"NomV_kV": {
|
21
|
+
"description": "Nominal Voltage in kV.",
|
22
|
+
"type": "string"
|
23
|
+
},
|
24
|
+
"Subest": {
|
25
|
+
"description": "Substation the switch is connected to.",
|
26
|
+
"type": "string"
|
27
|
+
},
|
28
|
+
"Feeder": {
|
29
|
+
"description": "Feeder the switch is connected to.",
|
30
|
+
"type": "string"
|
31
|
+
}
|
32
|
+
}
|
33
|
+
}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
# *********************************************************************************
|
2
|
-
# URBANopt™, Copyright (c) 2019-
|
2
|
+
# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other
|
3
3
|
# contributors. All rights reserved.
|
4
4
|
|
5
5
|
# Redistribution and use in source and binary forms, with or without modification,
|
@@ -1,5 +1,5 @@
|
|
1
1
|
# *********************************************************************************
|
2
|
-
# URBANopt™, Copyright (c) 2019-
|
2
|
+
# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other
|
3
3
|
# contributors. All rights reserved.
|
4
4
|
|
5
5
|
# Redistribution and use in source and binary forms, with or without modification,
|
@@ -1,5 +1,5 @@
|
|
1
1
|
# *********************************************************************************
|
2
|
-
# URBANopt™, Copyright (c) 2019-
|
2
|
+
# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other
|
3
3
|
# contributors. All rights reserved.
|
4
4
|
|
5
5
|
# Redistribution and use in source and binary forms, with or without modification,
|
@@ -40,6 +40,6 @@
|
|
40
40
|
|
41
41
|
module URBANopt
|
42
42
|
module GeoJSON
|
43
|
-
VERSION = '0.
|
43
|
+
VERSION = '0.8.0'.freeze
|
44
44
|
end
|
45
45
|
end
|
@@ -1,5 +1,5 @@
|
|
1
1
|
# *********************************************************************************
|
2
|
-
# URBANopt™, Copyright (c) 2019-
|
2
|
+
# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other
|
3
3
|
# contributors. All rights reserved.
|
4
4
|
|
5
5
|
# Redistribution and use in source and binary forms, with or without modification,
|
data/lib/urbanopt/geojson.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
# *********************************************************************************
|
2
|
-
# URBANopt™, Copyright (c) 2019-
|
2
|
+
# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other
|
3
3
|
# contributors. All rights reserved.
|
4
4
|
|
5
5
|
# Redistribution and use in source and binary forms, with or without modification,
|
data/lib/urbanopt-geojson.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
# *********************************************************************************
|
2
|
-
# URBANopt™, Copyright (c) 2019-
|
2
|
+
# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other
|
3
3
|
# contributors. All rights reserved.
|
4
4
|
|
5
5
|
# Redistribution and use in source and binary forms, with or without modification,
|
@@ -27,8 +27,8 @@ Gem::Specification.new do |spec|
|
|
27
27
|
|
28
28
|
spec.add_development_dependency 'bundler', '>= 2.1.0'
|
29
29
|
spec.add_development_dependency 'rake', '~> 13.0'
|
30
|
-
spec.add_development_dependency 'rspec', '~> 3.
|
30
|
+
spec.add_development_dependency 'rspec', '~> 3.9'
|
31
31
|
|
32
32
|
spec.add_runtime_dependency 'json-schema', '~> 2.8'
|
33
|
-
spec.add_runtime_dependency 'urbanopt-core', '~> 0.
|
33
|
+
spec.add_runtime_dependency 'urbanopt-core', '~> 0.8.0'
|
34
34
|
end
|
metadata
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: urbanopt-geojson
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tanushree Charan
|
8
8
|
- Nicholas Long
|
9
9
|
- Dan Macumber
|
10
|
-
autorequire:
|
10
|
+
autorequire:
|
11
11
|
bindir: exe
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2022-05-13 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: bundler
|
@@ -46,14 +46,14 @@ dependencies:
|
|
46
46
|
requirements:
|
47
47
|
- - "~>"
|
48
48
|
- !ruby/object:Gem::Version
|
49
|
-
version: '3.
|
49
|
+
version: '3.9'
|
50
50
|
type: :development
|
51
51
|
prerelease: false
|
52
52
|
version_requirements: !ruby/object:Gem::Requirement
|
53
53
|
requirements:
|
54
54
|
- - "~>"
|
55
55
|
- !ruby/object:Gem::Version
|
56
|
-
version: '3.
|
56
|
+
version: '3.9'
|
57
57
|
- !ruby/object:Gem::Dependency
|
58
58
|
name: json-schema
|
59
59
|
requirement: !ruby/object:Gem::Requirement
|
@@ -74,14 +74,14 @@ dependencies:
|
|
74
74
|
requirements:
|
75
75
|
- - "~>"
|
76
76
|
- !ruby/object:Gem::Version
|
77
|
-
version: 0.
|
77
|
+
version: 0.8.0
|
78
78
|
type: :runtime
|
79
79
|
prerelease: false
|
80
80
|
version_requirements: !ruby/object:Gem::Requirement
|
81
81
|
requirements:
|
82
82
|
- - "~>"
|
83
83
|
- !ruby/object:Gem::Version
|
84
|
-
version: 0.
|
84
|
+
version: 0.8.0
|
85
85
|
description: Library and measures to translate URBANopt GeoJSON format to OpenStudio
|
86
86
|
email:
|
87
87
|
- tanushree.charan@nrel.gov
|
@@ -167,13 +167,22 @@ files:
|
|
167
167
|
- lib/urbanopt/geojson/model.rb
|
168
168
|
- lib/urbanopt/geojson/region.rb
|
169
169
|
- lib/urbanopt/geojson/scale_area.rb
|
170
|
+
- lib/urbanopt/geojson/schema/breaker_properties.json
|
170
171
|
- lib/urbanopt/geojson/schema/building_properties.json
|
172
|
+
- lib/urbanopt/geojson/schema/capacitor_properties.json
|
173
|
+
- lib/urbanopt/geojson/schema/consumer_properties.json
|
174
|
+
- lib/urbanopt/geojson/schema/distribution_generator.json
|
175
|
+
- lib/urbanopt/geojson/schema/distribution_transformer.json
|
171
176
|
- lib/urbanopt/geojson/schema/district_system_properties.json
|
177
|
+
- lib/urbanopt/geojson/schema/dummy_node_properties.json
|
172
178
|
- lib/urbanopt/geojson/schema/electrical_connector_properties.json
|
173
179
|
- lib/urbanopt/geojson/schema/electrical_junction_properties.json
|
174
180
|
- lib/urbanopt/geojson/schema/geojson_schema.json
|
181
|
+
- lib/urbanopt/geojson/schema/hvmv_substation_properties.json
|
182
|
+
- lib/urbanopt/geojson/schema/line_properties.json
|
175
183
|
- lib/urbanopt/geojson/schema/region_properties.json
|
176
184
|
- lib/urbanopt/geojson/schema/site_properties.json
|
185
|
+
- lib/urbanopt/geojson/schema/switch_properties.json
|
177
186
|
- lib/urbanopt/geojson/schema/thermal_connector_properties.json
|
178
187
|
- lib/urbanopt/geojson/schema/thermal_junction_properties.json
|
179
188
|
- lib/urbanopt/geojson/update_areas.rb
|
@@ -190,7 +199,7 @@ homepage: https://github.com/urbanopt/urbanopt-geojson-gem
|
|
190
199
|
licenses:
|
191
200
|
- Nonstandard
|
192
201
|
metadata: {}
|
193
|
-
post_install_message:
|
202
|
+
post_install_message:
|
194
203
|
rdoc_options: []
|
195
204
|
require_paths:
|
196
205
|
- lib
|
@@ -206,7 +215,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
206
215
|
version: '0'
|
207
216
|
requirements: []
|
208
217
|
rubygems_version: 3.1.4
|
209
|
-
signing_key:
|
218
|
+
signing_key:
|
210
219
|
specification_version: 4
|
211
220
|
summary: Translate URBANopt GeoJSON format to OpenStudio
|
212
221
|
test_files: []
|