urbanopt-geojson 0.6.0 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/urbanopt/geojson/feature.rb +6 -3
- data/lib/urbanopt/geojson/helper.rb +4 -1
- data/lib/urbanopt/geojson/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1dfd7b2235f50e9b2b92cf8ea2dc881f4acaef5780efdad52e62a4374da0ccea
|
4
|
+
data.tar.gz: cf1e4886672459a81392742d27e66eeffe4fda5219fa2bd21dedcfd0e9d84495
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bafdbbd705821f682caa45689d4d5ab754359d140c26cf08543ca4ec5e4033c17241c11fe0fe1e31cf7cf8b6b201d2e9fe4d9c8bcfab1515fcd6b225cfec561f
|
7
|
+
data.tar.gz: 0fec6b2304ad32b7d7443ca297c8b01062e9294853e15aed0d34d6c774581629bd4a2ebb5ba3004f8f46737385c98bcf4b122f57ebd1a8aa01c4297a5a5f99e6
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
# URBANopt GeoJSON Gem
|
2
2
|
|
3
|
+
## Version 0.6.1
|
4
|
+
|
5
|
+
Date Range: 04/27/21 - 04/29/21
|
6
|
+
|
7
|
+
- Fixed [#155]( https://github.com/urbanopt/urbanopt-geojson-gem/issues/155 ), Adjacent buildings do not show up as shading objects
|
8
|
+
- Fixed [#158]( https://github.com/urbanopt/urbanopt-geojson-gem/issues/158 ), Fix coordinates
|
9
|
+
|
3
10
|
## Version 0.6.0
|
4
11
|
|
5
12
|
Date Range: 04/02/21 - 04/26/21
|
@@ -261,10 +261,12 @@ module URBANopt
|
|
261
261
|
end
|
262
262
|
|
263
263
|
##
|
264
|
-
# Used to determine the centroid for the feature's coordinates.
|
264
|
+
# Used to determine the centroid for the feature's geojson coordinates.
|
265
265
|
#
|
266
266
|
# [Parameters]
|
267
267
|
# * +vertices+ - The first set polygon vertices in the array of feature coordinates.
|
268
|
+
# [Returns]
|
269
|
+
# Returns Feature centroid coordinates [long, lat]
|
268
270
|
def find_feature_center(vertices)
|
269
271
|
number_of_locations = vertices.length
|
270
272
|
|
@@ -288,8 +290,9 @@ module URBANopt
|
|
288
290
|
central_square_root = Math.sqrt(x * x + y * y)
|
289
291
|
central_latitude = Math.atan2(z, central_square_root)
|
290
292
|
|
291
|
-
[
|
292
|
-
|
293
|
+
[central_longitude * 180 / Math::PI,
|
294
|
+
central_latitude * 180 / Math::PI]
|
295
|
+
|
293
296
|
end
|
294
297
|
|
295
298
|
private
|
@@ -308,8 +308,11 @@ module URBANopt
|
|
308
308
|
# find the polygon of the other_building by passing it to the get_multi_polygons method
|
309
309
|
other_building_points = building.other_points(other_building, other_height, origin_lat_lon, runner, zoning)
|
310
310
|
shadowed = URBANopt::GeoJSON::Helper.is_shadowed(feature_points, other_building_points, origin_lat_lon)
|
311
|
+
if shadowed
|
312
|
+
runner.registerInfo("Feature #{other_building[:properties][:id]} is acting as shading object for #{building.id}")
|
313
|
+
end
|
311
314
|
next unless shadowed
|
312
|
-
new_building = building.create_other_building(:space_per_building, model, origin_lat_lon, runner, zoning, other_building)
|
315
|
+
new_building = building.create_other_building(:space_per_building, model, origin_lat_lon, runner, zoning, 0, other_building)
|
313
316
|
if new_building.nil? || new_building.empty?
|
314
317
|
runner.registerWarning("Failed to create spaces for other building '#{name}'")
|
315
318
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: urbanopt-geojson
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tanushree Charan
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: exe
|
12
12
|
cert_chain: []
|
13
|
-
date: 2021-04-
|
13
|
+
date: 2021-04-30 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: bundler
|
@@ -205,7 +205,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
205
205
|
- !ruby/object:Gem::Version
|
206
206
|
version: '0'
|
207
207
|
requirements: []
|
208
|
-
rubygems_version: 3.1.
|
208
|
+
rubygems_version: 3.1.4
|
209
209
|
signing_key:
|
210
210
|
specification_version: 4
|
211
211
|
summary: Translate URBANopt GeoJSON format to OpenStudio
|