diff --git a/Pipfile b/Pipfile index b9226b88..1ead9c0e 100644 --- a/Pipfile +++ b/Pipfile @@ -17,6 +17,7 @@ numpy = "==1.26.3" dash-iconify = "*" scipy = "==1.12.0" kgcpy = "*" +dash-leaflet = "*" [dev-packages] cleanpy = "*" diff --git a/Pipfile.lock b/Pipfile.lock index 9f7cbcce..8b529790 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "8b3476b40cfb4b0362e33cbc5b9503d9d002fd6b796ca6d944a1dd7057767d2a" + "sha256": "641b887f2d3db789e9cfb3e19286dca9314d546ced91d66ead226669b3683c98" }, "pipfile-spec": 6, "requires": { @@ -34,11 +34,11 @@ }, "certifi": { "hashes": [ - "sha256:3cb2210c8f88ba2318d29b0388d1023c8492ff72ecdde4ebdaddbb13a31b1c4a", - "sha256:8d455352a37b71bf76a79caa83a3d6c25afee4a385d632127b6afb3963f1c580" + "sha256:3c52e209ba0a4ad7aebe60436a4ab349c39e1e602e8c134221e546902ad25897", + "sha256:69dea482ab64caa7b9f6aba1c6bf48bb6a5448d1c0f1b17ab42ad8c763a5344d" ], "markers": "python_version >= '3.7'", - "version": "==2026.4.22" + "version": "==2026.5.20" }, "charset-normalizer": { "hashes": [ @@ -177,11 +177,11 @@ }, "click": { "hashes": [ - "sha256:398329ad4837b2ff7cbe1dd166a4c0f8900c3ca3a218de04466f38f6497f18a2", - "sha256:a2bf429bb3033c89fa4936ffb35d5cb471e3719e1f3c8a7c3fff0b8314305613" + "sha256:40c50b7c6c6adac2823d411041ec84f3f103f1b280d5e9ce0d7f998995832f81", + "sha256:638f1338fe1235c8f4e008e4a8a254fb5c5fbdcbb40ece3c9142ebb78e792973" ], "markers": "python_version >= '3.10'", - "version": "==8.3.3" + "version": "==8.4.0" }, "dash": { "hashes": [ @@ -218,6 +218,14 @@ "index": "pypi", "version": "==0.1.2" }, + "dash-leaflet": { + "hashes": [ + "sha256:79a3e19b0be9a5cf23873a0cd73153de224cbd756ddb30e2ffcee9ba23875e40", + "sha256:d7d06228a868bcf11120e1f7cb95db64c29c412b743686a9a8e1b30ac54a794e" + ], + "index": "pypi", + "version": "==1.0.15" + }, "dash-mantine-components": { "hashes": [ "sha256:a54acdb8b3e7a80251e9d68947a84b0a1d16285f5ca33363dbc29f287a13ebaa", @@ -313,11 +321,11 @@ }, "idna": { "hashes": [ - "sha256:585ea8fe5d69b9181ec1afba340451fba6ba764af97026f92a91d4eef164a242", - "sha256:892ea0cde124a99ce773decba204c5552b69c3c67ffd5f232eb7696135bc8bb3" + "sha256:048adeaf8c2d788c40fee287673ccaa74c24ffd8dcf09ffa555a2fbb59f10ac8", + "sha256:ca962446ea538f7092a95e057da437618e886f4d349216d2b1e294abfdb65fdc" ], "markers": "python_version >= '3.8'", - "version": "==3.13" + "version": "==3.15" }, "importlib-metadata": { "hashes": [ @@ -849,11 +857,11 @@ }, "urllib3": { "hashes": [ - "sha256:1b62b6884944a57dbe321509ab94fd4d3b307075e0c2eae991ac71ee15ad38ed", - "sha256:bf272323e553dfb2e87d9bfd225ca7b0f467b919d7bbd355436d3fd37cb0acd4" + "sha256:231e0ec3b63ceb14667c67be60f2f2c40a518cb38b03af60abc813da26505f4c", + "sha256:9fb4c81ebbb1ce9531cce37674bbc6f1360472bc18ca9a553ede278ef7276897" ], - "markers": "python_version >= '3.9'", - "version": "==2.6.3" + "markers": "python_version >= '3.10'", + "version": "==2.7.0" }, "werkzeug": { "hashes": [ @@ -865,11 +873,11 @@ }, "zipp": { "hashes": [ - "sha256:0b3596c50a5c700c9cb40ba8d86d9f2cc4807e9bedb06bcdf7fac85633e444dc", - "sha256:32120e378d32cd9714ad503c1d024619063ec28aad2248dc6672ad13edfa5110" + "sha256:25ad4e16390cd314347dd8f1de67a2ac538ae658ed4ab9db16029c07c188e97f", + "sha256:4cb57381f544315db7688e976e922a2b18cdb513d21cc194eb42232ba2a3e602" ], - "markers": "python_version >= '3.9'", - "version": "==3.23.1" + "markers": "python_version >= '3.10'", + "version": "==4.1.0" } }, "develop": { diff --git a/app.py b/app.py index 6eff14d5..0317e3da 100644 --- a/app.py +++ b/app.py @@ -1,5 +1,6 @@ import dash_bootstrap_components as dbc from dash_extensions.enrich import DashProxy, ServersideOutputTransform +from flask import send_file app = DashProxy( __name__, @@ -10,6 +11,22 @@ ) TIMEOUT = 600 + +@app.server.route("/geojson/locations") +def serve_locations_geojson(): + return ( + send_file( + "assets/data/locations.geojson.gz", + mimetype="application/json", + as_attachment=False, + download_name="locations.geojson", + conditional=True, + ), + 200, + {"Content-Encoding": "gzip", "Cache-Control": "no-cache"}, + ) + + app.index_string = """ diff --git a/assets/animations/page_not_found.json b/assets/animations/page_not_found.json index aa8b09b0..69624caf 100644 --- a/assets/animations/page_not_found.json +++ b/assets/animations/page_not_found.json @@ -1 +1,2849 @@ -{"v":"5.7.1","fr":60,"ip":0,"op":240,"w":1080,"h":1080,"nm":"404-Error pages-18","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Search tool Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[415.25,484.5,0],"to":[37.5,-0.333,0],"ti":[-0.667,0.167,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.3,"y":0},"t":60,"s":[662.25,519.5,0],"to":[0.667,-0.167,0],"ti":[0.667,-0.167,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.3,"y":0},"t":120,"s":[416.25,588.5,0],"to":[-0.667,0.167,0],"ti":[-0.667,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.3,"y":0},"t":180,"s":[652.25,592.5,0],"to":[0.667,0,0],"ti":[26,32.833,0]},{"t":240,"s":[415.25,484.5,0]}],"ix":2},"a":{"a":0,"k":[152.86,153.095,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-59.021],[59.02,0],[0,59.02],[-59.02,0]],"o":[[0,59.02],[-59.02,0],[0,-59.021],[59.02,0]],"v":[[106.87,0.005],[0,106.865],[-106.87,0.005],[0,-106.865]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":4,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.411999990426,0.337000020345,1],"ix":4},"o":{"a":0,"k":20,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[150.86,150.855],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[29.32,-19.039],[13.45,-2.68],[7.21,0],[0,59.019],[-59.02,0],[0,-59.021]],"o":[[-11.11,7.23],[-6.81,1.37],[-59.02,0],[0,-59.021],[59.02,0],[0,37.58]],"v":[[58.15,89.66],[21.05,104.78],[0,106.86],[-106.87,0.001],[0,-106.869],[106.87,0.001]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[77.79,0],[0,-77.801],[-77.8,0],[-11.5,3.04],[-11.33,6.871],[0,51.12]],"o":[[-77.8,0],[0,77.79],[12.45,0],[13.13,-3.46],[40.75,-24.679],[0,-77.801]],"v":[[0,-140.86],[-140.86,0.001],[0,140.86],[36.03,136.2],[72.88,120.56],[140.86,0.001]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"st","c":{"a":0,"k":[0.039000002543,0,0.122000002394,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[150.86,150.86],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":4,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[29.32,-19.039],[13.45,-2.68],[7.21,0],[0,59.019],[-59.02,0],[0,-59.021]],"o":[[-11.11,7.23],[-6.81,1.37],[-59.02,0],[0,-59.021],[59.02,0],[0,37.58]],"v":[[58.15,89.66],[21.05,104.78],[0,106.86],[-106.87,0.001],[0,-106.869],[106.87,0.001]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[77.79,0],[0,-77.801],[-77.8,0],[-11.5,3.04],[-11.33,6.871],[0,51.12]],"o":[[-77.8,0],[0,77.79],[12.45,0],[13.13,-3.46],[40.75,-24.679],[0,-77.801]],"v":[[0,-140.86],[-140.86,0.001],[0,140.86],[36.03,136.2],[72.88,120.56],[140.86,0.001]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"mm","mm":4,"nm":"Merge Paths 2","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.411999990426,0.337000020345,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[150.86,150.86],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":5,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[9.97,-4.76],[2.88,0],[3.43,7.2],[0,0],[-11.33,6.87],[0,0]],"o":[[-2.78,1.319],[-7.47,0],[0,0],[13.13,-3.46],[0,0],[4.75,9.97]],"v":[[36.66,75.435],[28.07,77.385],[10,65.975],[-50.86,-61.746],[-14.01,-77.385],[46.11,48.775]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.039000002543,0,0.122000002394,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[237.75,348.806],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[9.97,-4.76],[2.88,0],[3.43,7.2],[0,0],[-11.33,6.87],[0,0]],"o":[[-2.78,1.319],[-7.47,0],[0,0],[13.13,-3.46],[0,0],[4.75,9.97]],"v":[[36.66,75.435],[28.07,77.385],[10,65.975],[-50.86,-61.746],[-14.01,-77.385],[46.11,48.775]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":4,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.411999990426,0.337000020345,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[237.75,348.806],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":3,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":480,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Lines Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[558.26,747.528,0],"ix":2},"a":{"a":0,"k":[450.1,5,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[895.201,5],[5,5]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.039000002543,0,0.122000002394,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":10,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":480,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"404 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[546.905,589.317,0],"ix":2},"a":{"a":0,"k":[412.228,168.692,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.465,20.507],[0,0],[10.743,-20.021],[0,0],[0,0]],"o":[[0,0],[0,-19.043],[0,0],[-10.254,20.507],[0,0],[0,0],[0,0]],"v":[[16.114,27.344],[16.114,-42.968],[18.555,-102.051],[16.602,-102.051],[-12.695,-42.968],[-55.174,26.368],[-55.174,27.344]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[16.114,158.692],[16.114,83.007],[-124.511,83.007],[-124.511,34.669],[-4.393,-158.692],[86.427,-158.692],[86.427,27.344],[124.511,27.344],[124.511,83.007],[86.427,83.007],[86.427,158.692]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"st","c":{"a":0,"k":[0.039000002543,0,0.122000002394,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[689.945,168.692],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.465,20.507],[0,0],[10.743,-20.021],[0,0],[0,0]],"o":[[0,0],[0,-19.043],[0,0],[-10.254,20.507],[0,0],[0,0],[0,0]],"v":[[16.114,27.344],[16.114,-42.968],[18.555,-102.051],[16.602,-102.051],[-12.695,-42.968],[-55.174,26.368],[-55.174,27.344]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[16.114,158.692],[16.114,83.007],[-124.511,83.007],[-124.511,34.669],[-4.393,-158.692],[86.427,-158.692],[86.427,27.344],[124.511,27.344],[124.511,83.007],[86.427,83.007],[86.427,158.692]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"mm","mm":4,"nm":"Merge Paths 2","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.411999990426,0.337000020345,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[689.945,168.692],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":5,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.465,20.507],[0,0],[10.743,-20.021],[0,0],[0,0]],"o":[[0,0],[0,-19.043],[0,0],[-10.254,20.507],[0,0],[0,0],[0,0]],"v":[[16.114,27.344],[16.114,-42.968],[18.555,-102.051],[16.602,-102.051],[-12.695,-42.968],[-55.174,26.368],[-55.174,27.344]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[16.114,158.692],[16.114,83.007],[-124.511,83.007],[-124.511,34.669],[-4.394,-158.692],[86.426,-158.692],[86.426,27.344],[124.511,27.344],[124.511,83.007],[86.426,83.007],[86.426,158.692]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"st","c":{"a":0,"k":[0.039000002543,0,0.122000002394,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[134.511,168.692],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":4,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.465,20.507],[0,0],[10.743,-20.021],[0,0],[0,0]],"o":[[0,0],[0,-19.043],[0,0],[-10.254,20.507],[0,0],[0,0],[0,0]],"v":[[16.114,27.344],[16.114,-42.968],[18.555,-102.051],[16.602,-102.051],[-12.695,-42.968],[-55.174,26.368],[-55.174,27.344]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[16.114,158.692],[16.114,83.007],[-124.511,83.007],[-124.511,34.669],[-4.394,-158.692],[86.426,-158.692],[86.426,27.344],[124.511,27.344],[124.511,83.007],[86.426,83.007],[86.426,158.692]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"mm","mm":4,"nm":"Merge Paths 2","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.411999990426,0.337000020345,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[134.511,168.692],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":5,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":480,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"Mask","parent":1,"td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[151.175,150.661,0],"ix":2},"a":{"a":0,"k":[6.25,-73.25,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[207.5,207.5],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.411999990426,0.337000020345,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[6.25,-73.25],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[102.387,102.387],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":480,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"PAGE NOT FOUND Outlines","tt":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[540,540,0],"ix":2},"a":{"a":0,"k":[1.095,-13.131,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.452,2.953],[2.652,1.769],[2.952,0.742],[4.073,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-2.037,0.411],[-1.737,0.727],[-1.437,1.042],[-1.2,1.231],[-1.042,2.968],[0,3.284]],"o":[[-1.453,-2.952],[-2.4,-1.61],[-2.953,-0.742],[0,0],[0,0],[0,0],[0,0],[0,0],[2.526,0],[2.037,-0.41],[1.736,-0.726],[1.436,-1.042],[1.957,-1.989],[1.042,-2.968],[0,-4.073]],"v":[[-71.661,-58.802],[-77.818,-65.882],[-85.846,-69.411],[-96.384,-70.524],[-123.76,-70.524],[-123.76,0],[-106.046,0],[-106.046,-23.066],[-96.763,-23.066],[-89.919,-23.682],[-84.259,-25.387],[-79.499,-28.039],[-75.544,-31.449],[-71.045,-38.885],[-69.482,-48.263]],"c":true},"ix":2},"nm":"P","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.426,-1.263],[1.2,-1.168],[1.058,-0.457],[0.947,-0.158],[1.484,-0.031],[1.673,0],[0,0],[0,0],[0,0],[-1.532,-0.11],[-1.674,-0.726],[-0.947,-1.436],[0,-1.989]],"o":[[-0.426,1.263],[-0.568,0.568],[-1.058,0.458],[-1.106,0.189],[-1.485,0.032],[0,0],[0,0],[0,0],[2.621,0],[1.531,0.111],[1.326,0.537],[0.947,1.437],[0,2.148]],"v":[[-88.309,-42.722],[-90.748,-39.075],[-93.187,-37.535],[-96.195,-36.612],[-100.079,-36.28],[-104.815,-36.233],[-106.046,-36.233],[-106.046,-57.357],[-103.536,-57.357],[-97.308,-57.191],[-92.5,-55.936],[-89.09,-52.976],[-87.669,-47.837]],"c":true},"ix":2},"nm":"P","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.039215686275,0,0.121568634931,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"P","np":5,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-49.826,0],[-45.421,-14.398],[-23.255,-14.398],[-18.851,0],[-0.616,0],[-24.439,-70.524],[-43.764,-70.524],[-67.587,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-41.538,-27.187],[-34.338,-50.442],[-27.139,-27.187]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.039215686275,0,0.121568634931,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0.853,-0.031],[0.631,0],[4.136,3.916],[0,8.241],[-1.089,2.905],[-1.863,1.895],[-2.495,0.947],[-3.031,0],[-2.321,-0.726],[-1.769,-1.01],[-1.595,-1.215],[-0.853,-0.663],[0,0],[0,0],[3.694,1.121],[5.904,0],[6.583,-6.662],[0,-11.051],[-6.583,-6.394],[-11.083,0],[-4.942,1.2],[-3.095,1.263]],"o":[[0,0],[0,0],[0,0],[0,0],[-0.632,0.064],[-0.853,0.032],[-7.168,0],[-4.137,-3.915],[0,-3.852],[1.089,-2.905],[1.957,-1.957],[2.494,-0.947],[2.589,0],[2.321,0.727],[1.516,0.853],[1.594,1.216],[0,0],[0,0],[-3.947,-1.926],[-3.694,-1.12],[-11.431,0],[-6.583,6.663],[0,11.746],[6.583,6.394],[4.799,0],[4.941,-1.2],[0,0]],"v":[[65.314,-38.743],[34.48,-38.743],[34.48,-25.529],[48.168,-25.529],[48.168,-11.699],[45.942,-11.557],[43.716,-11.509],[26.76,-17.382],[20.556,-35.617],[22.19,-45.753],[26.618,-52.952],[33.296,-57.31],[41.585,-58.73],[48.95,-57.641],[55.083,-55.036],[59.749,-51.934],[63.419,-49.116],[65.03,-49.116],[65.03,-65.646],[53.568,-70.216],[39.169,-71.897],[12.149,-61.904],[2.273,-35.333],[12.149,-8.123],[38.648,1.468],[53.26,-0.332],[65.314,-4.026]],"c":true},"ix":2},"nm":"G","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.039215686275,0,0.121568634931,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"G","np":3,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[126.365,0],[126.365,-13.451],[96.29,-13.451],[96.29,-31.26],[123.997,-31.26],[123.997,-44.711],[96.29,-44.711],[96.29,-57.073],[126.365,-57.073],[126.365,-70.524],[78.67,-70.524],[78.67,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.039215686275,0,0.121568634931,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":3,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-98.007,6.464],[-105.021,6.464],[-105.021,23.957],[-114.762,6.464],[-124.175,6.464],[-124.175,37],[-117.161,37],[-117.161,15.713],[-105.39,37],[-98.007,37]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.039215686275,0,0.121568634931,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,8],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":3,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[2.638,2.837],[4.594,0],[2.625,-2.851],[0,-4.908],[-2.625,-2.864],[-4.608,0],[-2.639,2.83],[0,4.936]],"o":[[-2.639,-2.837],[-4.608,0],[-2.625,2.851],[0,4.867],[2.625,2.864],[4.594,0],[2.638,-2.83],[0,-4.935]],"v":[[-67.963,10.083],[-78.812,5.828],[-89.66,10.104],[-93.598,21.742],[-89.66,33.339],[-78.812,37.636],[-67.963,33.391],[-64.005,21.742]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.355,-1.182],[0.656,-0.889],[0.848,-0.39],[0.902,0],[0.834,0.362],[0.656,0.848],[0.369,1.238],[0,1.873],[-0.39,1.313],[-0.629,0.793],[-0.766,0.335],[-0.943,0],[-0.827,-0.362],[-0.656,-0.834],[-0.376,-1.278],[0,-1.818]],"o":[[-0.356,1.183],[-0.615,0.82],[-0.848,0.39],[-0.889,0],[-0.834,-0.362],[-0.643,-0.834],[-0.369,-1.237],[0,-1.818],[0.39,-1.313],[0.711,-0.861],[0.766,-0.335],[0.889,0],[0.827,0.362],[0.629,0.82],[0.376,1.279],[0,1.914]],"v":[[-72.454,26.367],[-73.972,29.474],[-76.166,31.289],[-78.791,31.873],[-81.375,31.33],[-83.61,29.515],[-85.128,26.408],[-85.682,21.742],[-85.097,17.046],[-83.569,13.888],[-81.354,12.093],[-78.791,11.591],[-76.217,12.134],[-73.992,13.929],[-72.485,17.077],[-71.921,21.722]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.039215686275,0,0.121568634931,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,8],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"O","np":5,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-45.938,37],[-45.938,12.288],[-36.914,12.288],[-36.914,6.464],[-62.631,6.464],[-62.631,12.288],[-53.607,12.288],[-53.607,37]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.039215686275,0,0.121568634931,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,8],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"T","np":3,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-1.005,6.464],[-21.451,6.464],[-21.451,37],[-13.822,37],[-13.822,23.875],[-2.03,23.875],[-2.03,18.051],[-13.822,18.051],[-13.822,12.288],[-1.005,12.288]],"c":true},"ix":2},"nm":"F","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.039215686275,0,0.121568634931,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,8],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"F","np":3,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[2.638,2.837],[4.594,0],[2.625,-2.851],[0,-4.908],[-2.625,-2.864],[-4.608,0],[-2.639,2.83],[0,4.936]],"o":[[-2.639,-2.837],[-4.608,0],[-2.625,2.851],[0,4.867],[2.625,2.864],[4.594,0],[2.638,-2.83],[0,-4.935]],"v":[[26.804,10.083],[15.955,5.828],[5.106,10.104],[1.169,21.742],[5.106,33.339],[15.955,37.636],[26.804,33.391],[30.762,21.742]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.355,-1.182],[0.656,-0.889],[0.848,-0.39],[0.902,0],[0.834,0.362],[0.656,0.848],[0.369,1.238],[0,1.873],[-0.39,1.313],[-0.629,0.793],[-0.766,0.335],[-0.943,0],[-0.827,-0.362],[-0.656,-0.834],[-0.376,-1.278],[0,-1.818]],"o":[[-0.356,1.183],[-0.615,0.82],[-0.848,0.39],[-0.889,0],[-0.834,-0.362],[-0.643,-0.834],[-0.369,-1.237],[0,-1.818],[0.39,-1.313],[0.711,-0.861],[0.766,-0.335],[0.889,0],[0.827,0.362],[0.629,0.82],[0.376,1.279],[0,1.914]],"v":[[22.313,26.367],[20.795,29.474],[18.601,31.289],[15.976,31.873],[13.392,31.33],[11.156,29.515],[9.639,26.408],[9.085,21.742],[9.669,17.046],[11.197,13.888],[13.412,12.093],[15.976,11.591],[18.549,12.134],[20.774,13.929],[22.282,17.077],[22.846,21.722]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.039215686275,0,0.121568634931,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,8],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"O","np":5,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.153,2.017],[0,3.76],[0,0],[0,0],[0,0],[0.827,-0.998],[1.764,0],[0.8,1.039],[0,2.119],[0,0],[0,0],[0,0],[-2.208,-1.982],[-4.102,0]],"o":[[2.153,-2.016],[0,0],[0,0],[0,0],[0,2.201],[-0.827,0.998],[-1.805,0],[-0.8,-1.039],[0,0],[0,0],[0,0],[0,3.814],[2.208,1.983],[4.225,0]],"v":[[57.207,34.611],[60.437,25.946],[60.437,6.464],[52.767,6.464],[52.767,25.516],[51.526,30.314],[47.64,31.812],[43.733,30.253],[42.533,25.516],[42.533,6.464],[34.863,6.464],[34.863,25.967],[38.175,34.662],[47.64,37.636]],"c":true},"ix":2},"nm":"U","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.039215686275,0,0.121568634931,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,8],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"U","np":3,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[92.49,6.464],[85.477,6.464],[85.477,23.957],[75.735,6.464],[66.322,6.464],[66.322,37],[73.336,37],[73.336,15.713],[85.107,37],[92.49,37]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.039215686275,0,0.121568634931,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,7],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":3,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.162,2.181],[2.01,1.285],[1.873,0.274],[2.146,0],[0,0],[0,0],[0,0],[-1.866,0.294],[-1.586,1.025],[-1.244,2.249],[0,2.844]],"o":[[-1.162,-2.181],[-1.641,-1.053],[-1.873,-0.273],[0,0],[0,0],[0,0],[2.105,0],[1.866,-0.294],[1.9,-1.203],[1.244,-2.249],[0,-2.953]],"v":[[124.216,14.062],[119.458,8.863],[114.188,6.874],[108.158,6.464],[98.684,6.464],[98.684,37],[108.24,37],[114.198,36.559],[119.376,34.58],[124.093,29.402],[125.959,21.763]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.656,-1.395],[1.258,-0.793],[1.182,-0.062],[1.723,0],[0,0],[0,0],[0,0],[-1.142,-0.054],[-1.039,-0.574],[-0.691,-1.428],[0,-2.01]],"o":[[-0.656,1.395],[-1.066,0.67],[-1.183,0.062],[0,0],[0,0],[0,0],[1.586,0],[1.141,0.055],[1.436,0.807],[0.69,1.429],[0,2.01]],"v":[[117.1,26.808],[114.229,30.089],[110.855,31.186],[106.497,31.278],[106.354,31.278],[106.354,12.165],[106.497,12.165],[110.588,12.247],[113.859,13.19],[117.048,16.543],[118.084,21.701]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.039215686275,0,0.121568634931,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,7],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"D","np":5,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":480,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"BG","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[763,846,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[1080,1080],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"fl","c":{"a":0,"k":[0.980392216701,0.996078491211,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-223,-306],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Rectangle 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":480,"st":0,"bm":0}],"markers":[]} \ No newline at end of file +{ + "v": "5.7.1", + "fr": 60, + "ip": 0, + "op": 240, + "w": 1080, + "h": 1080, + "nm": "404-Error pages-18", + "ddd": 0, + "assets": [], + "layers": [ + { + "ddd": 0, + "ind": 1, + "ty": 4, + "nm": "Search tool Outlines", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.3, "y": 0 }, + "t": 0, + "s": [415.25, 484.5, 0], + "to": [37.5, -0.333, 0], + "ti": [-0.667, 0.167, 0] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.3, "y": 0 }, + "t": 60, + "s": [662.25, 519.5, 0], + "to": [0.667, -0.167, 0], + "ti": [0.667, -0.167, 0] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.3, "y": 0 }, + "t": 120, + "s": [416.25, 588.5, 0], + "to": [-0.667, 0.167, 0], + "ti": [-0.667, 0, 0] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.3, "y": 0 }, + "t": 180, + "s": [652.25, 592.5, 0], + "to": [0.667, 0, 0], + "ti": [26, 32.833, 0] + }, + { "t": 240, "s": [415.25, 484.5, 0] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [152.86, 153.095, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, -59.021], + [59.02, 0], + [0, 59.02], + [-59.02, 0] + ], + "o": [ + [0, 59.02], + [-59.02, 0], + [0, -59.021], + [59.02, 0] + ], + "v": [ + [106.87, 0.005], + [0, 106.865], + [-106.87, 0.005], + [0, -106.865] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "mm", + "mm": 4, + "nm": "Merge Paths 1", + "mn": "ADBE Vector Filter - Merge", + "hd": false + }, + { + "ty": "fl", + "c": { + "a": 0, + "k": [1, 0.411999990426, 0.337000020345, 1], + "ix": 4 + }, + "o": { "a": 0, "k": 20, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [150.86, 150.855], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Group 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + }, + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [29.32, -19.039], + [13.45, -2.68], + [7.21, 0], + [0, 59.019], + [-59.02, 0], + [0, -59.021] + ], + "o": [ + [-11.11, 7.23], + [-6.81, 1.37], + [-59.02, 0], + [0, -59.021], + [59.02, 0], + [0, 37.58] + ], + "v": [ + [58.15, 89.66], + [21.05, 104.78], + [0, 106.86], + [-106.87, 0.001], + [0, -106.869], + [106.87, 0.001] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ind": 1, + "ty": "sh", + "ix": 2, + "ks": { + "a": 0, + "k": { + "i": [ + [77.79, 0], + [0, -77.801], + [-77.8, 0], + [-11.5, 3.04], + [-11.33, 6.871], + [0, 51.12] + ], + "o": [ + [-77.8, 0], + [0, 77.79], + [12.45, 0], + [13.13, -3.46], + [40.75, -24.679], + [0, -77.801] + ], + "v": [ + [0, -140.86], + [-140.86, 0.001], + [0, 140.86], + [36.03, 136.2], + [72.88, 120.56], + [140.86, 0.001] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 2", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "mm", + "mm": 1, + "nm": "Merge Paths 1", + "mn": "ADBE Vector Filter - Merge", + "hd": false + }, + { + "ty": "st", + "c": { + "a": 0, + "k": [0.039000002543, 0, 0.122000002394, 1], + "ix": 3 + }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 4, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 10, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [150.86, 150.86], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Group 2", + "np": 4, + "cix": 2, + "bm": 0, + "ix": 2, + "mn": "ADBE Vector Group", + "hd": false + }, + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [29.32, -19.039], + [13.45, -2.68], + [7.21, 0], + [0, 59.019], + [-59.02, 0], + [0, -59.021] + ], + "o": [ + [-11.11, 7.23], + [-6.81, 1.37], + [-59.02, 0], + [0, -59.021], + [59.02, 0], + [0, 37.58] + ], + "v": [ + [58.15, 89.66], + [21.05, 104.78], + [0, 106.86], + [-106.87, 0.001], + [0, -106.869], + [106.87, 0.001] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ind": 1, + "ty": "sh", + "ix": 2, + "ks": { + "a": 0, + "k": { + "i": [ + [77.79, 0], + [0, -77.801], + [-77.8, 0], + [-11.5, 3.04], + [-11.33, 6.871], + [0, 51.12] + ], + "o": [ + [-77.8, 0], + [0, 77.79], + [12.45, 0], + [13.13, -3.46], + [40.75, -24.679], + [0, -77.801] + ], + "v": [ + [0, -140.86], + [-140.86, 0.001], + [0, 140.86], + [36.03, 136.2], + [72.88, 120.56], + [140.86, 0.001] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 2", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "mm", + "mm": 1, + "nm": "Merge Paths 1", + "mn": "ADBE Vector Filter - Merge", + "hd": false + }, + { + "ty": "mm", + "mm": 4, + "nm": "Merge Paths 2", + "mn": "ADBE Vector Filter - Merge", + "hd": false + }, + { + "ty": "fl", + "c": { + "a": 0, + "k": [1, 0.411999990426, 0.337000020345, 1], + "ix": 4 + }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [150.86, 150.86], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Group 3", + "np": 5, + "cix": 2, + "bm": 0, + "ix": 3, + "mn": "ADBE Vector Group", + "hd": false + }, + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [9.97, -4.76], + [2.88, 0], + [3.43, 7.2], + [0, 0], + [-11.33, 6.87], + [0, 0] + ], + "o": [ + [-2.78, 1.319], + [-7.47, 0], + [0, 0], + [13.13, -3.46], + [0, 0], + [4.75, 9.97] + ], + "v": [ + [36.66, 75.435], + [28.07, 77.385], + [10, 65.975], + [-50.86, -61.746], + [-14.01, -77.385], + [46.11, 48.775] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { + "a": 0, + "k": [0.039000002543, 0, 0.122000002394, 1], + "ix": 3 + }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 4, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 10, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [237.75, 348.806], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Group 4", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 4, + "mn": "ADBE Vector Group", + "hd": false + }, + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [9.97, -4.76], + [2.88, 0], + [3.43, 7.2], + [0, 0], + [-11.33, 6.87], + [0, 0] + ], + "o": [ + [-2.78, 1.319], + [-7.47, 0], + [0, 0], + [13.13, -3.46], + [0, 0], + [4.75, 9.97] + ], + "v": [ + [36.66, 75.435], + [28.07, 77.385], + [10, 65.975], + [-50.86, -61.746], + [-14.01, -77.385], + [46.11, 48.775] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "mm", + "mm": 4, + "nm": "Merge Paths 1", + "mn": "ADBE Vector Filter - Merge", + "hd": false + }, + { + "ty": "fl", + "c": { + "a": 0, + "k": [1, 0.411999990426, 0.337000020345, 1], + "ix": 4 + }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [237.75, 348.806], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Group 5", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 5, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 480, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 2, + "ty": 4, + "nm": "Lines Outlines", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [558.26, 747.528, 0], "ix": 2 }, + "a": { "a": 0, "k": [450.1, 5, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0] + ], + "v": [ + [895.201, 5], + [5, 5] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { + "a": 0, + "k": [0.039000002543, 0, 0.122000002394, 1], + "ix": 3 + }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 10, "ix": 5 }, + "lc": 2, + "lj": 2, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Group 1", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 480, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 3, + "ty": 4, + "nm": "404 Outlines", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [546.905, 589.317, 0], "ix": 2 }, + "a": { "a": 0, "k": [412.228, 168.692, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [0, 0], + [-1.465, 20.507], + [0, 0], + [10.743, -20.021], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, -19.043], + [0, 0], + [-10.254, 20.507], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [16.114, 27.344], + [16.114, -42.968], + [18.555, -102.051], + [16.602, -102.051], + [-12.695, -42.968], + [-55.174, 26.368], + [-55.174, 27.344] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ind": 1, + "ty": "sh", + "ix": 2, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [16.114, 158.692], + [16.114, 83.007], + [-124.511, 83.007], + [-124.511, 34.669], + [-4.393, -158.692], + [86.427, -158.692], + [86.427, 27.344], + [124.511, 27.344], + [124.511, 83.007], + [86.427, 83.007], + [86.427, 158.692] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 2", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "mm", + "mm": 1, + "nm": "Merge Paths 1", + "mn": "ADBE Vector Filter - Merge", + "hd": false + }, + { + "ty": "st", + "c": { + "a": 0, + "k": [0.039000002543, 0, 0.122000002394, 1], + "ix": 3 + }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 4, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 10, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [689.945, 168.692], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Group 1", + "np": 4, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + }, + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [0, 0], + [-1.465, 20.507], + [0, 0], + [10.743, -20.021], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, -19.043], + [0, 0], + [-10.254, 20.507], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [16.114, 27.344], + [16.114, -42.968], + [18.555, -102.051], + [16.602, -102.051], + [-12.695, -42.968], + [-55.174, 26.368], + [-55.174, 27.344] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ind": 1, + "ty": "sh", + "ix": 2, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [16.114, 158.692], + [16.114, 83.007], + [-124.511, 83.007], + [-124.511, 34.669], + [-4.393, -158.692], + [86.427, -158.692], + [86.427, 27.344], + [124.511, 27.344], + [124.511, 83.007], + [86.427, 83.007], + [86.427, 158.692] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 2", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "mm", + "mm": 1, + "nm": "Merge Paths 1", + "mn": "ADBE Vector Filter - Merge", + "hd": false + }, + { + "ty": "mm", + "mm": 4, + "nm": "Merge Paths 2", + "mn": "ADBE Vector Filter - Merge", + "hd": false + }, + { + "ty": "fl", + "c": { + "a": 0, + "k": [1, 0.411999990426, 0.337000020345, 1], + "ix": 4 + }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [689.945, 168.692], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Group 2", + "np": 5, + "cix": 2, + "bm": 0, + "ix": 2, + "mn": "ADBE Vector Group", + "hd": false + }, + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [0, 0], + [-1.465, 20.507], + [0, 0], + [10.743, -20.021], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, -19.043], + [0, 0], + [-10.254, 20.507], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [16.114, 27.344], + [16.114, -42.968], + [18.555, -102.051], + [16.602, -102.051], + [-12.695, -42.968], + [-55.174, 26.368], + [-55.174, 27.344] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ind": 1, + "ty": "sh", + "ix": 2, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [16.114, 158.692], + [16.114, 83.007], + [-124.511, 83.007], + [-124.511, 34.669], + [-4.394, -158.692], + [86.426, -158.692], + [86.426, 27.344], + [124.511, 27.344], + [124.511, 83.007], + [86.426, 83.007], + [86.426, 158.692] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 2", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "mm", + "mm": 1, + "nm": "Merge Paths 1", + "mn": "ADBE Vector Filter - Merge", + "hd": false + }, + { + "ty": "st", + "c": { + "a": 0, + "k": [0.039000002543, 0, 0.122000002394, 1], + "ix": 3 + }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 4, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 10, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [134.511, 168.692], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Group 3", + "np": 4, + "cix": 2, + "bm": 0, + "ix": 3, + "mn": "ADBE Vector Group", + "hd": false + }, + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [0, 0], + [-1.465, 20.507], + [0, 0], + [10.743, -20.021], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, -19.043], + [0, 0], + [-10.254, 20.507], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [16.114, 27.344], + [16.114, -42.968], + [18.555, -102.051], + [16.602, -102.051], + [-12.695, -42.968], + [-55.174, 26.368], + [-55.174, 27.344] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ind": 1, + "ty": "sh", + "ix": 2, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [16.114, 158.692], + [16.114, 83.007], + [-124.511, 83.007], + [-124.511, 34.669], + [-4.394, -158.692], + [86.426, -158.692], + [86.426, 27.344], + [124.511, 27.344], + [124.511, 83.007], + [86.426, 83.007], + [86.426, 158.692] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 2", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "mm", + "mm": 1, + "nm": "Merge Paths 1", + "mn": "ADBE Vector Filter - Merge", + "hd": false + }, + { + "ty": "mm", + "mm": 4, + "nm": "Merge Paths 2", + "mn": "ADBE Vector Filter - Merge", + "hd": false + }, + { + "ty": "fl", + "c": { + "a": 0, + "k": [1, 0.411999990426, 0.337000020345, 1], + "ix": 4 + }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [134.511, 168.692], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Group 4", + "np": 5, + "cix": 2, + "bm": 0, + "ix": 4, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 480, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 4, + "ty": 4, + "nm": "Mask", + "parent": 1, + "td": 1, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [151.175, 150.661, 0], "ix": 2 }, + "a": { "a": 0, "k": [6.25, -73.25, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "d": 1, + "ty": "el", + "s": { "a": 0, "k": [207.5, 207.5], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "nm": "Ellipse Path 1", + "mn": "ADBE Vector Shape - Ellipse", + "hd": false + }, + { + "ty": "fl", + "c": { + "a": 0, + "k": [1, 0.411999990426, 0.337000020345, 1], + "ix": 4 + }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [6.25, -73.25], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [102.387, 102.387], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Ellipse 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 480, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 5, + "ty": 4, + "nm": "PAGE NOT FOUND Outlines", + "tt": 1, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [540, 540, 0], "ix": 2 }, + "a": { "a": 0, "k": [1.095, -13.131, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [1.452, 2.953], + [2.652, 1.769], + [2.952, 0.742], + [4.073, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [-2.037, 0.411], + [-1.737, 0.727], + [-1.437, 1.042], + [-1.2, 1.231], + [-1.042, 2.968], + [0, 3.284] + ], + "o": [ + [-1.453, -2.952], + [-2.4, -1.61], + [-2.953, -0.742], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [2.526, 0], + [2.037, -0.41], + [1.736, -0.726], + [1.436, -1.042], + [1.957, -1.989], + [1.042, -2.968], + [0, -4.073] + ], + "v": [ + [-71.661, -58.802], + [-77.818, -65.882], + [-85.846, -69.411], + [-96.384, -70.524], + [-123.76, -70.524], + [-123.76, 0], + [-106.046, 0], + [-106.046, -23.066], + [-96.763, -23.066], + [-89.919, -23.682], + [-84.259, -25.387], + [-79.499, -28.039], + [-75.544, -31.449], + [-71.045, -38.885], + [-69.482, -48.263] + ], + "c": true + }, + "ix": 2 + }, + "nm": "P", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ind": 1, + "ty": "sh", + "ix": 2, + "ks": { + "a": 0, + "k": { + "i": [ + [0.426, -1.263], + [1.2, -1.168], + [1.058, -0.457], + [0.947, -0.158], + [1.484, -0.031], + [1.673, 0], + [0, 0], + [0, 0], + [0, 0], + [-1.532, -0.11], + [-1.674, -0.726], + [-0.947, -1.436], + [0, -1.989] + ], + "o": [ + [-0.426, 1.263], + [-0.568, 0.568], + [-1.058, 0.458], + [-1.106, 0.189], + [-1.485, 0.032], + [0, 0], + [0, 0], + [0, 0], + [2.621, 0], + [1.531, 0.111], + [1.326, 0.537], + [0.947, 1.437], + [0, 2.148] + ], + "v": [ + [-88.309, -42.722], + [-90.748, -39.075], + [-93.187, -37.535], + [-96.195, -36.612], + [-100.079, -36.28], + [-104.815, -36.233], + [-106.046, -36.233], + [-106.046, -57.357], + [-103.536, -57.357], + [-97.308, -57.191], + [-92.5, -55.936], + [-89.09, -52.976], + [-87.669, -47.837] + ], + "c": true + }, + "ix": 2 + }, + "nm": "P", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "mm", + "mm": 1, + "nm": "Merge Paths 1", + "mn": "ADBE Vector Filter - Merge", + "hd": false + }, + { + "ty": "fl", + "c": { + "a": 0, + "k": [0.039215686275, 0, 0.121568634931, 1], + "ix": 4 + }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "P", + "np": 5, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + }, + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-49.826, 0], + [-45.421, -14.398], + [-23.255, -14.398], + [-18.851, 0], + [-0.616, 0], + [-24.439, -70.524], + [-43.764, -70.524], + [-67.587, 0] + ], + "c": true + }, + "ix": 2 + }, + "nm": "A", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ind": 1, + "ty": "sh", + "ix": 2, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-41.538, -27.187], + [-34.338, -50.442], + [-27.139, -27.187] + ], + "c": true + }, + "ix": 2 + }, + "nm": "A", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "mm", + "mm": 1, + "nm": "Merge Paths 1", + "mn": "ADBE Vector Filter - Merge", + "hd": false + }, + { + "ty": "fl", + "c": { + "a": 0, + "k": [0.039215686275, 0, 0.121568634931, 1], + "ix": 4 + }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "A", + "np": 5, + "cix": 2, + "bm": 0, + "ix": 2, + "mn": "ADBE Vector Group", + "hd": false + }, + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0.853, -0.031], + [0.631, 0], + [4.136, 3.916], + [0, 8.241], + [-1.089, 2.905], + [-1.863, 1.895], + [-2.495, 0.947], + [-3.031, 0], + [-2.321, -0.726], + [-1.769, -1.01], + [-1.595, -1.215], + [-0.853, -0.663], + [0, 0], + [0, 0], + [3.694, 1.121], + [5.904, 0], + [6.583, -6.662], + [0, -11.051], + [-6.583, -6.394], + [-11.083, 0], + [-4.942, 1.2], + [-3.095, 1.263] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [-0.632, 0.064], + [-0.853, 0.032], + [-7.168, 0], + [-4.137, -3.915], + [0, -3.852], + [1.089, -2.905], + [1.957, -1.957], + [2.494, -0.947], + [2.589, 0], + [2.321, 0.727], + [1.516, 0.853], + [1.594, 1.216], + [0, 0], + [0, 0], + [-3.947, -1.926], + [-3.694, -1.12], + [-11.431, 0], + [-6.583, 6.663], + [0, 11.746], + [6.583, 6.394], + [4.799, 0], + [4.941, -1.2], + [0, 0] + ], + "v": [ + [65.314, -38.743], + [34.48, -38.743], + [34.48, -25.529], + [48.168, -25.529], + [48.168, -11.699], + [45.942, -11.557], + [43.716, -11.509], + [26.76, -17.382], + [20.556, -35.617], + [22.19, -45.753], + [26.618, -52.952], + [33.296, -57.31], + [41.585, -58.73], + [48.95, -57.641], + [55.083, -55.036], + [59.749, -51.934], + [63.419, -49.116], + [65.03, -49.116], + [65.03, -65.646], + [53.568, -70.216], + [39.169, -71.897], + [12.149, -61.904], + [2.273, -35.333], + [12.149, -8.123], + [38.648, 1.468], + [53.26, -0.332], + [65.314, -4.026] + ], + "c": true + }, + "ix": 2 + }, + "nm": "G", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "fl", + "c": { + "a": 0, + "k": [0.039215686275, 0, 0.121568634931, 1], + "ix": 4 + }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "G", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 3, + "mn": "ADBE Vector Group", + "hd": false + }, + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [126.365, 0], + [126.365, -13.451], + [96.29, -13.451], + [96.29, -31.26], + [123.997, -31.26], + [123.997, -44.711], + [96.29, -44.711], + [96.29, -57.073], + [126.365, -57.073], + [126.365, -70.524], + [78.67, -70.524], + [78.67, 0] + ], + "c": true + }, + "ix": 2 + }, + "nm": "E", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "fl", + "c": { + "a": 0, + "k": [0.039215686275, 0, 0.121568634931, 1], + "ix": 4 + }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "E", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 4, + "mn": "ADBE Vector Group", + "hd": false + }, + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-98.007, 6.464], + [-105.021, 6.464], + [-105.021, 23.957], + [-114.762, 6.464], + [-124.175, 6.464], + [-124.175, 37], + [-117.161, 37], + [-117.161, 15.713], + [-105.39, 37], + [-98.007, 37] + ], + "c": true + }, + "ix": 2 + }, + "nm": "N", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "fl", + "c": { + "a": 0, + "k": [0.039215686275, 0, 0.121568634931, 1], + "ix": 4 + }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 8], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "N", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 5, + "mn": "ADBE Vector Group", + "hd": false + }, + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [2.638, 2.837], + [4.594, 0], + [2.625, -2.851], + [0, -4.908], + [-2.625, -2.864], + [-4.608, 0], + [-2.639, 2.83], + [0, 4.936] + ], + "o": [ + [-2.639, -2.837], + [-4.608, 0], + [-2.625, 2.851], + [0, 4.867], + [2.625, 2.864], + [4.594, 0], + [2.638, -2.83], + [0, -4.935] + ], + "v": [ + [-67.963, 10.083], + [-78.812, 5.828], + [-89.66, 10.104], + [-93.598, 21.742], + [-89.66, 33.339], + [-78.812, 37.636], + [-67.963, 33.391], + [-64.005, 21.742] + ], + "c": true + }, + "ix": 2 + }, + "nm": "O", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ind": 1, + "ty": "sh", + "ix": 2, + "ks": { + "a": 0, + "k": { + "i": [ + [0.355, -1.182], + [0.656, -0.889], + [0.848, -0.39], + [0.902, 0], + [0.834, 0.362], + [0.656, 0.848], + [0.369, 1.238], + [0, 1.873], + [-0.39, 1.313], + [-0.629, 0.793], + [-0.766, 0.335], + [-0.943, 0], + [-0.827, -0.362], + [-0.656, -0.834], + [-0.376, -1.278], + [0, -1.818] + ], + "o": [ + [-0.356, 1.183], + [-0.615, 0.82], + [-0.848, 0.39], + [-0.889, 0], + [-0.834, -0.362], + [-0.643, -0.834], + [-0.369, -1.237], + [0, -1.818], + [0.39, -1.313], + [0.711, -0.861], + [0.766, -0.335], + [0.889, 0], + [0.827, 0.362], + [0.629, 0.82], + [0.376, 1.279], + [0, 1.914] + ], + "v": [ + [-72.454, 26.367], + [-73.972, 29.474], + [-76.166, 31.289], + [-78.791, 31.873], + [-81.375, 31.33], + [-83.61, 29.515], + [-85.128, 26.408], + [-85.682, 21.742], + [-85.097, 17.046], + [-83.569, 13.888], + [-81.354, 12.093], + [-78.791, 11.591], + [-76.217, 12.134], + [-73.992, 13.929], + [-72.485, 17.077], + [-71.921, 21.722] + ], + "c": true + }, + "ix": 2 + }, + "nm": "O", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "mm", + "mm": 1, + "nm": "Merge Paths 1", + "mn": "ADBE Vector Filter - Merge", + "hd": false + }, + { + "ty": "fl", + "c": { + "a": 0, + "k": [0.039215686275, 0, 0.121568634931, 1], + "ix": 4 + }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 8], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "O", + "np": 5, + "cix": 2, + "bm": 0, + "ix": 6, + "mn": "ADBE Vector Group", + "hd": false + }, + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-45.938, 37], + [-45.938, 12.288], + [-36.914, 12.288], + [-36.914, 6.464], + [-62.631, 6.464], + [-62.631, 12.288], + [-53.607, 12.288], + [-53.607, 37] + ], + "c": true + }, + "ix": 2 + }, + "nm": "T", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "fl", + "c": { + "a": 0, + "k": [0.039215686275, 0, 0.121568634931, 1], + "ix": 4 + }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 8], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "T", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 7, + "mn": "ADBE Vector Group", + "hd": false + }, + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-1.005, 6.464], + [-21.451, 6.464], + [-21.451, 37], + [-13.822, 37], + [-13.822, 23.875], + [-2.03, 23.875], + [-2.03, 18.051], + [-13.822, 18.051], + [-13.822, 12.288], + [-1.005, 12.288] + ], + "c": true + }, + "ix": 2 + }, + "nm": "F", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "fl", + "c": { + "a": 0, + "k": [0.039215686275, 0, 0.121568634931, 1], + "ix": 4 + }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 8], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "F", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 8, + "mn": "ADBE Vector Group", + "hd": false + }, + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [2.638, 2.837], + [4.594, 0], + [2.625, -2.851], + [0, -4.908], + [-2.625, -2.864], + [-4.608, 0], + [-2.639, 2.83], + [0, 4.936] + ], + "o": [ + [-2.639, -2.837], + [-4.608, 0], + [-2.625, 2.851], + [0, 4.867], + [2.625, 2.864], + [4.594, 0], + [2.638, -2.83], + [0, -4.935] + ], + "v": [ + [26.804, 10.083], + [15.955, 5.828], + [5.106, 10.104], + [1.169, 21.742], + [5.106, 33.339], + [15.955, 37.636], + [26.804, 33.391], + [30.762, 21.742] + ], + "c": true + }, + "ix": 2 + }, + "nm": "O", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ind": 1, + "ty": "sh", + "ix": 2, + "ks": { + "a": 0, + "k": { + "i": [ + [0.355, -1.182], + [0.656, -0.889], + [0.848, -0.39], + [0.902, 0], + [0.834, 0.362], + [0.656, 0.848], + [0.369, 1.238], + [0, 1.873], + [-0.39, 1.313], + [-0.629, 0.793], + [-0.766, 0.335], + [-0.943, 0], + [-0.827, -0.362], + [-0.656, -0.834], + [-0.376, -1.278], + [0, -1.818] + ], + "o": [ + [-0.356, 1.183], + [-0.615, 0.82], + [-0.848, 0.39], + [-0.889, 0], + [-0.834, -0.362], + [-0.643, -0.834], + [-0.369, -1.237], + [0, -1.818], + [0.39, -1.313], + [0.711, -0.861], + [0.766, -0.335], + [0.889, 0], + [0.827, 0.362], + [0.629, 0.82], + [0.376, 1.279], + [0, 1.914] + ], + "v": [ + [22.313, 26.367], + [20.795, 29.474], + [18.601, 31.289], + [15.976, 31.873], + [13.392, 31.33], + [11.156, 29.515], + [9.639, 26.408], + [9.085, 21.742], + [9.669, 17.046], + [11.197, 13.888], + [13.412, 12.093], + [15.976, 11.591], + [18.549, 12.134], + [20.774, 13.929], + [22.282, 17.077], + [22.846, 21.722] + ], + "c": true + }, + "ix": 2 + }, + "nm": "O", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "mm", + "mm": 1, + "nm": "Merge Paths 1", + "mn": "ADBE Vector Filter - Merge", + "hd": false + }, + { + "ty": "fl", + "c": { + "a": 0, + "k": [0.039215686275, 0, 0.121568634931, 1], + "ix": 4 + }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 8], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "O", + "np": 5, + "cix": 2, + "bm": 0, + "ix": 9, + "mn": "ADBE Vector Group", + "hd": false + }, + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [-2.153, 2.017], + [0, 3.76], + [0, 0], + [0, 0], + [0, 0], + [0.827, -0.998], + [1.764, 0], + [0.8, 1.039], + [0, 2.119], + [0, 0], + [0, 0], + [0, 0], + [-2.208, -1.982], + [-4.102, 0] + ], + "o": [ + [2.153, -2.016], + [0, 0], + [0, 0], + [0, 0], + [0, 2.201], + [-0.827, 0.998], + [-1.805, 0], + [-0.8, -1.039], + [0, 0], + [0, 0], + [0, 0], + [0, 3.814], + [2.208, 1.983], + [4.225, 0] + ], + "v": [ + [57.207, 34.611], + [60.437, 25.946], + [60.437, 6.464], + [52.767, 6.464], + [52.767, 25.516], + [51.526, 30.314], + [47.64, 31.812], + [43.733, 30.253], + [42.533, 25.516], + [42.533, 6.464], + [34.863, 6.464], + [34.863, 25.967], + [38.175, 34.662], + [47.64, 37.636] + ], + "c": true + }, + "ix": 2 + }, + "nm": "U", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "fl", + "c": { + "a": 0, + "k": [0.039215686275, 0, 0.121568634931, 1], + "ix": 4 + }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 8], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "U", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 10, + "mn": "ADBE Vector Group", + "hd": false + }, + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [92.49, 6.464], + [85.477, 6.464], + [85.477, 23.957], + [75.735, 6.464], + [66.322, 6.464], + [66.322, 37], + [73.336, 37], + [73.336, 15.713], + [85.107, 37], + [92.49, 37] + ], + "c": true + }, + "ix": 2 + }, + "nm": "N", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "fl", + "c": { + "a": 0, + "k": [0.039215686275, 0, 0.121568634931, 1], + "ix": 4 + }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 7], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "N", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 11, + "mn": "ADBE Vector Group", + "hd": false + }, + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [1.162, 2.181], + [2.01, 1.285], + [1.873, 0.274], + [2.146, 0], + [0, 0], + [0, 0], + [0, 0], + [-1.866, 0.294], + [-1.586, 1.025], + [-1.244, 2.249], + [0, 2.844] + ], + "o": [ + [-1.162, -2.181], + [-1.641, -1.053], + [-1.873, -0.273], + [0, 0], + [0, 0], + [0, 0], + [2.105, 0], + [1.866, -0.294], + [1.9, -1.203], + [1.244, -2.249], + [0, -2.953] + ], + "v": [ + [124.216, 14.062], + [119.458, 8.863], + [114.188, 6.874], + [108.158, 6.464], + [98.684, 6.464], + [98.684, 37], + [108.24, 37], + [114.198, 36.559], + [119.376, 34.58], + [124.093, 29.402], + [125.959, 21.763] + ], + "c": true + }, + "ix": 2 + }, + "nm": "D", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ind": 1, + "ty": "sh", + "ix": 2, + "ks": { + "a": 0, + "k": { + "i": [ + [0.656, -1.395], + [1.258, -0.793], + [1.182, -0.062], + [1.723, 0], + [0, 0], + [0, 0], + [0, 0], + [-1.142, -0.054], + [-1.039, -0.574], + [-0.691, -1.428], + [0, -2.01] + ], + "o": [ + [-0.656, 1.395], + [-1.066, 0.67], + [-1.183, 0.062], + [0, 0], + [0, 0], + [0, 0], + [1.586, 0], + [1.141, 0.055], + [1.436, 0.807], + [0.69, 1.429], + [0, 2.01] + ], + "v": [ + [117.1, 26.808], + [114.229, 30.089], + [110.855, 31.186], + [106.497, 31.278], + [106.354, 31.278], + [106.354, 12.165], + [106.497, 12.165], + [110.588, 12.247], + [113.859, 13.19], + [117.048, 16.543], + [118.084, 21.701] + ], + "c": true + }, + "ix": 2 + }, + "nm": "D", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "mm", + "mm": 1, + "nm": "Merge Paths 1", + "mn": "ADBE Vector Filter - Merge", + "hd": false + }, + { + "ty": "fl", + "c": { + "a": 0, + "k": [0.039215686275, 0, 0.121568634931, 1], + "ix": 4 + }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 7], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "D", + "np": 5, + "cix": 2, + "bm": 0, + "ix": 12, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 480, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 6, + "ty": 4, + "nm": "BG", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [763, 846, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [1080, 1080], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "fl", + "c": { + "a": 0, + "k": [0.980392216701, 0.996078491211, 1, 1], + "ix": 4 + }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-223, -306], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 480, + "st": 0, + "bm": 0 + } + ], + "markers": [] +} diff --git a/assets/cluster.css b/assets/cluster.css new file mode 100644 index 00000000..a5fc9854 --- /dev/null +++ b/assets/cluster.css @@ -0,0 +1,18 @@ +.marker-cluster-small { + background-color: rgba(248, 249, 250, 0.6); +} +.marker-cluster-medium { + background-color: rgba(172, 227, 251, 0.6); +} +.marker-cluster-large { + background-color: rgba(35, 139, 230, 0.6); +} +.marker-cluster-small div { + background-color: rgba(240, 247, 249, 0.8); +} +.marker-cluster-medium div { + background-color: rgba(172, 227, 251, 0.8); +} +.marker-cluster-large div { + background-color: rgba(35, 139, 230, 0.8); +} diff --git a/assets/dashExtensions_default.js b/assets/dashExtensions_default.js new file mode 100644 index 00000000..834bab2b --- /dev/null +++ b/assets/dashExtensions_default.js @@ -0,0 +1,51 @@ +window.dashExtensions = Object.assign({}, window.dashExtensions, { + default: { + function0: function (feature, latlng, ctx) { + const p = feature.properties; + const color = p.source === "ep" ? "#3a0ca3" : "#4895ef"; + const marker = L.circleMarker(latlng, { + radius: 5, + color: color, + fillColor: color, + fillOpacity: 0.8, + weight: 1, + }); + + let html = + "" + + (p.title || "") + + "
" + + "Lat: " + + latlng.lat.toFixed(2) + + ", Lon: " + + latlng.lng.toFixed(2) + + "
"; + if (p.source === "ob") { + html += + "Period: " + + (p.period || "N/A") + + "
" + + "Elevation: " + + (p.elev || "N/A") + + " m
" + + "Time zone: GMT" + + (p.tz || "N/A") + + "
" + + "99% Heating DB: " + + (p.heat99 || "N/A") + + "
" + + "1% Cooling DB: " + + (p.cool1 || "N/A") + + "
" + + "Source: Climate.OneBuilding.Org"; + } else { + html += "Source: EnergyPlus"; + } + marker.bindTooltip(html, { + sticky: true, + opacity: 0.9, + }); + return marker; + }, + }, +}); diff --git a/assets/data/epw_location.json b/assets/data/epw_location.json index 5040d759..65c49e0c 100644 --- a/assets/data/epw_location.json +++ b/assets/data/epw_location.json @@ -1,43974 +1,47009 @@ { "type": "FeatureCollection", - "features": [{ - "type": "Feature", - "properties": { - "title": "DZA_Algiers.603900_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [3.25, 36.72] - } - }, { - "type": "Feature", - "properties": { - "title": "EGY_Al.Minya.623870_ETMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [30.73, 28.08] - } - }, { - "type": "Feature", - "properties": { - "title": "EGY_Alexandria.623180_ETMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [29.95, 31.2] - } - }, { - "type": "Feature", - "properties": { - "title": "EGY_Aswan.624140_ETMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [32.78, 23.97] - } - }, { - "type": "Feature", - "properties": { - "title": "EGY_Aswan.624140_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [32.78, 23.97] - } - }, { - "type": "Feature", - "properties": { - "title": "EGY_Asyut.623930_ETMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [31.02, 27.05] - } - }, { - "type": "Feature", - "properties": { - "title": "EGY_Cairo.623660_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [31.4, 30.13] - } - }, { - "type": "Feature", - "properties": { - "title": "EGY_Cairo.Intl.Airport.623660_ETMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [31.4, 30.13] - } - }, { - "type": "Feature", - "properties": { - "title": "EGY_El.Arish.623370_ETMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [33.82, 31.08] - } - }, { - "type": "Feature", - "properties": { - "title": "EGY_Helwan.623780_ETMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [31.33, 29.87] - } - }, { - "type": "Feature", - "properties": { - "title": "EGY_Hurghada.624630_ETMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [33.72, 27.15] - } - }, { - "type": "Feature", - "properties": { - "title": "EGY_Ismailia.624400_ETMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [32.25, 30.6] - } - }, { - "type": "Feature", - "properties": { - "title": "EGY_Kharga.624350_ETMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [30.53, 25.45] - } - }, { - "type": "Feature", - "properties": { - "title": "EGY_Luxor.624050_ETMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [32.7, 25.67] - } - }, { - "type": "Feature", - "properties": { - "title": "ETH_Addis.Ababa-Bole.634500_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [38.8, 8.98] - } - }, { - "type": "Feature", - "properties": { - "title": "ETH_Awassa.634600_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [38.05, 7.07] - } - }, { - "type": "Feature", - "properties": { - "title": "ETH_Bahar.Dar.633320_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [37.4, 11.6] - } - }, { - "type": "Feature", - "properties": { - "title": "ETH_Combolcha.633330_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [39.72, 11.08] - } - }, { - "type": "Feature", - "properties": { - "title": "ETH_Debre.Marcos.633340_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [37.72, 10.35] - } - }, { - "type": "Feature", - "properties": { - "title": "ETH_Dire.Dawa.634710_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [41.87, 9.6] - } - }, { - "type": "Feature", - "properties": { - "title": "ETH_Gondar.633310_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [37.43, 12.53] - } - }, { - "type": "Feature", - "properties": { - "title": "ETH_Jimma.634020_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [36.83, 7.67] - } - }, { - "type": "Feature", - "properties": { - "title": "ETH_Metehara.634530_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [39.78, 8.83] - } - }, { - "type": "Feature", - "properties": { - "title": "GHA_Accra.654720_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-0.17, 5.6] - } - }, { - "type": "Feature", - "properties": { - "title": "KEN_Eldoret.636860_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [35.28, 0.53] - } - }, { - "type": "Feature", - "properties": { - "title": "KEN_Embu.637200_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [37.45, -0.5] - } - }, { - "type": "Feature", - "properties": { - "title": "KEN_Garissa.637230_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [39.63, -0.47] - } - }, { - "type": "Feature", - "properties": { - "title": "KEN_Kakamega.636870_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [34.78, 0.28] - } - }, { - "type": "Feature", - "properties": { - "title": "KEN_Kisii.637090_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [34.78, -0.67] - } - }, { - "type": "Feature", - "properties": { - "title": "KEN_Kisumu.637080_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [34.75, -0.1] - } - }, { - "type": "Feature", - "properties": { - "title": "KEN_Kitale.636610_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [35, 1.02] - } - }, { - "type": "Feature", - "properties": { - "title": "KEN_Lamu-Manda.Island.637720_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [40.83, -2.27] - } - }, { - "type": "Feature", - "properties": { - "title": "KEN_Lodwar.636120_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [35.62, 3.12] - } - }, { - "type": "Feature", - "properties": { - "title": "KEN_Makindu.637660_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [37.83, -2.28] - } - }, { - "type": "Feature", - "properties": { - "title": "KEN_Malindi.637990_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [40.1, -3.23] - } - }, { - "type": "Feature", - "properties": { - "title": "KEN_Mandera.636240_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [41.87, 3.93] - } - }, { - "type": "Feature", - "properties": { - "title": "KEN_Marsabit.636410_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [37.9, 2.3] - } - }, { - "type": "Feature", - "properties": { - "title": "KEN_Meru.636950_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [37.65, 0.08] - } - }, { - "type": "Feature", - "properties": { - "title": "KEN_Mombasa-Moi.638200_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [39.62, -4.03] - } - }, { - "type": "Feature", - "properties": { - "title": "KEN_Moyale.636190_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [39.05, 3.53] - } - }, { - "type": "Feature", - "properties": { - "title": "KEN_Nairobi-Dagoretti.637410_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [36.75, -1.3] - } - }, { - "type": "Feature", - "properties": { - "title": "KEN_Nairobi-Kenyatta.637400_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [36.92, -1.32] - } - }, { - "type": "Feature", - "properties": { - "title": "KEN_Nairobi-Wilson.637420_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [36.82, -1.32] - } - }, { - "type": "Feature", - "properties": { - "title": "KEN_Nairobi.637400_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [36.92, -1.32] - } - }, { - "type": "Feature", - "properties": { - "title": "KEN_Nakuru.637140_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [36.1, -0.27] - } - }, { - "type": "Feature", - "properties": { - "title": "KEN_Narok.637370_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [35.83, -1.13] - } - }, { - "type": "Feature", - "properties": { - "title": "KEN_Nyeri.637170_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [36.97, -0.5] - } - }, { - "type": "Feature", - "properties": { - "title": "KEN_Voi.637930_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [38.57, -3.4] - } - }, { - "type": "Feature", - "properties": { - "title": "LBY_Tripoli.620100_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [13.15, 32.67] - } - }, { - "type": "Feature", - "properties": { - "title": "MAR_Casablanca.Nouasser.601560_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-7.58, 33.37] - } - }, { - "type": "Feature", - "properties": { - "title": "MDG_Antananarivo.670830_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [47.48, -18.8] - } - }, { - "type": "Feature", - "properties": { - "title": "SEN_Dakar.616410_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-17.5, 14.73] - } - }, { - "type": "Feature", - "properties": { - "title": "TUN_Tunis.607150_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [10.23, 36.83] - } - }, { - "type": "Feature", - "properties": { - "title": "ZAF_Cape.Town.688160_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [18.6, -33.98] - } - }, { - "type": "Feature", - "properties": { - "title": "ZAF_Johannesburg.683680_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [28.23, -26.13] - } - }, { - "type": "Feature", - "properties": { - "title": "ZWE_Harare.677750_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [31.13, -17.92] - } - }, { - "type": "Feature", - "properties": { - "title": "ARE_Abu.Dhabi.412170_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [54.65, 24.43] - } - }, { - "type": "Feature", - "properties": { - "title": "BGD_Bogra.418830_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [89.37, 24.85] - } - }, { - "type": "Feature", - "properties": { - "title": "BGD_Chittagong-Patenga.419780_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [91.82, 22.27] - } - }, { - "type": "Feature", - "properties": { - "title": "BGD_Coxs.Bazar.419920_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [91.97, 21.43] - } - }, { - "type": "Feature", - "properties": { - "title": "BGD_Dhaka.419230_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [90.38, 23.77] - } - }, { - "type": "Feature", - "properties": { - "title": "BGD_Ishurdi.419070_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [89.05, 24.13] - } - }, { - "type": "Feature", - "properties": { - "title": "BGD_Jessore.419360_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [89.17, 23.18] - } - }, { - "type": "Feature", - "properties": { - "title": "BGD_Rangpur.418590_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [89.23, 25.73] - } - }, { - "type": "Feature", - "properties": { - "title": "BGD_Sylhet.418910_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [91.88, 24.9] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Anhui.Anqing.584240_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [117.05, 30.53] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Anhui.Bengbu.582210_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [117.38, 32.95] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Anhui.Boxian.581020_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [115.77, 33.87] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Anhui.Dongcheng.583190_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [116.95, 31.07] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Anhui.Hefei.583210_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [117.23, 31.87] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Anhui.Hefei.583210_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [117.23, 31.87] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Anhui.Huoshan.583140_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [116.32, 31.4] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Anhui.Shouxian.582150_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [116.78, 32.55] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Anhui.Tunxi.585310_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [118.28, 29.72] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Beijing.Beijing.545110_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [116.47, 39.8] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Beijing.Beijing.545110_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [116.47, 39.8] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Beijing.Beijing.545110_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [116.28, 39.93] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Beijing.Miyun.544160_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [116.87, 40.38] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Chongqing.Chongqing.Shapingba.575160_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [106.47, 29.58] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Chongqing.Chongqing.Shapingba.575160_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [106.48, 29.52] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Chongqing.Youyang.576330_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [108.77, 28.83] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Fujian.Congwu.591330_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [118.92, 24.9] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Fujian.Fuzhou.588470_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [119.28, 26.08] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Fujian.Jianou.587370_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [118.32, 27.05] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Fujian.Nanping.588340_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [118.17, 26.65] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Fujian.Shanghang.589180_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [116.42, 25.05] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Fujian.Xiamen.591340_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [118.07, 24.48] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Fujian.Yongan.589210_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [117.35, 25.97] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Gansu.Dunhuang.524180_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [94.68, 40.15] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Gansu.Hezuo.560800_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [102.9, 35] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Gansu.Jiuquan.525330_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [98.48, 39.77] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Gansu.Lanzhou.528890_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [103.88, 36.05] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Gansu.Lanzhou.528890_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [103.88, 36.05] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Gansu.Lanzhou.528890_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [103.88, 36.05] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Gansu.Minqin.526810_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [103.08, 38.63] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Gansu.Minqin.526810_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [103.1, 38.77] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Gansu.Minxian.560930_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [104.02, 34.43] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Gansu.Pingliang.539150_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [106.67, 35.55] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Gansu.Tianshui.570060_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [105.75, 34.58] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Gansu.Wudu.560960_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [104.92, 33.4] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Gansu.Wudu.560960_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [104.92, 33.4] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Gansu.Wushaoling.527870_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [102.87, 37.2] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Gansu.Xifengzhen.539230_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [107.63, 35.73] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Gansu.Yumenzhen.524360_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [97.03, 40.27] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Gansu.Yumenzhen.524360_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [97.03, 40.27] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Gansu.Yuzhong.529830_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [104.15, 35.87] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Guangdong.Dianbai.596640_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [111, 21.5] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Guangdong.Guangzhou.592870_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [113.33, 23.17] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Guangdong.Guangzhou.592870_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [113.32, 23.13] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Guangdong.Heyuan.592930_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [114.68, 23.73] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Guangdong.Nanxiong.579960_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [114.32, 25.13] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Guangdong.Shantou.593160_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [116.68, 23.4] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Guangdong.Shanwei.595010_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [115.37, 22.8] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Guangdong.Shaoguan.590820_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [113.6, 24.68] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Guangdong.Shenzhen.594930_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [114.1, 22.55] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Guangdong.Yangjiang.596630_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [111.97, 21.87] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Guangdong.Zhengcheng.592940_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [113.83, 23.33] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Guangxi.Zhuang.Baise.592110_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [106.6, 23.9] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Guangxi.Zhuang.Duan.590370_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [108.1, 23.93] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Guangxi.Zhuang.Guilin.579570_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [110.3, 25.32] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Guangxi.Zhuang.Guiping.592540_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [110.08, 23.4] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Guangxi.Zhuang.Hechi.590230_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [108.05, 24.7] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Guangxi.Zhuang.Lingshan.594460_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [109.3, 22.42] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Guangxi.Zhuang.Longzhou.594170_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [106.85, 22.33] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Guangxi.Zhuang.Nanning.594310_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [108.22, 22.63] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Guangxi.Zhuang.Qinzhou.596320_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [108.62, 21.95] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Guangxi.Zhuang.Wuzhou.592650_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [111.3, 23.48] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Guizhou.Bijie.577070_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [105.28, 27.3] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Guizhou.Guiyang.578160_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [106.73, 26.58] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Guizhou.Guiyang.578160_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [106.72, 26.58] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Guizhou.Sansui.578320_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [108.67, 26.97] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Guizhou.Tongzi.576060_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [106.83, 28.13] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Guizhou.Weining.566910_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [104.28, 26.87] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Guizhou.Xingyi.579020_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [105.18, 25.43] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Guizhou.Zunyi.577130_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [106.88, 27.7] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Hainan.Dongfang.598380_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [108.62, 19.1] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Hainan.Haikou.597580_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [110.35, 20.03] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Hainan.Qionghai.598550_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [110.47, 19.23] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Hebei.Chengde.544230_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [117.95, 40.98] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Hebei.Fengning.543080_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [116.63, 41.22] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Hebei.Huailai.544050_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [115.5, 40.4] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Hebei.Leting.545390_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [118.88, 39.43] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Hebei.Raoyang.546060_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [115.73, 38.23] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Hebei.Shijiazhuang.536980_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [114.42, 38.03] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Hebei.Xingtai.537980_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [114.5, 37.07] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Hebei.Zhangbei.533990_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [114.7, 41.15] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Heilongjiang.Anda.508540_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [125.32, 46.38] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Heilongjiang.Fujin.507880_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [131.98, 47.23] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Heilongjiang.Fuyu.507420_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [124.48, 47.78] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Heilongjiang.Hailun.507560_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [126.97, 47.43] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Heilongjiang.Harbin.509530_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [126.77, 45.75] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Heilongjiang.Harbin.509530_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [126.68, 45.72] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Heilongjiang.Harbin.509530_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [126.77, 45.75] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Heilongjiang.Huma.503530_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [126.65, 51.72] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Heilongjiang.Jiamusi.508730_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [130.28, 46.82] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Heilongjiang.Jixi.509780_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [130.95, 45.28] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Heilongjiang.Keshan.506580_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [125.88, 48.05] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Heilongjiang.Mohe.501360_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [122.52, 52.97] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Heilongjiang.Mudanjiang.540940_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [129.6, 44.57] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Heilongjiang.Nenjiang.505570_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [125.23, 49.17] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Heilongjiang.Qiqihar.507450_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [123.92, 47.38] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Heilongjiang.Shangzhi.509680_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [127.97, 45.22] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Heilongjiang.Suifenhe.540960_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [131.17, 44.38] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Heilongjiang.Sunwu.505640_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [127.35, 49.43] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Heilongjiang.Tonghe.509630_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [128.73, 45.97] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Heilongjiang.Zhaozhou.509500_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [125.25, 45.7] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Henan.Anyang.538980_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [114.4, 36.05] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Henan.Lushi.570670_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [111.03, 34.05] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Henan.Nanyang.571780_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [112.58, 33.03] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Henan.Shangqiu.580050_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [115.67, 34.45] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Henan.Xinyang.572970_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [114.05, 32.13] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Henan.Zhengzhou.570830_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [113.65, 34.72] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Henan.Zhumadian.572900_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [114.02, 33] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Hong.Kong.SAR.450070_CityUHK", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [114.17, 22.32] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Hubei.Exi.574470_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [109.47, 30.28] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Hubei.Laohekou.572650_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [111.67, 32.38] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Hubei.Macheng.573990_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [115.02, 31.18] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Hubei.Wuhan.574940_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [114.13, 30.62] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Hubei.Wuhan.574940_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [114.13, 30.62] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Hubei.Yichang.574610_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [111.3, 30.7] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Hubei.Yunxi.572510_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [110.42, 33] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Hubei.Zhongxiang.573780_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [112.57, 31.17] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Hunan.Changde.576620_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [111.68, 29.05] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Hunan.Changning.578740_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [112.4, 26.42] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Hunan.Changsha.576870_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [112.92, 28.22] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Hunan.Changsha.576870_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [112.87, 28.23] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Hunan.Jishou.576490_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [109.73, 28.32] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Hunan.Lingling.578660_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [111.62, 26.23] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Hunan.Nanxian.575740_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [112.4, 29.37] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Hunan.Shimen.575620_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [111.37, 29.58] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Hunan.Wugang.578530_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [110.63, 26.73] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Hunan.Zhijiang.577450_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [109.68, 27.45] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Hunan.Zhuzhou.577800_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [113.17, 27.87] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Jiangsu.Dongtai.582510_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [120.32, 32.87] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Jiangsu.Ganyu.580400_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [119.12, 34.83] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Jiangsu.Huaiyang-Qingjiang.581440_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [119.02, 33.63] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Jiangsu.Lusi.582650_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [121.6, 32.07] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Jiangsu.Nanjing.582380_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [118.8, 32.83] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Jiangsu.Xuzhou.580270_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [117.15, 34.28] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Jiangxi.Ganzhou.579930_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [115, 25.87] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Jiangxi.Jian.577990_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [114.92, 27.05] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Jiangxi.Jingdezhen.585270_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [117.2, 29.3] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Jiangxi.Nanchang.586060_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [115.92, 28.6] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Jiangxi.Nancheng.587150_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [116.65, 27.58] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Jiangxi.Nancheng.587150_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [116.65, 27.58] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Jiangxi.Nanjing.582380_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [118.8, 32] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Jiangxi.Suichuan.578960_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [114.5, 26.33] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Jiangxi.Yichun.577930_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [114.38, 27.8] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Jiangxi.Yushan.586340_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [118.33, 28.68] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Jilin.Baicheng.509360_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [122.83, 45.63] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Jilin.Changchun.541610_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [125.22, 43.9] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Jilin.Donggang.542840_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [127.57, 42.1] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Jilin.Dunhua.541860_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [128.2, 43.37] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Jilin.Linjiang.543740_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [126.92, 41] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Jilin.Qian.Gorlos.509490_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [124.87, 45.08] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Jilin.Siping.541570_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [124.33, 43.17] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Jilin.Yanji.542920_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [129.47, 42.88] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Kinjiang.Uygar.Kashi.517090_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [75.98, 39.47] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Kinjiang.Uygur.Kuqa.516440_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [82.95, 41.72] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Kinjiang.Uygur.Yining.514310_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [81.33, 43.95] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Kinjiang.Uyhur.Hotan.518280_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [79.93, 37.13] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Liaoning.Benxi.543460_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [123.78, 41.32] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Liaoning.Chaoyang.543240_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [120.45, 41.55] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Liaoning.Dalian.546620_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [121.63, 38.9] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Liaoning.Dalian.546620_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [121.63, 38.9] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Liaoning.Dandong.544970_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [124.33, 40.05] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Liaoning.Jinzhou.543370_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [121.12, 41.68] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Liaoning.Kuandian.544930_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [124.78, 40.72] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Liaoning.Shenyang.543420_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [123.45, 41.73] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Liaoning.Shenyang.543420_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [123.48, 41.78] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Liaoning.Xingcheng.544550_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [120.7, 40.58] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Liaoning.Xinmin.543330_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [122.83, 41.98] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Liaoning.Yingkou.544710_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [122.27, 40.67] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Liaoning.Zhangwu.542360_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [122.53, 42.42] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Abag.Qi.Hot.531920_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [114.95, 44.02] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Arxan.507270_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [119.93, 47.17] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Bailingmiao.533520_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [110.43, 41.7] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Bailingmiao.533520_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [110.43, 41.7] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Bairin.Zuo.Qi.540270_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [119.4, 43.98] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Bayan.Mod.524950_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [104.8, 40.17] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Bugt.506320_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [121.92, 48.77] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Bugt.506320_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [121.92, 48.77] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Chifeng.542180_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [118.93, 42.27] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Dong.Ujimqin.Qi.509150_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [116.97, 45.52] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Dongsheng.535430_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [109.98, 39.83] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Duolun.542080_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [116.47, 42.18] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Ejin.Qi.522670_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [101.07, 41.95] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Ejin.Qi.522670_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [101.07, 41.95] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Erenhot.530680_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [111.97, 43.65] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Hailar.505270_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [119.75, 49.22] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Hailisu.532310_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [106.4, 41.4] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Haliut.533360_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [108.52, 41.57] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Hohhot.534630_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [111.68, 40.82] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Huade.533910_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [114, 41.9] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Huade.533910_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [114, 41.9] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Jartai.535020_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [105.75, 39.78] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Jartai.535020_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [105.75, 39.78] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Jarud.Qi.540260_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [120.9, 44.57] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Jurh.532760_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [112.9, 42.4] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Kailu.541340_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [121.28, 43.6] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Linxi.541150_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [118.07, 43.6] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Linxi.541150_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [118.07, 43.6] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Manzhouli.505140_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [117.43, 49.57] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Otog.Qi.535290_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [107.98, 39.1] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Solon.508340_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [121.22, 46.6] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Tongliao.541350_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [122.27, 43.6] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Tongliao.541350_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [122.27, 43.6] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Tulihe.504340_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [121.68, 50.48] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Xi.Ujimqin.Qi.540120_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [117.6, 44.58] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Nei.Mongol.Xilinhot.541020_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [116.12, 43.95] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Ningxia.Hui.Guyuan.538170_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [106.27, 36] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Ningxia.Hui.Yanchi.537230_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [107.38, 37.8] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Ningxia.Hui.Yinchuan.536140_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [106.22, 38.48] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Qinghai.Daqaidam.527130_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [95.37, 37.85] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Qinghai.Darlag.560460_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [99.65, 33.75] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Qinghai.Dulan.Us.528360_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [98.1, 36.3] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Qinghai.Gangca.527540_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [100.13, 37.33] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Qinghai.Golmud.528180_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [94.9, 36.42] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Qinghai.Haixi.Delingha.527370_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [97.37, 37.37] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Qinghai.Lenghu.526020_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [93.33, 38.75] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Qinghai.Madoi.560330_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [98.22, 34.92] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Qinghai.Madoi.560330_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [98.22, 34.92] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Qinghai.Mangnai.518860_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [90.85, 38.25] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Qinghai.Minhe.528760_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [102.85, 36.32] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Qinghai.Nangqen.561250_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [96.48, 32.2] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Qinghai.Qumarleb.560210_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [95.78, 34.13] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Qinghai.Tuotuohe.560040_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [92.43, 34.22] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Qinghai.Tuotuohe.560040_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [92.43, 34.22] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Qinghai.Xinghai.529430_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [99.98, 35.58] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Qinghai.Xining.528660_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [101.75, 36.72] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Qinghai.Yushu.560290_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [97.02, 33.02] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Shaanxi.Ankang.572450_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [109.03, 32.72] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Shaanxi.Ankangan.572450_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [109.03, 32.72] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Shaanxi.Baoji.570160_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [107.13, 34.35] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Shaanxi.Dingbian.537250_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [107.58, 37.58] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Shaanxi.Hanzhong.571270_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [107.03, 33.07] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Shaanxi.Luochuan.539420_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [109.5, 35.82] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Shaanxi.Suide.537540_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [110.22, 37.5] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Shaanxi.Xian.570360_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [108.93, 34.3] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Shaanxi.Yanan.538450_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [109.5, 36.6] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Shaanxi.Yulin.536460_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [109.7, 38.23] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Shaanxi.Yulin.536460_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [109.7, 38.23] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Shandong.Chaoyang.548080_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [115.67, 36.23] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Shandong.Chengshantou.547760_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [122.68, 37.4] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Shandong.Huimin.Xian.547250_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [117.53, 37.48] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Shandong.Jinan.548230_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [117.05, 36.6] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Shandong.Juxian.549360_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [118.83, 35.58] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Shandong.Longkou.547530_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [120.32, 37.62] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Shandong.Weifang.548430_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [119.18, 36.75] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Shandong.Yanzhou.549160_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [116.85, 35.57] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Shanghai.Shanghai.583620_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [121.45, 31.4] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Shanghai.Shanghai.583620_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [121.43, 31.17] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Shanghai.Shanghai.583670_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [121.43, 31.17] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Shanxi.Datong.534870_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [113.33, 40.1] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Shanxi.Houma.539630_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [111.37, 35.65] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Shanxi.Jiexiu.538630_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [111.92, 37.03] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Shanxi.Taiyuan.537720_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [112.55, 37.78] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Shanxi.Yuanping.536730_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [112.72, 38.73] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Shanxi.Yuncheng.539590_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [111.05, 35.05] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Shanxi.Yushe.537870_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [112.98, 37.07] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Sichuan.Barkam.561720_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [102.23, 31.9] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Sichuan.Batang.562470_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [99.1, 30] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Sichuan.Chengdu.562940_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [104.02, 30.67] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Sichuan.Chengdu.562940_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [104.02, 30.67] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Sichuan.Garze.561460_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [100, 31.62] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Sichuan.Garze.561460_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [100, 31.62] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Sichuan.Hongyuan.561730_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [102.55, 32.8] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Sichuan.Huili.566710_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [102.25, 26.65] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Sichuan.Huili.566710_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [102.25, 26.65] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Sichuan.Jiulong.564620_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [101.5, 29] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Sichuan.Leshan.563860_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [103.75, 29.57] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Sichuan.Litang.562570_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [100.27, 30] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Sichuan.Luzhou.576020_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [105.43, 28.88] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Sichuan.Mianyang.561960_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [104.73, 31.45] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Sichuan.Nanchong.574110_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [106.1, 30.78] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Sichuan.Songpan.561820_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [103.57, 32.65] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Sichuan.Wanyuan.572370_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [108.03, 32.07] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Sichuan.Xichang.565710_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [102.27, 27.9] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Sichuan.Yibin.564920_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [104.6, 28.8] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Tianjin.Tianjin.545270_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [117.07, 39.08] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Tibet.Lhasa.555910_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [91.13, 29.67] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Tibet.Lhasa.555910_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [91.13, 29.67] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Tibet.Nyingchi.563120_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [94.33, 29.67] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Tibet.Nyingchi.563120_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [94.47, 29.57] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Tibet.Pagri.557730_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [89.08, 27.73] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Tibet.Qamdo.561370_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [97.17, 31.15] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Xinjiang.Urgur.Urumqi.514630_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [87.53, 43.83] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Xinjiang.Uygur.Aksu.516280_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [80.23, 41.17] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Xinjiang.Uygur.Altay.510760_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [88.08, 47.73] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Xinjiang.Uygur.Altay.510760_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [88.08, 47.73] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Xinjiang.Uygur.Bachu.517160_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [78.57, 39.8] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Xinjiang.Uygur.Fuyun.510870_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [89.52, 46.98] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Xinjiang.Uygur.Hami.522030_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [93.52, 42.82] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Xinjiang.Uygur.Hoboksar.511560_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [85.72, 46.78] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Xinjiang.Uygur.Hotan.518280_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [79.93, 37.13] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Xinjiang.Uygur.Jinghe.513340_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [82.9, 44.62] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Xinjiang.Uygur.Karamay.512430_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [84.85, 45.62] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Xinjiang.Uygur.Kashi.517090_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [75.98, 39.47] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Xinjiang.Uygur.Kuqa.516440_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [83.07, 41.72] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Xinjiang.Uygur.Minfeng.518390_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [82.72, 37.07] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Xinjiang.Uygur.Ruoqiang.517770_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [88.17, 39.03] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Xinjiang.Uygur.Shache.518110_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [77.27, 38.43] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Xinjiang.Uygur.Tacheng.511330_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [83, 46.73] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Xinjiang.Uygur.Tikanlik.517650_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [87.7, 40.63] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Xinjiang.Uygur.Turpan.515730_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [89.2, 42.93] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Xinjiang.Uygur.Turpan.515730_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [89.2, 42.93] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Xinjiang.Uygur.Urumqi.514630_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [87.65, 43.78] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Xinjiang.Uygur.Wusu.513460_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [84.67, 44.43] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Xinjiang.Uygur.Yanqi.515670_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [86.5, 42.08] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Xinjiang.Uygur.Yining.514310_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [81.33, 43.95] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Yunnan.Chuxiong.567680_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [101.55, 25.03] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Yunnan.Deqen.564440_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [98.92, 28.48] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Yunnan.Kunming.567780_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [102.68, 25.02] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Yunnan.Kunming.567780_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [102.68, 25.02] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Yunnan.Kunming.567780_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [102.68, 25.02] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Yunnan.Lancang.569540_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [99.93, 22.57] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Yunnan.Lijiang.566510_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [100.22, 26.87] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Yunnan.Lincang.569510_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [100.08, 23.88] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Yunnan.Mengla.569690_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [101.57, 21.48] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Yunnan.Mengzi.569850_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [103.38, 23.38] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Yunnan.Simao.569640_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [100.97, 22.78] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Yunnan.Tengchong.567390_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [98.5, 25.02] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Yunnan.Yuanjiang.569660_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [101.98, 23.6] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Zhejiang.Dinghai.584770_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [122.1, 30.03] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Zhejiang.Hangzhou.584570_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [120.17, 30.23] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Zhejiang.Hangzhou.584570_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [120.17, 30.23] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Zhejiang.Hongjia.586650_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [121.42, 28.62] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Zhejiang.Quxian.586330_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [118.9, 29] - } - }, { - "type": "Feature", - "properties": { - "title": "CHN_Zhejiang.Wenzhou.586590_CSWD", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [120.65, 28.03] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Ahmedabad.426470_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [72.63, 23.07] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Ahmedabad.426470_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [72.63, 23.07] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Akola.429340_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [77.03, 20.7] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Allahabad.424750_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [81.73, 25.45] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Amritsar.420710_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [74.52, 31.38] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Aurangabad.430140_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [75.33, 19.88] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Bangalore.432950_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [77.58, 12.97] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Barmer.424350_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [71.38, 25.75] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Belgaum.431980_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [74.32, 15.52] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Bhagalpur.424980_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [86.95, 25.23] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Bhopal.426670_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [77.35, 23.28] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Bhubneshwar.429710_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [85.83, 20.25] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Bikaner.421650_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [73.3, 28] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Calcutta.428090_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [88.45, 22.65] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Chennai-Madras.432790_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [80.18, 13] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Chennai.432790_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [80.18, 13] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Chirtadurg.432330_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [76.27, 14.13] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Dehradun.421110_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [78.03, 30.32] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Dibrugarh.423140_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [95.02, 27.48] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Goa.Panjim.431920_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [73.82, 15.48] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Gorakhpur.423790_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [83.37, 26.75] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Guwahati.424100_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [91.58, 26.1] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Gwalior.423610_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [78.25, 26.23] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Hissar.421310_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [75.73, 29.17] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Hyderabad.431280_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [78.47, 17.45] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Imphal.426230_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [93.9, 24.77] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Indore.427540_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [75.8, 22.72] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Jabalpur.426750_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [79.95, 23.2] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Jagdelpur.430410_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [82.03, 19.08] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Jaipur.423480_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [75.8, 26.82] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Jaisalmer.423280_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [70.92, 26.9] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Jamnagar.427340_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [70.02, 22.47] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Jodhpur.423390_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [73.02, 26.3] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Jorhat.424230_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [94.17, 26.73] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Kolkata.428090_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [88.45, 22.65] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Kota.424520_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [75.85, 25.15] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Kurnool.432130_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [78.03, 15.5] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Lucknow.423690_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [80.93, 26.87] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Mangalore.432840_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [74.52, 12.52] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Mumbai.430030_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [72.82, 18.9] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Mumbai.430030_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [72.85, 19.12] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Nagpur.428670_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [79.05, 21.1] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Nagpur.428670_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [79.05, 21.1] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Nellore.432450_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [79.98, 14.45] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_New.Delhi.421820_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [77.2, 28.58] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_New.Delhi.421820_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [77.2, 28.58] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Panjim.431920_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [73.82, 15.48] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Patna.424920_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [85.17, 25.27] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Pune.430630_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [73.85, 18.53] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Raipur.428750_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [81.65, 21.23] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Rajkot.427370_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [70.78, 22.3] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Ramagundam.430860_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [79.43, 18.77] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Ranchi.427010_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [85.33, 23.38] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Ratnagiri.431100_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [73.33, 16.98] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Raxaul.423820_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [84.52, 26.58] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Saharanpur.5217_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [77.88, 29.85] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Shillong.425160_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [91.88, 25.57] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Sholapur.431170_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [75.9, 17.67] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Sundernagar.8204_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [76.53, 31.32] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Surat.428400_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [72.83, 21.2] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Tezpur.424150_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [92.78, 26.62] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Tiruchirapalli.433440_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [78.72, 10.77] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Trivandram.433710_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [76.95, 8.48] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Trivandrum.433710_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [76.95, 8.48] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Veraval.429090_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [70.37, 20.9] - } - }, { - "type": "Feature", - "properties": { - "title": "IND_Vishakhapatnam.431500_ISHRAE", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [83.23, 17.72] - } - }, { - "type": "Feature", - "properties": { - "title": "IRN_Bandar.Abass.408750_ITMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [56.22, 27.13] - } - }, { - "type": "Feature", - "properties": { - "title": "IRN_Esfahan.408000_ITMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [51.4, 32.37] - } - }, { - "type": "Feature", - "properties": { - "title": "IRN_Shiraz.408480_ITMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [52.36, 29.32] - } - }, { - "type": "Feature", - "properties": { - "title": "IRN_Tabriz.407060_ITMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [46.17, 38.05] - } - }, { - "type": "Feature", - "properties": { - "title": "IRN_Tehran-Mehrabad.407540_ITMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [51.19, 35.41] - } - }, { - "type": "Feature", - "properties": { - "title": "IRN_Yazd.408210_ITMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [54.28, 31.88] - } - }, { - "type": "Feature", - "properties": { - "title": "JPN_Kagoshima.478270_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [130.55, 31.57] - } - }, { - "type": "Feature", - "properties": { - "title": "JPN_Matsumoto.476180_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [137.97, 36.25] - } - }, { - "type": "Feature", - "properties": { - "title": "JPN_Miho.Civ.JASDF.477430_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [133.25, 35.48] - } - }, { - "type": "Feature", - "properties": { - "title": "JPN_Nagoya.476350_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [136.93, 35.25] - } - }, { - "type": "Feature", - "properties": { - "title": "JPN_Osaka.477710_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [135.45, 34.78] - } - }, { - "type": "Feature", - "properties": { - "title": "JPN_Sapporo.474120_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [141.33, 43.05] - } - }, { - "type": "Feature", - "properties": { - "title": "JPN_Shimonoseki.477620_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [130.93, 33.95] - } - }, { - "type": "Feature", - "properties": { - "title": "JPN_Tokyo.Hyakuri.477150_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [140.42, 36.18] - } - }, { - "type": "Feature", - "properties": { - "title": "JPN_Tosashimizu.478980_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [133.02, 32.72] - } - }, { - "type": "Feature", - "properties": { - "title": "KAZ_Semipalatinsk.361770_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [80.25, 50.35] - } - }, { - "type": "Feature", - "properties": { - "title": "KOR_Inchon.471120_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [126.55, 37.48] - } - }, { - "type": "Feature", - "properties": { - "title": "KOR_Kangnung.471050_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [128.9, 37.75] - } - }, { - "type": "Feature", - "properties": { - "title": "KOR_Kwangju.471560_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [126.92, 35.13] - } - }, { - "type": "Feature", - "properties": { - "title": "KOR_Ulsan.471520_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [129.32, 35.55] - } - }, { - "type": "Feature", - "properties": { - "title": "KWT_KISR.Coastal.Station.405850_KISR", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [47.98, 29.03] - } - }, { - "type": "Feature", - "properties": { - "title": "KWT_Kuwait.Intl.AP.405820_KISR", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [47.98, 29.22] - } - }, { - "type": "Feature", - "properties": { - "title": "LKA_Anuradhapura.434210_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [80.42, 8.33] - } - }, { - "type": "Feature", - "properties": { - "title": "LKA_Batticaloa.434360_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [81.7, 7.72] - } - }, { - "type": "Feature", - "properties": { - "title": "LKA_Colombo-Katunayake.434500_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [79.88, 7.17] - } - }, { - "type": "Feature", - "properties": { - "title": "LKA_Colombo-Ratmalana.434670_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [79.88, 6.82] - } - }, { - "type": "Feature", - "properties": { - "title": "LKA_Hambantota.434970_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [81.13, 6.12] - } - }, { - "type": "Feature", - "properties": { - "title": "LKA_Kankasanturai.434000_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [80.07, 9.8] - } - }, { - "type": "Feature", - "properties": { - "title": "LKA_Nuwara.Eliya.434730_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [80.77, 6.97] - } - }, { - "type": "Feature", - "properties": { - "title": "LKA_Puttalam.434240_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [79.83, 8.03] - } - }, { - "type": "Feature", - "properties": { - "title": "LKA_Trincomalee.434180_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [81.25, 8.58] - } - }, { - "type": "Feature", - "properties": { - "title": "MAC_Macau.450110_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [113.53, 22.2] - } - }, { - "type": "Feature", - "properties": { - "title": "MDV_Gan.Island.435990_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [73.15, -0.68] - } - }, { - "type": "Feature", - "properties": { - "title": "MDV_Male-Hulule.Island.435550_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [73.53, 4.2] - } - }, { - "type": "Feature", - "properties": { - "title": "MNG_Ulaanbataar.442920_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [106.98, 47.93] - } - }, { - "type": "Feature", - "properties": { - "title": "MNG_Ulaangom.442120_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [92.08, 49.88] - } - }, { - "type": "Feature", - "properties": { - "title": "NPL_Kathmandu.444540_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [85.37, 27.7] - } - }, { - "type": "Feature", - "properties": { - "title": "NPL_Surkhet.444160_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [81.62, 28.6] - } - }, { - "type": "Feature", - "properties": { - "title": "PAK_Karachi.417800_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [67.13, 24.9] - } - }, { - "type": "Feature", - "properties": { - "title": "PRK_Chongjin.470080_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [129.82, 41.78] - } - }, { - "type": "Feature", - "properties": { - "title": "PRK_Haeju.470690_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [125.7, 38.03] - } - }, { - "type": "Feature", - "properties": { - "title": "PRK_Pyongyang.470580_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [125.78, 39.03] - } - }, { - "type": "Feature", - "properties": { - "title": "RUS_Chita.307580_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [113.33, 52.02] - } - }, { - "type": "Feature", - "properties": { - "title": "RUS_Ekaterinburg.284400_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [60.63, 56.8] - } - }, { - "type": "Feature", - "properties": { - "title": "RUS_Irkutsk.307100_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [104.35, 52.27] - } - }, { - "type": "Feature", - "properties": { - "title": "RUS_Omsk.286980_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [73.4, 54.93] - } - }, { - "type": "Feature", - "properties": { - "title": "RUS_Yakutsk.249590_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [129.75, 62.08] - } - }, { - "type": "Feature", - "properties": { - "title": "SAU_Riyadh.404380_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [46.8, 24.7] - } - }, { - "type": "Feature", - "properties": { - "title": "THA_Bangkok.484560_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [100.6, 13.92] - } - }, { - "type": "Feature", - "properties": { - "title": "TWN_Taipei.466960_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [121.55, 25.07] - } - }, { - "type": "Feature", - "properties": { - "title": "UZB_Tashkent.384570_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [69.27, 41.27] - } - }, { - "type": "Feature", - "properties": { - "title": "VNM_Hanoi.488200_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [105.8, 21.02] - } - }, { - "type": "Feature", - "properties": { - "title": "AUT_Graz.112400_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [15.43, 47] - } - }, { - "type": "Feature", - "properties": { - "title": "AUT_Innsbruck.111200_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [11.35, 47.27] - } - }, { - "type": "Feature", - "properties": { - "title": "AUT_Linz.110100_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [14.2, 48.23] - } - }, { - "type": "Feature", - "properties": { - "title": "AUT_Salzburg.111500_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [13, 47.8] - } - }, { - "type": "Feature", - "properties": { - "title": "AUT_Vienna.Schwechat.110360_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [16.57, 48.12] - } - }, { - "type": "Feature", - "properties": { - "title": "BEL_Brussels.064510_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [4.53, 50.9] - } - }, { - "type": "Feature", - "properties": { - "title": "BEL_Oostende.064070_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [2.87, 51.2] - } - }, { - "type": "Feature", - "properties": { - "title": "BEL_Saint.Hubert.064760_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [5.4, 50.03] - } - }, { - "type": "Feature", - "properties": { - "title": "BGR_Plovdiv.156250_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [24.75, 42.13] - } - }, { - "type": "Feature", - "properties": { - "title": "BGR_Sofia.156140_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [23.38, 42.73] - } - }, { - "type": "Feature", - "properties": { - "title": "BGR_Varna.155520_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [27.92, 43.2] - } - }, { - "type": "Feature", - "properties": { - "title": "BIH_Banja.Luka.132420_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [17.22, 44.78] - } - }, { - "type": "Feature", - "properties": { - "title": "BLR_Minsk.268500_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [27.53, 53.87] - } - }, { - "type": "Feature", - "properties": { - "title": "CHE_Geneva.067000_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [6.13, 46.25] - } - }, { - "type": "Feature", - "properties": { - "title": "CYP_Larnaca.176090_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [33.63, 34.88] - } - }, { - "type": "Feature", - "properties": { - "title": "CZE_Ostrava.117820_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [18.18, 49.72] - } - }, { - "type": "Feature", - "properties": { - "title": "CZE_Prague.115180_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [14.28, 50.1] - } - }, { - "type": "Feature", - "properties": { - "title": "DEU_Berlin.103840_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [13.4, 52.47] - } - }, { - "type": "Feature", - "properties": { - "title": "DEU_Bremen.102240_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [8.8, 53.05] - } - }, { - "type": "Feature", - "properties": { - "title": "DEU_Dusseldorf.104000_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [6.78, 51.28] - } - }, { - "type": "Feature", - "properties": { - "title": "DEU_Frankfurt.am.Main.106370_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [8.6, 50.05] - } - }, { - "type": "Feature", - "properties": { - "title": "DEU_Hamburg.101470_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [10, 53.63] - } - }, { - "type": "Feature", - "properties": { - "title": "DEU_Koln.105130_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [7.17, 50.87] - } - }, { - "type": "Feature", - "properties": { - "title": "DEU_Mannheim.107290_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [8.55, 49.52] - } - }, { - "type": "Feature", - "properties": { - "title": "DEU_Munich.108660_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [11.7, 48.13] - } - }, { - "type": "Feature", - "properties": { - "title": "DEU_Stuttgart.107380_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [9.22, 48.68] - } - }, { - "type": "Feature", - "properties": { - "title": "DNK_Copenhagen.061800_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [12.67, 55.63] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Albacete.082800_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-1.85, 38.95] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Alicante.083600_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-0.5, 38.37] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Almeria.084870_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-2.38, 36.85] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Avila.082100_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.7, 40.66] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Badajoz.083300_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-6.81, 38.88] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Barcelona.081810_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [2.07, 41.28] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Barcelona.081810_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [2.07, 41.28] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Bilbao.08250_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-2.93, 43.3] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Burgos.080750_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-3.62, 42.36] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Caceres.082610_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-6.33, 39.47] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Castellon.082860_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-0.07, 39.95] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Ceuta.603200_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-5.29, 35.89] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Cordoba.084100_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.85, 37.84] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Cuenca.082310_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-2.14, 40.07] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Gerona.081840_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [2.77, 41.9] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Granada.084190_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-3.78, 37.18] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Guadalajara.082260_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-3.16, 40.63] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Huelva.083830_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-6.95, 37.26] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Huesca.080940_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-0.33, 42.08] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Jaen.084170_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-3.79, 37.78] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_La.Coruna.080010_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-8.42, 43.37] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Las.Palmas.600300_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-15.38, 27.93] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Leon.080550_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-5.65, 42.59] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Lerida.081710_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [0.6, 41.63] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Logrono.080840_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-2.33, 42.45] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Lugo.080080_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-7.48, 43.25] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Madrid.082210_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-3.55, 40.45] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Madrid.082210_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-3.68, 40.41] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Malaga.084820_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.49, 36.67] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Melilla.603380_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-2.95, 35.28] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Murcia.084300_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-0.8, 37.79] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Orense.080480_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-7.86, 42.33] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Oviedo.080150_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-5.87, 43.34] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Palencia.080720_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.54, 42.01] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Palma.083060_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [2.73, 39.55] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Palma.083060_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [2.73, 39.55] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Pamplona.080850_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-1.64, 42.76] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Pontevedra.080440_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-8.65, 42.43] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Salamanca.082020_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-5.5, 40.95] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_San.Sebastian.080270_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-2.05, 43.3] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Santander.080230_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-3.82, 43.47] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Santander.080230_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-3.82, 43.47] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Segovia.082130_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.13, 40.95] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Sevilla.083910_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-5.9, 37.42] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Sevilla.083910_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-5.9, 37.42] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Soria.081480_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-2.48, 41.77] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Tarragona.081760_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [0.49, 40.82] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Tenerife.600200_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-16.25, 28.47] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Teruel.082350_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-1.1, 40.34] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Toledo.082720_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.05, 39.88] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Valencia.082840_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-0.47, 39.5] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Valencia.082840_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-0.47, 39.5] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Valladolid.081410_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.77, 41.65] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Vitoria.080800_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-2.64, 42.85] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Zamora.081300_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-5.91, 41.5] - } - }, { - "type": "Feature", - "properties": { - "title": "ESP_Zaragoza.081600_SWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-1.02, 41.67] - } - }, { - "type": "Feature", - "properties": { - "title": "FIN_Helsinki.029740_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [24.97, 60.32] - } - }, { - "type": "Feature", - "properties": { - "title": "FIN_Tampere.029440_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [23.58, 61.42] - } - }, { - "type": "Feature", - "properties": { - "title": "FRA_Bordeaux.075100_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-0.7, 44.83] - } - }, { - "type": "Feature", - "properties": { - "title": "FRA_Brest.071100_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.42, 48.45] - } - }, { - "type": "Feature", - "properties": { - "title": "FRA_Clermont-Ferrand.074600_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [3.17, 45.78] - } - }, { - "type": "Feature", - "properties": { - "title": "FRA_Dijon.072800_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [5.08, 47.27] - } - }, { - "type": "Feature", - "properties": { - "title": "FRA_Lyon.074810_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [5.08, 45.73] - } - }, { - "type": "Feature", - "properties": { - "title": "FRA_Marseille.076500_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [5.23, 43.45] - } - }, { - "type": "Feature", - "properties": { - "title": "FRA_Montpellier.076430_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [3.97, 43.58] - } - }, { - "type": "Feature", - "properties": { - "title": "FRA_Nancy.071800_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [6.22, 48.68] - } - }, { - "type": "Feature", - "properties": { - "title": "FRA_Nantes.072220_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-1.6, 47.17] - } - }, { - "type": "Feature", - "properties": { - "title": "FRA_Nice.076900_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [7.2, 43.65] - } - }, { - "type": "Feature", - "properties": { - "title": "FRA_Paris.Orly.071490_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [2.4, 48.73] - } - }, { - "type": "Feature", - "properties": { - "title": "FRA_Strasbourg.071900_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [7.63, 48.55] - } - }, { - "type": "Feature", - "properties": { - "title": "GBR_Aberdeen.Dyce.030910_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-2.22, 57.2] - } - }, { - "type": "Feature", - "properties": { - "title": "GBR_Aughton.033220_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-2.92, 53.55] - } - }, { - "type": "Feature", - "properties": { - "title": "GBR_Belfast.039170_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-6.22, 54.65] - } - }, { - "type": "Feature", - "properties": { - "title": "GBR_Birmingham.035340_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-1.73, 52.45] - } - }, { - "type": "Feature", - "properties": { - "title": "GBR_Finningley.033600_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-1, 53.48] - } - }, { - "type": "Feature", - "properties": { - "title": "GBR_Hemsby.034960_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [1.68, 52.68] - } - }, { - "type": "Feature", - "properties": { - "title": "GBR_Jersey.Channel.Islands.038950_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-2.2, 49.22] - } - }, { - "type": "Feature", - "properties": { - "title": "GBR_Leuchars.031710_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-2.87, 56.38] - } - }, { - "type": "Feature", - "properties": { - "title": "GBR_London.Gatwick.037760_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-0.18, 51.15] - } - }, { - "type": "Feature", - "properties": { - "title": "GBR_Oban.031140_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-5.47, 56.42] - } - }, { - "type": "Feature", - "properties": { - "title": "GRC_Andravida.166820_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [21.28, 37.92] - } - }, { - "type": "Feature", - "properties": { - "title": "GRC_Athens.167160_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [23.73, 37.9] - } - }, { - "type": "Feature", - "properties": { - "title": "GRC_Thessaloniki.166220_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [22.97, 40.52] - } - }, { - "type": "Feature", - "properties": { - "title": "HUN_Debrecen.128820_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [21.63, 47.48] - } - }, { - "type": "Feature", - "properties": { - "title": "HUN_Szombathely.128120_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [16.63, 47.27] - } - }, { - "type": "Feature", - "properties": { - "title": "IRL_Belmullet.039760_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-10, 54.23] - } - }, { - "type": "Feature", - "properties": { - "title": "IRL_Birr.039650_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-7.88, 53.08] - } - }, { - "type": "Feature", - "properties": { - "title": "IRL_Clones.039740_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-7.23, 54.18] - } - }, { - "type": "Feature", - "properties": { - "title": "IRL_Dublin.039690_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-6.25, 53.43] - } - }, { - "type": "Feature", - "properties": { - "title": "IRL_Kilkenny.039600_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-7.27, 52.67] - } - }, { - "type": "Feature", - "properties": { - "title": "IRL_Malin.039800_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-7.33, 55.37] - } - }, { - "type": "Feature", - "properties": { - "title": "IRL_Valentia.Observatory.039530_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-10.25, 51.93] - } - }, { - "type": "Feature", - "properties": { - "title": "ISL_Reykjavik.040300_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-21.9, 64.13] - } - }, { - "type": "Feature", - "properties": { - "title": "ISR_Beer.Sheva.401900_MSI", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [34.8, 31.25] - } - }, { - "type": "Feature", - "properties": { - "title": "ISR_Eilat.401990_MSI", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [34.95, 29.55] - } - }, { - "type": "Feature", - "properties": { - "title": "ISR_Jerusalem-Atarot.AP.401840_MSI", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [35.22, 31.87] - } - }, { - "type": "Feature", - "properties": { - "title": "ISR_Jerusalem.401840_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [35.22, 31.78] - } - }, { - "type": "Feature", - "properties": { - "title": "ISR_Tel.Aviv-Bet.Dagan.401790_MSI", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [34.82, 32] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Alghero.165200_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [8.28, 40.63] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Ancona-Falconara.161910_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [13.37, 43.62] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Ancona.161910_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [13.52, 43.62] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Aviano.160370_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [12.6, 46.03] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Bari-Palese.Macchie.162700_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [16.78, 41.13] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Bergamo-Orio.al.Serio.160760_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [9.7, 45.67] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Bologna-Borgo.Panigale.161400_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [11.3, 44.53] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Bolzano.160200_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [11.33, 46.47] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Bonifati.163370_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [15.88, 39.58] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Brescia-Ghedi.160880_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [10.28, 45.42] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Brindisi.163200_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [17.95, 40.65] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Brindisi.163200_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [17.95, 40.65] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Cagliari-Elmas.165600_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [9.05, 39.25] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Campobasso.162520_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [14.65, 41.57] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Capo.Bellavista.165500_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [9.72, 39.93] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Capo.Palinuro.163100_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [15.28, 40.02] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Catania-Fontanarossa.164600_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [15.05, 37.47] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Catania-Sigonella.164590_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [14.92, 37.4] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Cozzo.Spadaro.164800_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [15.13, 36.68] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Crotone.163500_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [17.07, 39.07] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Enna.164500_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [14.28, 37.57] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Firenze-Peretola.161700_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [11.2, 43.8] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Foggia.162610_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [15.53, 41.42] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Gela.164530_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [14.22, 37.08] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Genova-Sestri.161200_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [8.85, 44.42] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Genova.161200_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [8.85, 44.42] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Gioia.del.Colle.163120_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [16.93, 40.77] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Grosseto.162060_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [11.07, 42.75] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Lecce.163320_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [18.15, 40.23] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Marina.di.Ravenna._IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [12.28, 44.47] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Messina.164200_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [15.55, 38.2] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Messina.164200_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [15.55, 38.2] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Milan.160660_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [8.73, 45.62] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Milano-Linate.160800_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [9.28, 45.43] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Milano-Malpensa.160660_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [8.73, 45.62] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Monte.Cimone.161340_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [10.7, 44.2] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Monte.Terminillo.162190_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [12.98, 42.47] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Naples.162890_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [14.3, 40.85] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Napoli-Capodichino.162890_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [14.3, 40.85] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Novara-Cameri.160640_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [8.67, 45.65] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Olbia-Costa.Smeralda.165310_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [8.5, 40.93] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Paganella.160220_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [11.03, 46.15] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Palermo-Boccadifalco.164000_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [13.3, 38.1] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Palermo-Punta.Raisi.164050_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [13.1, 38.18] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Palermo.164050_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [13.1, 38.18] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Parma.161300_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [10.19, 44.48] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Patelleria.164700_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [11.97, 36.82] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Perugia.161810_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [12.5, 43.08] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Pescara.162300_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [14.2, 42.85] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Piacenza.160840_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [9.73, 44.92] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Pianosa_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [10.1, 42.58] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Pisa-S.Gusto.161580_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [10.38, 43.67] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Pisa.161580_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [10.38, 43.68] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Ponza.162800_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [12.95, 40.92] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Potenza.163000_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [15.8, 40.63] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Pratica.di.Mare.162450_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [12.6, 41.65] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Rimini.161490_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [12.62, 44.03] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Roma-Ciampino.162390_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [12.58, 41.8] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Roma-Fiumicino.162420_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [12.23, 41.8] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Rome.162420_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [12.23, 41.8] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_S.Maria.di.Leuca.163600_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [18.35, 39.65] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_San.Remo.161530_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [8.17, 43.95] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Taranto.163250_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [16.88, 40.43] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Tarvisio.160400_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [13.58, 46.5] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Torino-Caselle.160590_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [7.65, 45.18] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Torino.160590_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [7.65, 45.22] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Trapani-Birgi.164290_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [12.5, 37.92] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Treviso-Istrana.160980_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [12.1, 45.68] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Treviso-S.Angelo.160990_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [12.18, 45.65] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Trieste.161100_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [13.75, 45.65] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Udine-Campoformido.160440_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [13.18, 46.03] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Ustica.164000_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [13.18, 38.7] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Venezia-Tessera.161050_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [12.33, 45.5] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Venice.161050_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [12.33, 45.5] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Verona-Villafranca.160900_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [10.87, 45.38] - } - }, { - "type": "Feature", - "properties": { - "title": "ITA_Vicenza.160940_IGDG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [11.52, 45.57] - } - }, { - "type": "Feature", - "properties": { - "title": "LTU_Kaunas.266290_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [23.88, 54.88] - } - }, { - "type": "Feature", - "properties": { - "title": "NLD_Amsterdam.062400_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [4.77, 52.3] - } - }, { - "type": "Feature", - "properties": { - "title": "NLD_Beek.063800_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [5.78, 50.92] - } - }, { - "type": "Feature", - "properties": { - "title": "NLD_Groningen.062800_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [6.58, 53.13] - } - }, { - "type": "Feature", - "properties": { - "title": "NOR_Bergen.013110_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [5.22, 60.3] - } - }, { - "type": "Feature", - "properties": { - "title": "NOR_Oslo.Fornebu.014880_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [10.62, 59.9] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Bialystok.122950_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [23.25, 53] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Bielsko.Biala.126000_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [19.25, 49.67] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Bydgoszcz.122400_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [18, 53.15] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Chojnice.122350_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [17.57, 53.7] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Czestochowa.125500_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [19, 50.75] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Elblag.121600_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [19.43, 54.15] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Gdansk.Port.Polnocny.121400_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [18.63, 54.35] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Gorzow.Wlkp.123000_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [15.23, 52.73] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Hel.121350_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [18.78, 54.62] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Jelenia.Gora.125000_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [15.73, 50.9] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Kalisz.124350_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [18.08, 51.75] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Kasprowy.Wierch.126500_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [19.97, 49.28] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Katowice.125600_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [19.03, 50.23] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Ketrzyn.121850_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [21.38, 54.08] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Kielce.125700_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [20.67, 50.83] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Klodzko.125200_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [16.65, 50.43] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Kolo.123450_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [18.62, 52.18] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Kolobrzeg.121000_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [15.58, 54.18] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Kolobrzeg.121000_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [15.58, 54.18] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Koszalin.121050_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [16.18, 54.2] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Krakow.125660_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [19.92, 50.08] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Krakow.125660_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [19.8, 50.08] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Krosno.126700_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [21.78, 49.68] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Leba.121200_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [17.55, 54.75] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Lebork.121250_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [17.75, 54.55] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Legnica.124150_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [16.2, 51.2] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Lesko.126900_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [22.32, 49.45] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Leszno.124180_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [16.53, 51.83] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Lodz.124650_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [19.47, 51.75] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Lublin.Radawiec.124950_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [22.5, 51.25] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Mikolajki.122800_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [21.58, 53.8] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Mlawa.122700_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [20.38, 53.12] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Nowy.Sacz.126600_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [20.5, 49.58] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Olsztyn.122720_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [20.48, 53.78] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Opole.125300_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [17.95, 50.67] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Ostroleka.122850_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [19.13, 51.17] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Pila.122300_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [16.75, 53.15] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Plock.123600_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [19.7, 52.55] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Poznan.123300_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [16.97, 52.42] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Poznan.123300_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [16.83, 52.42] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Przemysl.126950_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [22.78, 49.78] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Raciborz.125400_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [18.2, 50.08] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Resko.122100_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [15.12, 53.72] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Rzeszow.Jasionka.125800_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [22.02, 50.1] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Sandomierz.125850_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [21.75, 50.68] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Siedlce.123850_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [22.3, 52.17] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Slubice.123100_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [14.58, 52.35] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Sniezka.125100_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [15.73, 50.74] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Sulejow.124690_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [19.88, 51.37] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Suwalki.121950_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [22.93, 54.1] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Swinoujscie.122000_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [14.25, 53.92] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Szczecin.122050_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [14.67, 53.4] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Szczecinek.122150_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [16.7, 53.72] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Tarnow.125750_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [20.98, 50.02] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Terespol.123990_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [23.57, 52.08] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Torun.122500_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [23.08, 51.1] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Ustka.121150_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [16.85, 54.58] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Warsaw.123750_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [20.97, 52.17] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Warszawa.Okecie.123750_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [21, 52.25] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Wielun.124550_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [18.55, 51.22] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Wlodawa.124970_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [23.55, 51.55] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Wroclaw.124240_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [17.03, 51.1] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Zakopane.126250_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [19.97, 49.3] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Zamosc.125950_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [23.25, 50.75] - } - }, { - "type": "Feature", - "properties": { - "title": "POL_Zielona.Gora.124000_IMGW", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [15.5, 51.93] - } - }, { - "type": "Feature", - "properties": { - "title": "PRT_Braganca.085750_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-6.73, 41.8] - } - }, { - "type": "Feature", - "properties": { - "title": "PRT_Coimbra.085490_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-8.42, 40.2] - } - }, { - "type": "Feature", - "properties": { - "title": "PRT_Evora.085570_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-7.9, 38.57] - } - }, { - "type": "Feature", - "properties": { - "title": "PRT_Faro.085540_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-7.97, 37.02] - } - }, { - "type": "Feature", - "properties": { - "title": "PRT_Funchal.Madeira-Islands.085210_INETI", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-16.92, 32.65] - } - }, { - "type": "Feature", - "properties": { - "title": "PRT_Lajes.085090_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-27.1, 38.77] - } - }, { - "type": "Feature", - "properties": { - "title": "PRT_Lisboa.085360_INETI", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-9.15, 38.73] - } - }, { - "type": "Feature", - "properties": { - "title": "PRT_Porto.085450_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-8.68, 41.23] - } - }, { - "type": "Feature", - "properties": { - "title": "ROU_Bucharest.154200_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [26.13, 44.5] - } - }, { - "type": "Feature", - "properties": { - "title": "ROU_Cluj-Napoca.151200_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [23.57, 46.78] - } - }, { - "type": "Feature", - "properties": { - "title": "ROU_Constanta.154800_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [28.63, 44.22] - } - }, { - "type": "Feature", - "properties": { - "title": "ROU_Craiova.154500_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [23.87, 44.23] - } - }, { - "type": "Feature", - "properties": { - "title": "ROU_Galati.153100_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [28.02, 45.5] - } - }, { - "type": "Feature", - "properties": { - "title": "ROU_Timisoara.152470_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [21.25, 45.77] - } - }, { - "type": "Feature", - "properties": { - "title": "RUS_Arkhangelsk.225500_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [40.47, 64.53] - } - }, { - "type": "Feature", - "properties": { - "title": "RUS_Moscow.276120_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [37.63, 55.75] - } - }, { - "type": "Feature", - "properties": { - "title": "RUS_Saint-Petersburg.260630_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [30.3, 59.97] - } - }, { - "type": "Feature", - "properties": { - "title": "RUS_Samara.289000_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [50.45, 53.25] - } - }, { - "type": "Feature", - "properties": { - "title": "SRB_Belgrade.132720_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [20.28, 44.82] - } - }, { - "type": "Feature", - "properties": { - "title": "SRB_Podgorica.134620_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [19.25, 42.37] - } - }, { - "type": "Feature", - "properties": { - "title": "SVK_Bratislava.118160_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [17.2, 48.2] - } - }, { - "type": "Feature", - "properties": { - "title": "SVK_Kosice.119680_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [21.27, 48.7] - } - }, { - "type": "Feature", - "properties": { - "title": "SVN_Ljubljana.130140_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [14.48, 46.22] - } - }, { - "type": "Feature", - "properties": { - "title": "SWE_Goteborg.Landvetter.025260_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [12.3, 57.67] - } - }, { - "type": "Feature", - "properties": { - "title": "SWE_Karlstad.024180_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [13.47, 59.37] - } - }, { - "type": "Feature", - "properties": { - "title": "SWE_Kiruna.020440_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [20.33, 67.82] - } - }, { - "type": "Feature", - "properties": { - "title": "SWE_Ostersund.Froson.022260_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [14.5, 63.18] - } - }, { - "type": "Feature", - "properties": { - "title": "SWE_Stockholm.Arlanda.024600_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [17.95, 59.65] - } - }, { - "type": "Feature", - "properties": { - "title": "SYR_Damascus.400800_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [36.52, 33.42] - } - }, { - "type": "Feature", - "properties": { - "title": "TUR_Ankara.171280_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [32.98, 40.12] - } - }, { - "type": "Feature", - "properties": { - "title": "TUR_Istanbul.170600_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [28.82, 40.97] - } - }, { - "type": "Feature", - "properties": { - "title": "TUR_Izmir.172180_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [27.02, 38.5] - } - }, { - "type": "Feature", - "properties": { - "title": "UKR_Kiev.333450_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [30.45, 50.4] - } - }, { - "type": "Feature", - "properties": { - "title": "UKR_Odessa.338370_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [30.7, 46.45] - } - }, { - "type": "Feature", - "properties": { - "title": "BLZ_Belize.785830_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.3, 17.53] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_AB_Calgary.718770_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-114.02, 51.12] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_AB_Edmonton.711230_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-114.1, 53.53] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_AB_Fort.McMurray.719320_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-111.22, 56.65] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_AB_Grande.Prairie.719400_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-118.88, 55.18] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_AB_Lethbridge.712430_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-112.8, 49.63] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_AB_Medicine.Hat.718720_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-110.72, 50.02] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_BC_Abbotsford.711080_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.37, 49.03] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_BC_Comox.718930_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-124.9, 49.72] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_BC_Cranbrook.718800_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-115.78, 49.6] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_BC_Fort.St.John.719430_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-120.73, 56.23] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_BC_Kamloops.718870_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-120.45, 50.7] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_BC_Port.Hardy.711090_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-127.37, 50.68] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_BC_Prince.George.718960_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.68, 53.88] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_BC_Prince.Rupert.718980_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-130.43, 54.3] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_BC_Sandspit.711010_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-131.82, 53.25] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_BC_Smithers.719500_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-127.18, 54.82] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_BC_Summerland.717680_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-119.65, 49.57] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_BC_Vancouver.718920_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-123.17, 49.18] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_BC_Victoria.717990_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-123.43, 48.65] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_MB_Brandon.711400_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-99.95, 49.92] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_MB_Churchill.719130_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.07, 58.75] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_MB_The.Pas.718670_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-101.1, 53.97] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_MB_Winnipeg.718520_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.23, 49.9] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_NB_Fredericton.717000_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-66.53, 45.87] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_NB_Miramichi.717440_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-65.45, 47.02] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_NB_Saint.John.716090_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-65.88, 45.32] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_NF_Battle.Harbour.718170_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-55.83, 52.3] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_NF_Gander.718030_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-54.57, 48.95] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_NF_Goose.718160_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-60.37, 53.32] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_NF_St.Johns.718010_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-52.73, 47.62] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_NF_Stephenville.718150_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.55, 48.53] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_NS_Greenwood.713970_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.92, 44.98] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_NS_Sable.Island.716000_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-60.02, 43.93] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_NS_Shearwater.716010_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-63.5, 44.63] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_NS_Sydney.717070_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-60.05, 46.17] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_NS_Truro.713980_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-63.27, 45.37] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_NT_Inuvik.719570_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-133.48, 68.3] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_NT_Yellowknife.719360_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-114.45, 62.47] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_NU_Resolute.719240_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.98, 74.72] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_ON_Kingston.716200_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.6, 44.22] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_ON_London.716230_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.15, 43.03] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_ON_Mount.Forest.716310_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.75, 43.98] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_ON_Muskoka.716300_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.3, 44.97] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_ON_North.Bay.717310_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.43, 46.35] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_ON_Ottawa.716280_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.67, 45.32] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_ON_Sault.Ste.Marie.712600_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.52, 46.48] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_ON_Simcoe.715270_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.27, 42.85] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_ON_Thunder.Bay.717490_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-89.32, 48.37] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_ON_Timmins.717390_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.37, 48.57] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_ON_Toronto.716240_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.63, 43.67] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_ON_Trenton.716210_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.53, 44.12] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_ON_Windsor.715380_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.97, 42.27] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_PE_Charlottetown.717060_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-63.13, 46.28] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_PQ_Bagotville.717270_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-71, 48.33] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_PQ_Baie.Comeau.711870_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-68.2, 49.13] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_PQ_Grindstone.Island_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.87, 47.38] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_PQ_Kuujjuarapik.719050_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.77, 55.28] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_PQ_Kuujuaq.719060_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-68.42, 58.1] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_PQ_La.Grande.Riviere.718270_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.7, 53.63] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_PQ_Lake.Eon.714210_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-63.28, 51.87] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_PQ_Mont.Joli.717180_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-68.22, 48.6] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_PQ_Montreal.Intl.AP.716270_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-73.75, 45.47] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_PQ_Montreal.Jean.Brebeuf.716278_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-73.62, 45.5] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_PQ_Montreal.Mirabel.716278_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-74.03, 45.68] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_PQ_Nitchequon.CAN270_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-70.9, 53.2] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_PQ_Quebec.717140_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-71.38, 46.8] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_PQ_Riviere.du.Loup.717150_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-69.55, 47.8] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_PQ_Roberval.717280_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.27, 48.52] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_PQ_Schefferville.718280_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-66.82, 54.8] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_PQ_Sept-Iles.718110_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-66.27, 50.22] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_PQ_Sherbrooke.716100_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-71.68, 45.43] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_PQ_St.Hubert.713710_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-73.42, 45.52] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_PQ_Ste.Agathe.des.Monts.717200_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-74.28, 46.05] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_PQ_Val.d.Or.717250_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.78, 48.07] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_SK_Estevan.718620_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-102.97, 49.22] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_SK_North.Battleford.718760_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-108.25, 52.77] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_SK_Regina.718630_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-104.67, 50.43] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_SK_Saskatoon.718660_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-106.68, 52.17] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_SK_Swift.Current.718700_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-107.68, 50.28] - } - }, { - "type": "Feature", - "properties": { - "title": "CAN_YT_Whitehorse.719640_CWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-135.07, 60.72] - } - }, { - "type": "Feature", - "properties": { - "title": "CUB_Bahia.Honda.783180_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.15, 22.9] - } - }, { - "type": "Feature", - "properties": { - "title": "CUB_Camaguey.783550_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.85, 21.4] - } - }, { - "type": "Feature", - "properties": { - "title": "CUB_Casa.Blanca.783250_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.35, 23.17] - } - }, { - "type": "Feature", - "properties": { - "title": "CUB_Cienfuegos.783440_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.45, 22.13] - } - }, { - "type": "Feature", - "properties": { - "title": "CUB_Guantanamo.Bay.NAS.783670_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.22, 19.9] - } - }, { - "type": "Feature", - "properties": { - "title": "CUB_Guantanamo.Bay.NAS.783670_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.15, 19.9] - } - }, { - "type": "Feature", - "properties": { - "title": "CUB_Havana-Jose.Marti.782240_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.4, 22.98] - } - }, { - "type": "Feature", - "properties": { - "title": "CUB_Havana.782240_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.4, 22.98] - } - }, { - "type": "Feature", - "properties": { - "title": "CUB_La.Bajada.783110_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.47, 21.92] - } - }, { - "type": "Feature", - "properties": { - "title": "CUB_La.Fe.783210_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.77, 21.73] - } - }, { - "type": "Feature", - "properties": { - "title": "CUB_Paso.Real.de.San.Diego.783170_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.3, 22.57] - } - }, { - "type": "Feature", - "properties": { - "title": "CUB_Pinar.del.Rio.783150_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.68, 22.42] - } - }, { - "type": "Feature", - "properties": { - "title": "CUB_Playa.Giron.783330_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.03, 22.07] - } - }, { - "type": "Feature", - "properties": { - "title": "CUB_Puerto.Padre.783580_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.6, 21.2] - } - }, { - "type": "Feature", - "properties": { - "title": "CUB_Punta.de.Maisi.783690_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-74.15, 20.25] - } - }, { - "type": "Feature", - "properties": { - "title": "CUB_Sancti.Spiritus.783490_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.45, 21.93] - } - }, { - "type": "Feature", - "properties": { - "title": "CUB_Santiago.de.Cuba.782640_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.85, 19.97] - } - }, { - "type": "Feature", - "properties": { - "title": "CUB_Saua.la.Grande.783380_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.08, 22.82] - } - }, { - "type": "Feature", - "properties": { - "title": "CUB_Union.de.Reyes.783270_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.53, 22.77] - } - }, { - "type": "Feature", - "properties": { - "title": "CUB_Varadero.782290_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.28, 23.13] - } - }, { - "type": "Feature", - "properties": { - "title": "GTM_Flores.786150_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-89.88, 16.92] - } - }, { - "type": "Feature", - "properties": { - "title": "GTM_Guatemala-La.Aurora.786410_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-90.52, 14.58] - } - }, { - "type": "Feature", - "properties": { - "title": "GTM_Huehuetenango.786270_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-91.47, 15.32] - } - }, { - "type": "Feature", - "properties": { - "title": "GTM_Puerto.Barrios.786370_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.6, 15.72] - } - }, { - "type": "Feature", - "properties": { - "title": "GTM_San.Jose.786470_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-90.82, 13.92] - } - }, { - "type": "Feature", - "properties": { - "title": "HND_Amapala.787000_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-87.67, 13.28] - } - }, { - "type": "Feature", - "properties": { - "title": "HND_Catacamas.787140_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-85.93, 14.9] - } - }, { - "type": "Feature", - "properties": { - "title": "HND_Choluteca.787240_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-87.18, 13.3] - } - }, { - "type": "Feature", - "properties": { - "title": "HND_La.Ceiba-Goloson.787050_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.87, 15.73] - } - }, { - "type": "Feature", - "properties": { - "title": "HND_La.Mesa-San.Pedro.Sula.787080_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-87.93, 15.45] - } - }, { - "type": "Feature", - "properties": { - "title": "HND_Puerto.Lempira.787110_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.8, 15.22] - } - }, { - "type": "Feature", - "properties": { - "title": "HND_Santa.Rosa.de.Copan.787170_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.78, 14.78] - } - }, { - "type": "Feature", - "properties": { - "title": "HND_Tela.787060_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-87.48, 15.72] - } - }, { - "type": "Feature", - "properties": { - "title": "MEX_Acapulco.768056_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-99.75, 16.77] - } - }, { - "type": "Feature", - "properties": { - "title": "MEX_Mexico.City.766790_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-99.08, 19.43] - } - }, { - "type": "Feature", - "properties": { - "title": "MEX_Veracruz.766910_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.13, 19.2] - } - }, { - "type": "Feature", - "properties": { - "title": "MTQ_Fort-de-France.789250_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-61, 14.6] - } - }, { - "type": "Feature", - "properties": { - "title": "NIC_Chinandega.787390_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-87.13, 12.63] - } - }, { - "type": "Feature", - "properties": { - "title": "NIC_Managua-Augusto.CES.787410_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.17, 12.15] - } - }, { - "type": "Feature", - "properties": { - "title": "NIC_Rivas.787330_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-85.83, 11.42] - } - }, { - "type": "Feature", - "properties": { - "title": "PRI_Aguadilla-Borinquen.AP.785140_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-67.13, 18.5] - } - }, { - "type": "Feature", - "properties": { - "title": "PRI_Mayaguez-Eugenio.Maria.de.Hostos.AP.785145_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-67.15, 18.25] - } - }, { - "type": "Feature", - "properties": { - "title": "PRI_Mercedita.AP.785203_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-66.55, 18] - } - }, { - "type": "Feature", - "properties": { - "title": "PRI_Roosevelt.Roads.NAS.785350_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-65.63, 18.25] - } - }, { - "type": "Feature", - "properties": { - "title": "PRI_San.Juan-Luis.Munoz.Marin.Intl.AP.785263_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-66, 18.43] - } - }, { - "type": "Feature", - "properties": { - "title": "PRI_San.Juan.785260_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-66, 18.43] - } - }, { - "type": "Feature", - "properties": { - "title": "PRI_San.Juan.Intl.AP.785260_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-66, 18.42] - } - }, { - "type": "Feature", - "properties": { - "title": "SLV_Acajutla.786500_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-89.83, 13.57] - } - }, { - "type": "Feature", - "properties": { - "title": "SLV_San.Salvador-Ilopango.786630_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-89.12, 13.7] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Adak.NAS.704540_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-176.65, 51.88] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Adak.NAS.704540_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-176.65, 51.88] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Ambler.701718_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-157.85, 67.1] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Anaktuvuk.Pass.701625_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-151.73, 68.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Anchorage-Elmendorf.AFB.702720_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-149.8, 61.25] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Anchorage-Lake.Hood.Seaplane.Base.702725_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-149.97, 61.18] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Anchorage-Merrill.Field.702735_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-149.85, 61.22] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Anchorage.702730_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-150.02, 61.17] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Anchorage.Intl.AP.702730_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-150, 61.18] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Aniak.AP.702320_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-159.53, 61.58] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Annette.703980_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-131.57, 55.03] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Annette.Island.AP.703980_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-131.57, 55.03] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Annette.Island.AP.703980_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-131.57, 55.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Anvik.702075_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-160.18, 62.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Barrow-W.Post-W.Rogers.AP.700260_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-156.62, 71.32] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Barrow.700260_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-156.78, 71.3] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Bethel.702190_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-161.8, 60.78] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Bethel.AP.702190_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-161.8, 60.78] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Bethel.AP.702190_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-161.83, 60.78] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Bettles.701740_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-151.52, 66.92] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Bettles.Field.701740_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-151.52, 66.92] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Big.Delta-Allen.AAF.702670_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-145.73, 64] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Big.Delta-Allen.AAF.702670_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-145.72, 64] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Big.Delta.702670_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-145.73, 64] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Big.River.Lake.702986_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-152.3, 60.82] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Birchwood.702746_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-149.52, 61.42] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Chulitna.702606_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-149.83, 62.88] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Cold.Bay.703160_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-162.72, 55.2] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Cold.Bay.AP.703160_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-162.72, 55.2] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Cordova.702960_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-145.5, 60.5] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Deadhorse.700637_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-148.48, 70.2] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Dillingham.AWOS.703210_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-158.52, 59.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Eielson.AFB.702650_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-147.1, 64.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Emmonak.702084_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-164.5, 62.78] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Fairbanks.702610_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-147.87, 64.82] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Fairbanks.Intl.AP.702610_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-147.87, 64.82] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Fairbanks.Intl.AP.702610_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-147.85, 64.82] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Fort.Yukon.701940_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-145.27, 66.57] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Gambell.702040_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-171.75, 63.78] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Gulkana.702710_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-145.45, 62.15] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Gulkana.702710_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-145.45, 62.15] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Gulkana.702710_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-145.45, 62.15] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Gustavus.703670_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-135.7, 58.42] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Hayes.River.702495_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-152.08, 61.98] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Healy.River.AP.702647_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-149.02, 63.88] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Homer.AP.703410_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-151.48, 59.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Homer.AP.703410_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-151.48, 59.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Hoonah.702607_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-135.45, 58.08] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Hooper.Bay.702186_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-166.15, 61.52] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Huslia.702225_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-156.38, 65.7] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Hydaburg.Seaplane.Base.703884_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-132.83, 55.2] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Iliamna.AP.703400_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-154.92, 59.75] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Juneau.Intl.AP.703810_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-134.58, 58.35] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Juneau.Intl.AP.703810_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-134.58, 58.35] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Kake.Seaplane.Base.703855_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-133.95, 56.97] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Kenai.Muni.AP.702590_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-151.23, 60.58] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Ketchikan.Intl.AP.703950_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-131.72, 55.37] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_King.Salmon.703260_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-156.65, 58.68] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_King.Salmon.AP.703260_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-156.65, 58.68] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_King.Salmon.AP.703260_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-156.65, 58.68] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Kodiak.703500_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-152.33, 57.75] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Kodiak.AP.703500_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-152.5, 57.75] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Kodiak.AP.703500_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-152.5, 57.75] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Kotzebue-Ralph.Wein.Mem.AP.701330_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-162.6, 66.88] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Kotzebue.701330_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-162.63, 66.87] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_McGrath.702310_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-155.62, 62.97] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_McGrath.AP.702310_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-155.62, 62.97] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_McGrath.AP.702310_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-155.6, 62.95] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Mekoryuk.702185_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-166.27, 60.37] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Middleton.Island.703430_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-146.32, 59.47] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Minchumina.702460_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-152.28, 63.88] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Nenana.Muni.AP.702600_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-149.1, 64.55] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Nome.702000_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-165.43, 64.5] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Nome.Muni.AP.702000_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-165.43, 64.5] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Nome.Muni.AP.702000_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-165.45, 64.52] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Northway.AP.702910_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-141.93, 62.97] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Palmer.Muni.AP.702740_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-149.08, 61.6] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Petersburg.703860_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-132.95, 56.8] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Point.Hope.AWOS.701043_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-166.8, 68.35] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Port.Heiden.703330_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-158.62, 56.95] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Saint.Marys.AWOS.702005_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-163.3, 62.07] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Sand.Point.703165_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-160.52, 55.32] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Savoonga.702035_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-170.5, 63.68] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Selawik.700197_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-160, 66.6] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Seward.702770_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-149.45, 60.12] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Shemya.AFB.704140_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [174.12, 52.72] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Shishmaref.AWOS.701195_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-166.05, 66.27] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Sitka-Japonski.Island.AP.703710_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-135.37, 57.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Skagway.AP.703620_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-135.3, 59.47] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Sleetmute.703407_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-157.15, 61.72] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Soldotna.702595_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-151.03, 60.47] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_St.Paul.Island.703080_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-170.22, 57.15] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_St.Paul.Island.AP.703080_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-170.22, 57.17] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Summit.702640_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-149.13, 63.33] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Talkeetna.702510_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-150.1, 62.3] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Talkeetna.State.AP.702510_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-150.1, 62.32] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Tanana-Ralph.Calhoun.AP.701780_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-152.1, 65.17] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Togiak.Village.AWOS.703606_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-160.4, 59.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Unalakleet.Field.702070_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-160.8, 63.88] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Unalaska-Dutch.Harbor.Field.704890_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-166.55, 53.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Valdez-Pioneer.Field.702756_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-146.27, 61.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Valdez.702750_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-146.35, 61.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Whittier.702757_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-148.68, 60.77] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Wrangell.703870_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-132.37, 56.48] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Yakutat.703610_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-139.67, 59.52] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Yakutat.State.AP.703610_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-139.67, 59.52] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AK_Yakutat.State.AP.703610_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-139.63, 59.52] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AL_Anniston.Metro.AP.722287_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-85.85, 33.58] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AL_Auburn-Opelika.AP.722284_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-85.43, 32.62] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AL_Birmingham.722280_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.75, 33.57] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AL_Birmingham.Muni.AP.722280_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.75, 33.57] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AL_Birmingham.Muni.AP.722280_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.75, 33.57] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AL_Dothan.Muni.AP.722268_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-85.43, 31.23] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AL_Fort.Rucker-Cairns.Field.722269_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-85.72, 31.27] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AL_Gadsen.Muni.AWOS.722285_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.08, 33.97] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AL_Huntsville.723230_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.77, 34.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AL_Huntsville.Intl.AP-Jones.Field.723230_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.78, 34.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AL_Maxwell.AFB.722265_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.35, 32.38] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AL_Mobile-Downtown.AP.722235_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.07, 30.63] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AL_Mobile-Rgnl.AP.722230_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.25, 30.68] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AL_Mobile-Rgnl.AP.722230_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.25, 30.68] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AL_Mobile.722230_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.25, 30.68] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AL_Montgomery-Dannelly.Field.722260_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.4, 32.3] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AL_Montgomery-Dannelly.Field.722260_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.4, 32.3] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AL_Montgomery.722260_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.4, 32.3] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AL_Muscle.Shoals.Rgnl.AP.723235_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-87.6, 34.75] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AL_Troy.Air.Field.722267_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.02, 31.87] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AL_Tuscaloosa.Muni.AP.722286_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-87.62, 33.22] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AR_Batesville.AWOS.723448_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-91.65, 35.73] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AR_Bentonville.AWOS.723444_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.22, 36.35] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AR_El.Dorado-Goodwin.Field.723419_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-92.82, 33.22] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AR_Fayetteville-Drake.Field.723445_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.17, 36] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AR_Flippin.AWOS.723447_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-92.47, 36.3] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AR_Fort.Smith.723440_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.37, 35.33] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AR_Fort.Smith.Rgnl.AP.723440_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.37, 35.33] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AR_Fort.Smith.Rgnl.AP.723440_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.37, 35.33] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AR_Harrison.AP.723446_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.15, 36.27] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AR_Hot.Springs.Mem.AP.723415_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.1, 34.47] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AR_Jonesboro.Muni.AP.723407_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-90.65, 35.83] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AR_Little.Rock-Adams.Field.723403_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-92.15, 34.92] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AR_Little.Rock-Adams.Field.723403_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-92.23, 34.75] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AR_Little.Rock.723405_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-92.23, 34.73] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AR_Little.Rock.AFB.723405_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-92.15, 34.92] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AR_Pine.Bluff.AP.723417_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-91.93, 34.17] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AR_Rogers.AWOS.723449_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.1, 36.37] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AR_Siloam.Spring.AWOS.723443_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.48, 36.18] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AR_Springdale.Muni.AP.723434_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.12, 36.18] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AR_Stuttgart.AWOS.723416_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-91.57, 34.6] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AR_Texarkana-Webb.Field.723418_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94, 33.45] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AR_Walnut.Ridge.AWOS.723406_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-90.92, 36.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AZ_Casa.Grande.AWOS.722748_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-111.77, 32.95] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AZ_Davis-Monthan.AFB.722745_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-110.88, 32.17] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AZ_Douglas-Bisbee.Douglas.Intl.AP.722735_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-109.6, 31.47] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AZ_Flagstaff-Pulliam.AP.723755_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-111.67, 35.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AZ_Flagstaff.723755_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-111.67, 35.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AZ_Grand.Canyon.National.Park.AP.723783_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-112.15, 35.95] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AZ_Kingman.AWOS.723700_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-113.95, 35.27] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AZ_Luke.AFB.722785_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-112.37, 33.55] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AZ_Page.Muni.AWOS.723710_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-111.45, 36.93] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AZ_Phoenix-Deer.Valley.AP.722784_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-112.08, 33.68] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-112.02, 33.43] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-111.98, 33.45] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AZ_Phoenix.722780_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-112.02, 33.43] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AZ_Prescott-Love.Field.723723_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-112.42, 34.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AZ_Prescott-Love.Field.723723_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-112.42, 34.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AZ_Prescott.723723_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-112.43, 34.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AZ_Safford.AWOS.722747_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-109.68, 32.82] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AZ_Scottsdale.Muni.AP.722789_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-111.92, 33.62] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AZ_Show.Low.Muni.AP.723747_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-110, 34.27] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AZ_Tucson.722740_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-110.93, 32.12] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AZ_Tucson.Intl.AP.722740_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-110.93, 32.12] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AZ_Tucson.Intl.AP.722740_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-110.95, 32.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AZ_Winslow.Muni.AP.723740_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-110.71, 35.03] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AZ_Winslow.Muni.AP.723740_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-110.72, 35.03] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AZ_Yuma.Intl.AP.722800_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-114.6, 32.66] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AZ_Yuma.Intl.AP.722800_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-114.6, 32.67] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_AZ_Yuma.MCAS.699604_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-114.62, 32.65] - } - }, { - "type": "Feature", - "properties": { - "title": "CZ01RV2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-124.2, 40.8] - } - }, { - "type": "Feature", - "properties": { - "title": "CZ02RV2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.7, 38.4] - } - }, { - "type": "Feature", - "properties": { - "title": "CZ03RV2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.2, 37.7] - } - }, { - "type": "Feature", - "properties": { - "title": "CZ04RV2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.4, 37.4] - } - }, { - "type": "Feature", - "properties": { - "title": "CZ05RV2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-120.4, 34.9] - } - }, { - "type": "Feature", - "properties": { - "title": "CZ06RV2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-118.5, 33.9] - } - }, { - "type": "Feature", - "properties": { - "title": "CZ07RV2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.2, 32.7] - } - }, { - "type": "Feature", - "properties": { - "title": "CZ08RV2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.7, 33.6] - } - }, { - "type": "Feature", - "properties": { - "title": "CZ09RV2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-118.15, 34.15] - } - }, { - "type": "Feature", - "properties": { - "title": "CZ10RV2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.27, 33.88] - } - }, { - "type": "Feature", - "properties": { - "title": "CZ11RV2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.2, 40.2] - } - }, { - "type": "Feature", - "properties": { - "title": "CZ12RV2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-121.5, 38.5] - } - }, { - "type": "Feature", - "properties": { - "title": "CZ13RV2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-119.7, 36.8] - } - }, { - "type": "Feature", - "properties": { - "title": "CZ14RV2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.7, 35.7] - } - }, { - "type": "Feature", - "properties": { - "title": "CZ15RV2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-115.6, 32.8] - } - }, { - "type": "Feature", - "properties": { - "title": "CZ16RV2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.3, 41.3] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Alturas.725958_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-120.53, 41.5] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Arcata.725945_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-124.1, 40.98] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Arcata.AP.725945_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-124.1, 40.98] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Arcata.AP.725945_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-124.1, 40.98] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Bakersfield-Meadows.Field.723840_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-119.05, 35.43] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Bakersfield-Meadows.Field.723840_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-119.05, 35.43] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Bakersfield.723840_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-119.05, 35.42] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Barstow-Daggett.723815_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-116.78, 34.87] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Barstow.Daggett.AP.723815_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-116.78, 34.85] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Barstow.Daggett.AP.723815_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-116.8, 34.85] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Beale.AFB.724837_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-121.43, 39.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Bishop.AP.724800_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-118.35, 37.37] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Blue.Canyon.AP.725845_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-120.72, 39.3] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Blythe-Riverside.County.AP.747188_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-114.72, 33.62] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Burbank-Glendale-Passadena.Bob.Hope.AP.722880_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-118.35, 34.2] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Camarillo.AWOS.723926_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-119.08, 34.22] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Camp.Pendleton.MCAS.722926_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.35, 33.3] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Carlsbad.722927_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.28, 33.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_China.Lake.NAF.746120_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.68, 35.68] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_China.Lake.NAF.746120_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.68, 35.68] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Chino.AP.722899_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.63, 33.97] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Chula.Vista-Brown.Field.Muni.AP.722904_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-116.98, 32.58] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Concord-Buchanan.Field.724936_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.05, 38] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Crescent.City-Jack.McNamara.Field.725946_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-124.23, 41.78] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Edwards.AFB.723810_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.87, 34.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_El.Toro.MCAS.690140_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.73, 33.66] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Fairfield-Travis.AFB.745160_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-121.93, 38.27] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Fresno.723890_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-119.72, 36.77] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Fresno.Air.Terminal.723890_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-119.72, 36.77] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Fresno.Air.Terminal.723890_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-119.72, 36.78] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Fullerton.Muni.AP.722976_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.98, 33.87] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Hawthorne-Jack.Northrop.Field.722956_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-118.33, 33.92] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Hayward.Air.Terminal.724935_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.12, 37.67] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Imperial.County.AP.747185_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-115.58, 32.83] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Lancaster-Gen.Wm.Fox.Field.723816_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-118.22, 34.73] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Lemoore.NAS.747020_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-119.95, 36.33] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Livermore.Muni.AP.724927_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-121.82, 37.7] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Lompoc.AWOS.722895_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-120.47, 34.67] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Long.Beach-Daugherty.Field.722970_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-118.15, 33.82] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Long.Beach-Daugherty.Field.722970_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-118.17, 33.83] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Long.Beach.722970_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-118.15, 33.82] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Los.Angeles.722950_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-118.4, 33.93] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Los.Angeles.Intl.AP.722950_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-118.4, 33.93] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Los.Angeles.Intl.AP.722950_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-118.4, 33.93] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_March.AFB.722860_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.25, 33.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Merced-Macready.Field.724815_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-120.52, 37.28] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Modesto.Muni.AP.724926_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-120.95, 37.63] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Montague-Siskiyou.County.AP.725955_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.47, 41.78] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Monterey.NAF.724915_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-121.87, 36.6] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Mount.Shasta.725957_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.33, 41.33] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Mountain.View-Moffett.Field.NAS.745090_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.05, 37.42] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Mountain.View-Moffett.Field.NAS.745090_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.05, 37.4] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Napa.County.AP.724955_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.28, 38.22] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Needles.AP.723805_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-114.62, 34.77] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Oakland.Intl.AP.724930_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.21, 37.71] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Oakland.Intl.AP.724930_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.22, 37.72] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Oxnard.AP.723927_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-119.2, 34.2] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Palm.Springs-Thermal.AP.747187_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-116.17, 33.63] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Palm.Springs.Intl.AP.722868_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-116.5, 33.83] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Palmdale.AP.723820_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-118.08, 34.63] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Paso.Robles.Muni.AP.723965_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-120.63, 35.67] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Point.Mugu.NAS.723910_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-119.11, 34.11] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Point.Mugu.NAS.723910_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-119.12, 34.12] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Porterville.AWOS.723895_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-119.07, 36.03] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Red.Bluff.Muni.AP.725910_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.25, 40.15] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Red.Bluff.Muni.AP.725910_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.25, 40.15] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Redding.Muni.AP.725920_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.32, 40.52] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Riverside.Muni.AP.722869_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.45, 33.95] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Sacramento.724835_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-121.5, 38.52] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Sacramento.Exec.AP.724830_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-121.3, 38.55] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Sacramento.Exec.AP.724830_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-121.5, 38.5] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Sacramento.Metro.AP.724839_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-121.58, 38.7] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Salinas.Muni.AP.724917_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-121.6, 36.67] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_San.Diego-Lindbergh.Field.722900_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.17, 32.73] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_San.Diego-Lindbergh.Field.722900_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.17, 32.73] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_San.Diego-Miramar.NAS.722930_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.13, 32.87] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_San.Diego-Montgomery.Field.722903_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.13, 32.82] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_San.Diego-North.Island.NAS.722906_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.2, 32.7] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_San.Diego.722900_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.17, 32.73] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_San.Francisco.724940_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.38, 37.62] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_San.Francisco.Intl.AP.724940_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.38, 37.62] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_San.Francisco.Intl.AP.724940_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.4, 37.62] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_San.Jose.Intl.AP.724945_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-121.93, 37.37] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_San.Luis.Obispo.AP.722897_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-120.63, 35.23] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Sandberg.723830_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-118.72, 34.75] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Santa.Ana-John.Wayne.AP.722977_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.87, 33.68] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Santa.Barbara.Muni.AP.723925_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-119.85, 34.43] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Santa.Maria.723940_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-120.45, 34.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Santa.Maria.Public.AP.723940_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-120.45, 34.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Santa.Maria.Public.AP.723940_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-120.47, 34.92] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Santa.Monica.Muni.AP.722885_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-118.45, 34.02] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Santa.Rosa.AWOS.724957_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.82, 38.52] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_South.Lake.Tahoe-Lake.Tahoe.AP.725847_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-120, 38.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Stockton.Metro.AP.724920_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-121.23, 37.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Truckee.Tahoe.AP.725846_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-120.13, 39.32] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Twentynine.Palms.690150_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-116.17, 34.3] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Ukiah.Muni.AP.725905_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-123.2, 39.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Van.Nuys.AP.722886_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-118.48, 34.22] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Visalia.Muni.AWOS.723896_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-119.4, 36.32] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CA_Yuba.County.AP.724838_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-121.57, 39.1] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_Akron-Washington.County.AP.724698_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-103.23, 40.17] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_Alamosa.724620_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-105.87, 37.45] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_Alamosa.Muni.AP.724620_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-105.87, 37.43] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_Aspen-Pitkin.County-Sardy.Field.724676_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-106.87, 39.22] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_Aurora-Buckley.Field.ANGB.724695_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-104.75, 39.72] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_Boulder-Broomfield-Jefferson.County.AP.724699_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-105.24, 40.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_Boulder.724699_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-105.25, 40.02] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_Colorado.Springs-Peterson.Field.724660_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-104.72, 38.82] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-104.72, 38.82] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_Colorado.Springs.724660_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-104.72, 38.82] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_Cortez-Montezuma.County.AP.724767_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-108.63, 37.3] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_Craig.Moffat.AP.725700_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-107.53, 40.5] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_Denver-Stapleton.724690_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-104.86, 39.76] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_Denver.Intl.AP.725650_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-104.65, 39.83] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_Durango-La.Plata.County.AP.724625_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-107.75, 37.15] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_Eagle.724675_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-106.92, 39.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_Eagle.County.Rgnl.AP.724675_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-106.92, 39.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_Eagle.County.Rgnl.AP.724675_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-106.92, 39.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_Fort.Collins.AWOS.724769_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-105.02, 40.45] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_Golden-NREL.724666_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-105.18, 39.74] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_Grand.Junction-Walker.Field.724760_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-108.53, 39.12] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_Grand.Junction-Walker.Field.724760_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-108.53, 39.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_Grand.Junction.724760_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-108.53, 39.12] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_Greeley-Weld.County.AWOS.724768_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-104.63, 40.43] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_Gunnison.County.AWOS.724677_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-106.93, 38.53] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_Hayden-Yampa.AWOS.725715_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-107.22, 40.48] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_La.Junta.Muni.AP.724635_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-103.53, 38.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_Lamar.Muni.AP.724636_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-102.68, 38.07] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_Leadville-Lake.County.AP.724673_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-106.32, 39.22] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_Limon.Muni.AP.724665_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-103.72, 39.18] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_Montrose.County.AP.724765_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-107.9, 38.5] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_Pueblo.724640_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-104.52, 38.28] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_Pueblo.Mem.AP.724640_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-104.52, 38.28] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_Pueblo.Mem.AP.724640_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-104.5, 38.28] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_Rifle-Garfield.County.Rgnl.AP.725717_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-107.72, 39.53] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CO_Trinidad-Las.Animas.County.AP.724645_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-104.33, 37.27] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CT_Bridgeport-Sikorsky.Mem.AP.725040_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-73.15, 41.18] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CT_Bridgeport.725040_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-73.13, 41.17] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CT_Danbury.Muni.AP.725086_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-73.48, 41.37] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CT_Groton-New.London.AP.725046_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.05, 41.33] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CT_Hartford-Bradley.Intl.AP.725080_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.65, 41.73] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CT_Hartford-Bradley.Intl.AP.725080_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.68, 41.93] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CT_Hartford-Brainard.Field.725087_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.65, 41.73] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CT_Hartford.725087_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.68, 41.93] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CT_New.Haven-Tweed.AP.725045_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.88, 41.27] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_CT_Oxford.AWOS.725029_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-73.13, 41.48] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_DE_Dover.AFB.724088_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.47, 39.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_DE_Wilmington-New.Castle.County.AP.724089_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.6, 39.68] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_DE_Wilmington-New.Castle.County.AP.724089_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.6, 39.67] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_DE_Wilmington.724089_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.6, 39.67] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Apalachicola.722200_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-85.03, 29.73] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Crestview-Bob.Sikes.AP.722215_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.52, 30.78] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Daytona.Beach.722056_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.05, 29.18] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Daytona.Beach.Intl.AP.722056_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.05, 29.18] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Daytona.Beach.Intl.AP.722056_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.07, 29.18] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Fort.Lauderdale.Executive.AP.722039_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.17, 26.2] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Fort.Lauderdale.Intl.AP.722025_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.15, 26.07] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Fort.Myers-Page.Field.722106_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.87, 26.58] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Fort.Pierce-St.Lucie.County.AP.722103_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.37, 27.48] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Fort.Walton.Beach-Hurlburt.Field.747770_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.68, 30.42] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Gainesville.Rgnl.AP.722146_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.28, 29.7] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Homestead.AFB.722026_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.38, 25.48] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Jacksonville-Craig.Field.722068_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.52, 30.33] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Jacksonville.722060_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.7, 30.5] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Jacksonville.Intl.AP.722060_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.7, 30.5] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Jacksonville.Intl.AP.722060_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.7, 30.5] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Jacksonville.NAS.722065_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.67, 30.23] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Key.West.722010_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.75, 24.55] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Key.West.Intl.AP.722010_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.75, 24.55] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Key.West.NAS.722015_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.68, 24.58] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Lakeland.Linder.Rgnl.AP.722119_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.02, 27.98] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_MacDill.AFB.747880_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.52, 27.85] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Marathon.AP.722016_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.05, 24.73] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Mayport.NS.722066_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.42, 30.4] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Melbourne.Rgnl.AP.722040_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.65, 28.12] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Miami-Kendall-Tamiami.Executive.AP.722029_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.43, 25.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Miami-Opa.Locka.AP.722024_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.28, 25.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Miami.722020_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.27, 25.8] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Miami.Intl.AP.722020_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.28, 25.82] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Miami.Intl.AP.722020_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.3, 25.82] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_NASA.Shuttle.Landing.Facility.747946_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.72, 28.62] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Naples.Muni.AP.722038_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.77, 26.15] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Ocala.Muni.AWOS.722055_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.22, 29.17] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Orlando-Sanford.AP.722057_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.25, 28.78] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Orlando.Executive.AP.722053_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.33, 28.55] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Orlando.Executive.AP.722053_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.33, 28.55] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Orlando.Intl.AP.722050_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.33, 28.43] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Panama.City-Bay.County.AP.722245_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-85.68, 30.2] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Pensacola-Forest.Sherman.NAS.722225_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-87.32, 30.35] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Pensacola.Rgnl.AP.722223_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-87.18, 30.48] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Sarasota-Bradenton.Intl.AP.722115_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.55, 27.38] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Southwest.Florida.Intl.AP.722108_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.75, 26.53] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_St.Petersburg-Albert.Whitted.Station.722104_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.63, 27.77] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_St.Petersburg-Clearwater.Intl.AP.722116_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.68, 27.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Tallahassee.722140_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.37, 30.38] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Tallahassee.Rgnl.AP.722140_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.37, 30.38] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Tallahassee.Rgnl.AP.722140_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.37, 30.38] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Tampa.722110_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.53, 27.97] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Tampa.Intl.AP.722110_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.53, 27.97] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Tampa.Intl.AP.722110_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.53, 27.97] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Tyndall.AFB.747750_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-85.58, 30.07] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Valparaiso-Elgin.AFB.722210_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.52, 30.48] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Vero.Beach.Muni.AP.722045_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.42, 27.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_West.Palm.Beach.722030_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.1, 26.68] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_West.Palm.Beach.Intl.AP.722030_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.12, 26.68] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_West.Palm.Beach.Intl.AP.722030_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.1, 26.68] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_FL_Whiting.Field.NAS.722226_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-87.02, 30.72] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_GA_Albany-Dougherty.County.AP.722160_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.18, 31.53] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_GA_Alma-Bacon.County.AP.722135_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.5, 31.53] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_GA_Athens-Ben.Epps.AP.723110_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.33, 33.95] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_GA_Athens.723110_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.32, 33.95] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_GA_Atlanta-Hartsfield-Jackson.Intl.AP.722190_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.42, 33.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_GA_Atlanta-Hartsfield-Jackson.Intl.AP.722190_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.43, 33.63] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_GA_Atlanta.722190_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.43, 33.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_GA_Augusta-Bush-Field.722180_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.97, 33.37] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_GA_Augusta-Bush-Field.722180_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.97, 33.37] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_GA_Augusta.722180_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.97, 33.37] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_GA_Brunswick-Golden.Isles.AP.722136_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.47, 31.25] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_GA_Brunswick-Malcolm.McKinnon.AP.722137_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.38, 31.15] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_GA_Columbus.722255_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.95, 32.52] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_GA_Columbus.Metro.AP.722255_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.95, 32.52] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_GA_Dekalb.Peachtree.AP.722196_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.3, 33.87] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_GA_Fort.Benning-Lawson.Field.722250_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-85, 32.35] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_GA_Fulton.County.AP.722195_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.52, 33.77] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_GA_Macon-Middle.Georgia.Rgnl.AP.722170_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.65, 32.7] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_GA_Macon-Middle.Georgia.Rgnl.AP.722170_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.65, 32.68] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_GA_Macon.722170_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.65, 32.7] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_GA_Marietta-Dobbins.AFB.722270_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.52, 33.92] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_GA_Rome-Richard.B.Russell.AP.723200_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-85.17, 34.35] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_GA_Savannah-Hunter.AAF.747804_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.15, 32] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_GA_Savannah.722070_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.2, 32.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_GA_Savannah.Intl.AP.722070_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.2, 32.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_GA_Savannah.Intl.AP.722070_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.2, 32.12] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_GA_Valdosta-Moody.AFB.747810_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.2, 30.97] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_GA_Valdosta.Rgnl.AP.722166_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.28, 30.78] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_GA_Warner.Robins.AFB.722175_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.6, 32.63] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_HI_Barbers.Point.NAS.911780_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-158.07, 21.32] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_HI_Barbers.Point.NAS.911780_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-158.07, 21.32] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_HI_Hilo.912850_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-155.07, 19.72] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_HI_Hilo.Intl.AP.912850_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-155.07, 19.72] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_HI_Hilo.Intl.AP.912850_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-155.05, 19.72] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_HI_Honolulu.911820_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-157.92, 21.33] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_HI_Honolulu.Intl.AP.911820_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-157.93, 21.35] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_HI_Honolulu.Intl.AP.911820_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-157.93, 21.32] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_HI_Kahului.911900_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-156.43, 20.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_HI_Kahului.AP.911900_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-156.43, 20.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_HI_Kailua-Kaneohe.Bay.MCAS.911760_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-157.78, 21.45] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_HI_Kapalua-West.Maui.AP.911904_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-156.63, 20.95] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_HI_Keahole-Kona.Intl.AP.911975_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-156.05, 19.73] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_HI_Lanai.AP.911905_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-156.95, 20.78] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_HI_Lihue.911650_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-159.35, 21.98] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_HI_Lihue.AP.911650_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-159.35, 21.98] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_HI_Lihue.AP.911650_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-159.33, 21.98] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_HI_Molokai.AWOS.911860_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-157.1, 21.15] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Algona.Muni.AP.725457_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.27, 43.08] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Atlantic.Muni.AP.725453_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.05, 41.4] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Boone.Muni.AP.725486_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.85, 42.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Burlington.Muni.AP.725455_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-91.13, 40.78] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Burlington.Muni.AP.725455_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-91.12, 40.78] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Carroll.Muni.AP.725468_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.78, 42.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Cedar.Rapids.Muni.AP.725450_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-91.72, 41.88] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Chariton.Muni.AP.725469_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.37, 41.03] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Charles.City.Muni.AP.725463_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-92.62, 43.07] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Clarinda.Muni.AP.725479_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.03, 40.72] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Clinton.Muni.AWOS.725473_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-90.33, 41.83] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Council.Bluffs.Muni.AP.725497_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.77, 41.27] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Creston.Muni.AP.725474_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.37, 41.02] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Decorah.Muni.AP.725476_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-91.73, 43.28] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Denison.Muni.AP.725477_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.38, 41.98] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Des.Moines.725460_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.65, 41.53] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Des.Moines.Intl.AP.725460_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.65, 41.53] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Des.Moines.Intl.AP.725460_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.67, 41.53] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Dubuque.Rgnl.AP.725470_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-90.7, 42.4] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Estherville.Muni.AP.726499_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.75, 43.4] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Fairfield.Muni.AP.726498_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-91.98, 41.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Fort.Dodge.AWOS.725490_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.18, 42.55] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Fort.Madison.Muni.AP.725483_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-91.33, 40.67] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Keokuk.Muni.AP.725456_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-91.43, 40.47] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Knoxville.Muni.AP.725493_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.12, 41.3] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Le.Mars.Muni.AP.725484_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.2, 42.78] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Mason.City.725485_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.33, 43.15] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Mason.City.Muni.AP.725485_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.33, 43.15] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Mason.City.Muni.AP.725485_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.33, 43.15] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Monticello.Muni.AP.725475_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-91.17, 42.23] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Muscatine.Muni.AP.725487_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-91.15, 41.37] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Newton.Muni.AP.725464_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.02, 41.68] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Oelwein.Muni.AP.725488_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-91.97, 42.68] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Orange.City.Muni.AP.725489_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.07, 42.98] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Ottumwa.Industrial.AP.725465_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-92.45, 41.1] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Red.Oak.Muni.AP.725494_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.27, 41.02] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Sheldon.Muni.AP.725495_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.83, 43.22] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Shenandoah.Muni.AP.725467_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.42, 40.75] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Sioux.City-Sioux.Gateway.AP.725570_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.38, 42.4] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Sioux.City-Sioux.Gateway.AP.725570_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.38, 42.38] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Sioux.City.725570_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.38, 42.4] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Spencer.Muni.AP.726500_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.15, 43.17] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Storm.Lake.Muni.AP.725496_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.23, 42.6] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Washington.Muni.AP.725454_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-91.67, 41.28] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Waterloo.725480_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-92.4, 42.55] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Waterloo.Muni.AP.725480_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-92.4, 42.55] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IA_Webster.City.Muni.AP.725478_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.87, 42.43] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ID_Boise.726810_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-116.22, 43.57] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ID_Boise.Air.Terminal.726810_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-116.22, 43.57] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ID_Boise.Air.Terminal.726810_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-116.21, 43.62] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ID_Burley.Muni.AP.725867_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-113.77, 42.53] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ID_Caldwell.AWOS.726813_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-116.63, 43.63] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ID_Coeur.dAlene.AWOS.727834_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-116.82, 47.77] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ID_Hailey-Sun.Valley.AP.725865_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-114.3, 43.5] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ID_Idaho.Falls-Fanning.Field.725785_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-112.07, 43.52] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ID_Lewiston-Nez.Perce.County.AP.727830_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.01, 46.36] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ID_Lewiston-Nez.Perce.County.AP.727830_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.02, 46.37] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ID_Malad.City.AP.725786_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-112.28, 42.15] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ID_Mountain.Home.AFB.726815_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-115.87, 43.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ID_Pocatello.725780_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-112.6, 42.92] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ID_Pocatello.Muni.AP.725780_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-112.6, 42.92] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ID_Pocatello.Muni.AP.725780_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-112.57, 42.92] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ID_Salmon-Lemhi.AWOS.726865_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-113.88, 45.12] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ID_Soda.Springs-Tigert.AP.725868_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-111.58, 42.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ID_Twin.Falls-Magic.Valley.Rgnl.AP-Joslin.Field.725866_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-114.35, 42.55] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IL_Aurora.Muni.AP.744655_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.47, 41.77] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IL_Belleville-Scott.AFB.724338_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-89.85, 38.55] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IL_Bloomington.Normal-Central.Illinois.Rgnl.AP.724397_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.92, 40.47] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IL_Cahokia.AP.725314_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-90.15, 38.57] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IL_Carbondale-Southern.Illinois.AP.724336_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-89.25, 37.77] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IL_Chicago-Midway.AP.725340_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-87.75, 41.78] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IL_Chicago-Midway.AP.725340_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-87.75, 41.78] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IL_Chicago-OHare.725300_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-87.75, 41.78] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IL_Chicago-OHare.Intl.AP.725300_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-87.92, 41.98] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IL_Decatur.AP.725316_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.87, 39.83] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IL_Du.Page.AP.725305_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.25, 41.92] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IL_Marion-Williamson.County.Rgnl.AP.724339_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-89.02, 37.75] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IL_Moline-Quad.City.Intl.AP.725440_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-90.52, 41.45] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IL_Moline-Quad.City.Intl.AP.725440_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-90.52, 41.47] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IL_Moline.725440_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-90.52, 41.45] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IL_Mount.Vernon.AWOS.724335_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.87, 38.32] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IL_Peoria-Greater.Peoria.AP.725320_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-89.68, 40.67] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IL_Peoria.725320_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-89.68, 40.67] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IL_Quincy.Muni.AP.724396_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-91.2, 39.93] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IL_Rockford-Greater.Rockford.AP.725430_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-89.1, 42.2] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IL_Rockford.725430_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-89.1, 42.2] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IL_Springfield-Capital.AP.724390_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-89.67, 39.85] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IL_Springfield-Capital.AP.724390_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-89.68, 39.85] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IL_Springfield.724390_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-89.67, 39.83] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IL_Sterling-Rock.Falls-Whiteside.County.AP.725326_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-89.67, 41.75] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IL_University.of.Illinois-Willard.AP.725315_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.37, 40.06] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IL_Waukegan.Rgnl.AP.725347_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-87.87, 42.42] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IN_Delaware.County-Johnson.Field.725336_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-85.4, 40.23] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IN_Evansville.724320_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-87.53, 38.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IN_Evansville.Rgnl.AP.724320_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-87.53, 38.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IN_Evansville.Rgnl.AP.724320_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-87.53, 38.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IN_Fort.Wayne.725330_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-85.2, 41] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IN_Fort.Wayne.Intl.AP.725330_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-85.2, 41] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IN_Fort.Wayne.Intl.AP.725330_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-85.2, 41] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IN_Grissom.AFB.725335_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.15, 40.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IN_Huntingburg.Muni.AP.724365_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.95, 38.25] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IN_Indianapolis.724380_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.28, 39.73] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IN_Indianapolis.Intl.AP.724380_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.27, 39.73] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IN_Indianapolis.Intl.AP.724380_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.27, 39.72] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IN_Lafayette-Purdue.University.AP.724386_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.93, 40.42] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IN_Monroe.County.AP.724375_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.62, 39.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IN_South.Bend-Michiana.Rgnl.AP.725350_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.32, 41.7] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IN_South.Bend-Michiana.Rgnl.AP.725350_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.33, 41.7] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IN_South.Bend.725350_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.32, 41.7] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_IN_Terre.Haute-Hulman.Rgnl.AP.724373_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-87.3, 39.45] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KS_Chanute-Martin.Johnson.AP.724507_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.48, 37.67] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KS_Concordia-Blosser.Muni.AP.724580_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.65, 39.55] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KS_Dodge.City.724510_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-99.97, 37.77] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KS_Dodge.City.Rgnl.AP.724510_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-99.97, 37.77] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KS_Dodge.City.Rgnl.AP.724510_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-99.97, 37.77] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KS_Emporia.Muni.AP.724556_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.18, 38.33] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KS_Fort.Riley-Marshall.AAF.724550_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.77, 39.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KS_Garden.City.Muni.AP.724515_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-100.72, 37.93] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KS_Goodland-Renner.Field.724650_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-101.7, 39.37] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KS_Goodland-Renner.Field.724650_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-101.7, 39.37] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KS_Goodland.724650_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-101.7, 39.37] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KS_Great.Bend.AWOS.724517_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-98.87, 38.35] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KS_Hays.Muni.AWOS.724518_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-99.27, 38.85] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KS_Hill.City.Muni.AP.724655_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-99.83, 39.38] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KS_Hutchinson.Muni.AP.724506_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.87, 38.07] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KS_Liberal.Muni.AP.724516_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-100.97, 37.03] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KS_Manhattan.Rgnl.AP.724555_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.67, 39.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KS_Newton.AWOS.724509_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.28, 38.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KS_Olathe-Johnson.County.Executive.AP.724468_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.73, 38.85] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KS_Olathe-Johnson.County.Industrial.AP.724475_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.88, 38.83] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KS_Russell.Muni.AP.724585_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-98.82, 38.88] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KS_Salina.Muni.AP.724586_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.67, 38.82] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KS_Topeka-Forbes.AFB.724565_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.67, 38.95] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KS_Topeka-Phillip.Billard.Muni.AP.724560_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.62, 39.07] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KS_Topeka-Phillip.Billard.Muni.AP.724560_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.63, 39.07] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KS_Topeka.724560_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.63, 39.07] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KS_Wichita-Col.Jabara.Field.724504_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.22, 37.75] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KS_Wichita-McConnell.AFB.724505_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.27, 37.62] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KS_Wichita-Mid.Continent.AP.724500_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.43, 37.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KS_Wichita.724500_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.42, 37.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KY_Bowling.Green-Warren.County.AP.746716_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.43, 36.98] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KY_Cincinnati-Northern.Kentucky.AP.724210_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.67, 39.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KY_Cincinnati-Northern.Kentucky.AP.724210_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.67, 39.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KY_Covington-Cincinnati.AP.724210_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.67, 39.07] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KY_Fort.Campbell.AAF.746710_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-87.48, 36.67] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KY_Fort.Knox-Godman.AAF.724240_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-85.97, 37.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KY_Henderson.City.County.AP.724238_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-87.68, 37.82] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KY_Jackson-Julian.Carroll.AP.724236_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.32, 37.58] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KY_Lexington-Bluegrass.AP.724220_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.6, 38.03] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KY_Lexington-Bluegrass.AP.724220_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.6, 38.03] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KY_Lexington.724220_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.6, 38.03] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KY_London-Corbin-Magee.Field.724243_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.08, 37.08] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KY_Louisville-Bowman.Field.724235_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-85.67, 38.23] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KY_Louisville-Standiford.Field.724230_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-85.73, 38.18] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KY_Louisville-Standiford.Field.724230_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-85.73, 38.18] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KY_Louisville.724230_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-85.73, 38.18] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KY_Paducah-Barkley.Rgnl.AP.724350_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.77, 37.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_KY_Somerset-Pulaski.County.AWOS.724354_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.6, 38] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_LA_Alexandria-England.AFB.747540_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-92.55, 31.32] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_LA_Alexandria-Esler.Rgnl.AP.722487_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-92.3, 31.4] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_LA_Barksdale.AFB.722485_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.67, 32.5] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_LA_Baton.Rouge-Ryan.AP.722317_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-91.15, 30.53] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_LA_Baton.Rouge-Ryan.AP.722317_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-91.15, 30.53] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_LA_Baton.Rouge.722317_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-91.15, 30.53] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_LA_Fort.Polk.722390_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.18, 31.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_LA_Houma-Terrebonne.AP.722406_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-90.67, 29.57] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_LA_Lafayette.RgnlAP.722405_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-91.98, 30.2] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_LA_Lake.Charles.722400_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.22, 30.12] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_LA_Lake.Charles.AP.722404_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.17, 30.22] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_LA_Lake.Charles.Rgnl.AP.722400_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.22, 30.12] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_LA_Lake.Charles.Rgnl.AP.722400_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.23, 30.12] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_LA_Monroe.Rgnl.AP.722486_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-92.03, 32.52] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_LA_New.Iberia.722314_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-91.88, 30.03] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_LA_New.Orleans-Alvin.Callender.Field.722316_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-90.02, 29.82] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_LA_New.Orleans-Lakefront.AP.722315_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-90.03, 30.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_LA_New.Orleans.722315_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-90.25, 29.98] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_LA_New.Orleans.Intl.AP.722310_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-90.03, 30.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_LA_New.Orleans.Intl.AP.722310_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-90.25, 30] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_LA_Patterson.Mem.AP.722329_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-91.33, 29.72] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_LA_Shreveport.722480_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.82, 32.47] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_LA_Shreveport.Downtown.722484_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.75, 32.53] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_LA_Shreveport.Rgnl.AP.722480_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.82, 32.47] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_LA_Shreveport.Rgnl.AP.722480_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.82, 32.45] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MA_Barnstable-Boardman.Poland.AP.725067_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-70.28, 41.67] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MA_Beverly.Muni.AP.725088_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-70.92, 42.58] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MA_Boston-Logan.725090_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-71.03, 42.37] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MA_Boston-Logan.Intl.AP.725090_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-71.07, 42.35] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MA_Boston-Logan.Intl.AP.725090_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-71.02, 42.37] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MA_Chicopee.Falls-Westover.AFB.744910_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.53, 42.2] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MA_Lawrence.Muni.AP.744904_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-71.12, 42.72] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MA_Marthas.Vineyard.AP.725066_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-70.62, 41.4] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MA_Nantucket.Mem.AP.725063_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-70.07, 41.25] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MA_New.Bedford.Rgnl.AP.725065_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-70.95, 41.67] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MA_North.Adams.AP.725075_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-73.17, 42.7] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MA_Norwood.Mem.AP.725098_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-71.18, 42.18] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MA_Otis.ANGB.725060_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-70.52, 41.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MA_Plymouth.Muni.AP.725064_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-70.73, 41.92] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MA_Provincetown.AWOS.725073_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-70.22, 42.07] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MA_Westfield-Barnes.Muni.AP.744915_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.72, 42.15] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MA_Worcester.725095_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-71.87, 42.27] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MA_Worcester.Rgnl.AP.725095_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-71.88, 42.27] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MD_Andrews.AFB.745940_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.87, 38.82] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MD_Baltimore-Washington.Intl.AP.724060_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.67, 39.18] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MD_Baltimore-Washington.Intl.AP.724060_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.68, 39.17] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MD_Baltimore.724060_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.67, 39.18] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MD_Hagerstown-Washington.County.Rgnl.AP.724066_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.73, 39.7] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MD_Patuxent.River.NAS.724040_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.41, 38.3] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MD_Patuxent.River.NAS.724040_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.42, 38.3] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MD_Salisbury-Wicomico.County.Rgnl.AP.724045_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.52, 38.33] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ME_Auburn-Lewiston.Muni.AP.726184_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-70.28, 44.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ME_Augusta.AP.726185_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-69.8, 44.32] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ME_Bangor.Intl.AP.726088_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-68.8, 44.8] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ME_Bangor.Intl.AP.726088_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-68.82, 44.8] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ME_Bar.Harbor.AWOS.726077_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-68.37, 44.45] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ME_Brunswick.NAS.743920_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-69.93, 43.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ME_Caribou.727120_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-68.02, 46.87] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ME_Caribou.Muni.AP.727120_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-68.02, 46.87] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ME_Caribou.Muni.AP.727120_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-68.03, 46.87] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ME_Edmundston-Northern.Aroostook.Rgnl.AP.726083_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-68.32, 47.28] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ME_Houlton.Intl.AP.727033_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-67.8, 46.12] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ME_Millinocket.Muni.AP.726196_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-68.68, 45.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ME_Portland.726060_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-70.32, 43.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ME_Portland.Intl.Jetport.726060_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-70.32, 43.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ME_Portland.Intl.Jetport.726060_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-70.3, 43.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ME_Presque.Isle.Muni.AP.727130_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-68.05, 46.68] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ME_Rockland-Knox.AWOS.726079_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-69.1, 44.07] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ME_Sanford.Muni.AWOS.726064_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-70.72, 43.4] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ME_Waterville.AWOS.726073_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-69.68, 44.53] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ME_Wiscasset.AP.727135_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-69.72, 43.97] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Alpena.726390_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.57, 45.07] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Alpena.County.Rgnl.AP.726390_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.57, 45.07] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Alpena.County.Rgnl.AP.726390_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.58, 45.07] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Ann.Arbor.Muni.AP.725374_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.75, 42.22] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Battle.Creek-Kellogg.AP.725396_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-85.25, 42.3] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Benton.Harbor-Ross.Field-Twin.Cities.AP.726355_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.43, 42.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Cadillac-Wexford.County.AP.726384_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-85.42, 44.28] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Chippewa.County.Intl.AP.727344_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.47, 46.25] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Detroit-City.AP.725375_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83, 42.5] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Detroit-City.AP.725375_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83, 42.4] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Detroit-Metro.AP.725370_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.02, 42.42] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Detroit-Willow.Run.AP.725376_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.53, 42.23] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Detroit.Metro.AP.725370_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.35, 42.22] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Escanaba.AWOS.726480_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-87.03, 45.75] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Flint-Bishop.Intl.AP.726370_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.75, 42.97] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Flint-Bishop.Intl.AP.726370_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.75, 42.97] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Flint.726370_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.73, 42.97] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Grand.Rapids-Kent.County.Intl.AP.726350_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-85.52, 42.88] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Grand.Rapids-Kent.County.Intl.AP.726350_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-85.52, 42.88] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Grand.Rapids.726350_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-85.52, 42.88] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Hancock-Houghton.County.AP.727440_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.5, 47.17] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Houghton-Lake.Roscommon.County.AP.726380_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.68, 44.37] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Houghton.727440_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.5, 47.17] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Howell-Livingston.County.AP.725378_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.98, 42.63] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Iron.Mountain-Ford.Field.727437_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.12, 45.82] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Ironwood.AWOS.727445_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-90.13, 46.53] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Jackson-Reynolds.Field.725395_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.47, 42.27] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Kalamazoo-Battle.Creek.Intl.AP.726357_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-85.55, 42.23] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Lansing-Capital.City.AP.725390_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.58, 42.78] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Lansing.725390_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.6, 42.78] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Manistee.AWOS.726385_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.25, 44.27] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Menominee.AWOS.726487_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-87.63, 45.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Mount.Clemens-Selfridge.ANGB.725377_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.83, 42.62] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Muskegon.726360_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.25, 43.17] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Muskegon.County.AP.726360_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.23, 43.17] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Oakland.County.Intl.AP.726375_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.42, 42.67] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Oscoda-Wurtsmith.AFB.726395_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.4, 44.45] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Pellston-Emmet.County.AP.727347_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.78, 45.57] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Saginaw-Tri.City.Intl.AP.726379_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.08, 43.53] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Sault.Ste.Marie-Sanderson.Field.727340_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.37, 46.47] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Sault.Ste.Marie-Sanderson.Field.727340_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.35, 46.47] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Sault.Ste.Marie.727340_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.37, 46.47] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_St.Clair.County.Intl.AP.725384_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.53, 42.92] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Traverse.City-Cherry.Capital.AP.726387_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-85.58, 44.73] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Traverse.City-Cherry.Capital.AP.726387_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-85.58, 44.73] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MI_Traverse.City.726387_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-85.58, 44.73] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Aitkin.AWOS.727504_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.68, 46.55] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Albert.Lea.AWOS.726589_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.37, 43.68] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Alexandria.Muni.AP.726557_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.4, 45.88] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Austin.Muni.AP.727566_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-92.93, 43.67] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Baudette.Intl.AP.727476_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.6, 48.72] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Bemidji.Muni.AP.727550_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.93, 47.5] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Benson.Muni.AP.727507_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.65, 45.32] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Brainerd-Crow.Wing.County.AP.726555_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.13, 46.4] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Cambridge.Muni.AP.727503_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.27, 45.57] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Cloquet.AWOS.726558_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-92.5, 46.7] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Crane.Lake.AWOS.727473_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-92.57, 46.27] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Crookston.Muni.Field.727452_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.62, 47.85] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Detroit.Lakes.AWOS.727457_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.88, 46.83] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Duluth.727450_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-92.18, 46.83] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Duluth.Intl.AP.727450_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-92.18, 46.83] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Duluth.Intl.AP.727450_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-92.22, 46.83] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Edin.Prairie-Flying.Cloud.AP.726579_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.45, 44.82] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Ely.Muni.AP.727459_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-91.83, 47.82] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Eveleth.Muni.AWOS.727474_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-92.5, 47.4] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Fairmont.Muni.AWOS.726586_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.42, 43.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Faribault.Muni.AWOS.726563_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.32, 44.33] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Fergus.Falls.AWOS.726560_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.15, 46.28] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Fosston.AWOS.727505_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.77, 47.58] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Glenwood.AWOS.726547_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.32, 45.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Grand.Rapids.AWOS.727458_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.52, 47.22] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Hallock.727478_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.95, 48.78] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Hibbing-Chisholm.Hibbing.AP.727455_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-92.85, 47.38] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Hutchinson.AWOS.726569_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.38, 44.87] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_International.Falls.727470_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.38, 48.57] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_International.Falls.Intl.AP.727470_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.38, 48.57] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_International.Falls.Intl.AP.727470_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.4, 48.57] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Litchfield.Muni.AP.726583_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.5, 45.1] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Little.Falls.AWOS.726578_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.35, 45.95] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Mankato.AWOS.726585_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.92, 44.22] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Marshall.Muni-Ryan.Field.AWOS.726559_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.82, 44.45] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Minneapolis-Crystal.AP.726575_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.35, 45.07] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Minneapolis-St.Paul.726580_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.22, 44.88] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Minneapolis-St.Paul.Intl.AP.726580_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.22, 44.88] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Minneapolis-St.Paul.Intl.AP.726580_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.23, 44.88] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Mora.Muni.AWOS.727475_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.27, 45.88] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Morris.Muni.AWOS.726565_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.97, 45.57] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_New.Ulm.Muni.AWOS.726567_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.5, 44.32] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Orr.Rgnl.AP.726544_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-92.87, 48.02] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Owatonna.AWOS.726568_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.25, 44.12] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Park.Rapids.Muni.AP.727453_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.07, 46.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Pipestone.AWOS.726566_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.32, 43.98] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Red.Wing.Muni.AP.726564_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-92.48, 44.58] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Redwood.Falls.Muni.AP.726556_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.08, 44.55] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Rochester.726440_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-92.5, 43.92] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Rochester.Intl.AP.726440_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-92.5, 43.92] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Rochester.Intl.AP.726440_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-92.5, 43.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Roseau.Muni.AWOS.727477_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.7, 48.85] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Saint.Cloud.726550_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.07, 45.55] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Silver.Bay.Muni.AP.727556_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-91.4, 47.2] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_South.St.Paul.Muni.AP.726603_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.15, 44.85] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_St.Cloud.Muni.AP.726550_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.05, 45.55] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_St.Paul-Downtown.AP.726584_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.05, 44.93] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Thief.River.AWOS.727555_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.18, 48.07] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Two.Harbors.Muni.AP.727444_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-91.75, 47.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Wheaton.AWOS.727533_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.5, 45.7] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Willmar.Muni.AP.726576_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.08, 45.12] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Winona.Muni.AWOS.726588_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-91.7, 44.08] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MN_Worthington.AWOS.726587_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.58, 43.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MO_Cape.Girardeau.Muni.AP.723489_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-89.57, 37.23] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MO_Columbia.724450_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-92.22, 38.82] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MO_Columbia.Rgnl.AP.724450_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-92.22, 38.82] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MO_Columbia.Rgnl.AP.724450_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-92.22, 38.82] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MO_Farmington.Rgnl.AP.724454_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-90.4, 37.77] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MO_Fort.Leonard.Wood-Forney.AAF.724457_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-92.15, 37.75] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MO_Jefferson.City.Mem.AP.724458_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-92.15, 38.58] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MO_Joplin.Muni.AP.723495_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.5, 37.15] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MO_Kaiser-Lee.Fine.Mem.AWOS.724459_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-92.55, 38.1] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MO_Kansas.City.724460_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.72, 39.3] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MO_Kansas.City.Downtown.AP.724463_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.6, 39.12] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MO_Kansas.City.Intl.AP.724460_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.72, 39.3] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MO_Kirksville.Muni.AP.724455_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-92.55, 40.1] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MO_Poplar.Bluff.AWOS.723300_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-90.47, 36.77] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MO_Rolla.National.AP.724456_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-91.77, 38.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MO_Springfield.724400_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.38, 37.23] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MO_Springfield.Rgnl.AP.724400_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.38, 37.23] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MO_Springfield.Rgnl.AP.724400_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.38, 37.23] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MO_St.Joseph-Rosecrans.Mem.AP.724490_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.9, 39.77] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MO_St.Louis-Lambert.Intl.AP.724340_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-90.37, 38.75] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MO_St.Louis-Lambert.Intl.AP.724340_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-90.37, 38.75] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MO_St.Louis-Spirit.of.St.Louis.AP.724345_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-90.65, 38.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MO_St.Louis.724340_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-90.38, 38.75] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MO_Whiteman.AFB.724467_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.55, 38.72] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MS_Biloxi-Keesler.AFB.747686_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.92, 30.42] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MS_Columbus.AFB.723306_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.45, 33.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MS_Golden.Triangle.Rgnl.AWOS.723307_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.58, 33.45] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MS_Greenville.Muni.AP.722356_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-90.98, 33.48] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MS_Greenwood-Leflore.AP.722359_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-90.08, 33.5] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MS_Gulfport-Biloxi.Intl.AP.747685_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-89.07, 30.4] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MS_Hattiesburg-Laurel.AP.722348_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-89.33, 31.47] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MS_Jackson.722350_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-90.08, 32.32] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MS_Jackson.Intl.AP.722350_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-90.08, 32.32] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MS_Jackson.Intl.AP.722350_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-90.08, 32.32] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MS_McComb-Pike.Co.AP.722358_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-90.47, 31.23] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MS_Meridian-Key.Field.722340_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.75, 32.33] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MS_Meridian-Key.Field.722340_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.75, 32.33] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MS_Meridian.722340_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.75, 32.33] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MS_Meridian.NAS.722345_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.57, 32.55] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MS_Natchez-Hardy.Anders.Field.722357_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-91.3, 31.62] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MS_Tupelo.Muni-C.D.Lemons.AP.723320_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.77, 34.27] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MT_Billings-Logan.Intl.AP.726770_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-108.53, 45.8] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MT_Billings-Logan.Intl.AP.726770_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-108.55, 45.8] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MT_Billings.726770_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-108.53, 45.8] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MT_Bozeman-Gallatin.Field.726797_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-111.15, 45.8] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MT_Butte-Bert.Mooney.AP.726785_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-112.5, 45.95] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MT_Cut.Bank.727796_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-112.37, 48.6] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MT_Cut.Bank.Muni.AP.727796_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-112.37, 48.6] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MT_Cut.Bank.Muni.AP.727796_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-112.37, 48.6] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MT_Dillon.726796_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-112.55, 45.25] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MT_Glasgow.727680_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-106.62, 48.22] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MT_Glasgow.Intl.AP.727680_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-106.62, 48.22] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MT_Glasgow.Intl.AP.727680_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-106.62, 48.22] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MT_Glendive.AWOS.726676_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-104.8, 47.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MT_Great.Falls.727755_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-111.37, 47.48] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MT_Great.Falls.Intl.AP.727750_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-111.18, 47.5] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MT_Great.Falls.Intl.AP.727750_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-111.38, 47.47] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MT_Havre.City-County.AP.727770_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-109.77, 48.55] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MT_Helena.727720_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-112, 46.6] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MT_Helena.Rgnl.AP.727720_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-112, 46.6] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MT_Helena.Rgnl.AP.727720_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-111.97, 46.6] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MT_Kalispell-Glacier.Park.Intl.AP.727790_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-114.25, 48.32] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MT_Kalispell.727790_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-114.27, 48.3] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MT_Lewistown.726776_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-109.45, 47.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MT_Lewistown.Muni.AP.726776_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-109.47, 47.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MT_Lewistown.Muni.AP.726776_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-109.45, 47.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MT_Livingston-Mission.Field.726798_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-110.45, 45.7] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MT_Miles.City.742300_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-105.87, 46.43] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MT_Miles.City.Muni.AP.742300_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-105.87, 46.43] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MT_Miles.City.Muni.AP.742300_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-105.88, 46.43] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MT_Missoula.727730_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-114.08, 46.92] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MT_Missoula.Intl.AP.727730_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-114.08, 46.92] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MT_Missoula.Intl.AP.727730_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-114.1, 46.92] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MT_Sidney-Richland.Muni.AP.727687_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-104.2, 47.7] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_MT_Wolf.Point.Intl.AP.727686_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-105.1, 48.31] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NC_Asheville.723150_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.53, 35.43] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NC_Asheville.Rgnl.AP.723150_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.55, 35.43] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NC_Asheville.Rgnl.AP.723150_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.53, 35.43] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NC_Cape.Hatteras.723040_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.55, 35.27] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NC_Cape.Hatteras.723040_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.55, 35.27] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NC_Cape.Hatteras.723040_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.55, 35.27] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NC_Charlotte-Douglas.Intl.AP.723140_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.93, 35.22] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NC_Charlotte-Douglas.Intl.AP.723140_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.95, 35.22] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NC_Charlotte.723140_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.93, 35.22] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NC_Cherry.Point.MCAS.723090_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.88, 34.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NC_Cherry.Point.MCAS.723090_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.88, 34.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NC_Elizabeth.City.CGAS.746943_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.25, 36.3] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NC_Fayetteville-Pope.AFB.723030_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.02, 35.17] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NC_Fayetteville.Muni.AP.723035_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-78.88, 34.98] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NC_Fort.Bragg-Simmons.AAF.746930_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-78.93, 35.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NC_Goldsboro-Seymour.Johnson.AFB.723066_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.97, 35.35] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NC_Greensboro-Piedmont.Triad.Intl.AP.723170_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.95, 36.08] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NC_Greensboro-Piedmont.Triad.Intl.AP.723170_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.95, 36.1] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NC_Greensboro.723170_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.95, 36.08] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NC_Hickory.Rgnl.AP.723145_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.38, 35.73] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NC_Jacksonville.AWOS.723069_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.62, 34.83] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NC_Kinston.Stallings.AFB.723067_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.63, 35.32] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NC_Manteo-Dare.County.Rgnl.AP.723046_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.7, 35.92] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NC_New.Bern-Craven.County.Rgnl.AP.723095_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.05, 35.07] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NC_New.River.MCAS.723096_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.38, 34.7] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NC_Pitt.Greenville.AP.723065_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.4, 35.63] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NC_Raleigh-Durham.723060_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-78.78, 35.87] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NC_Raleigh-Durham.Intl.AP.723060_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-78.78, 35.87] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NC_Raleigh-Durham.Intl.AP.723060_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-78.78, 35.87] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NC_Rocky.Mount-Wilson.AP.723068_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.9, 35.85] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NC_Southern.Pines-Moore.County.AP.723143_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.4, 35.23] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NC_Wilmington.723013_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.9, 34.27] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NC_Wilmington.Intl.AP.723013_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.9, 34.27] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NC_Winston.Salem-Smith.Reynolds.AP.723193_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.22, 36.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ND_Bismarck.727640_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-100.75, 46.77] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ND_Bismarck.Muni.AP.727640_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-100.75, 46.77] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ND_Bismarck.Muni.AP.727640_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-100.77, 46.77] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ND_Devils.Lake.AWOS.727573_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-98.92, 48.12] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ND_Dickinson.Muni.AP.727645_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-102.8, 46.8] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ND_Fargo-Hector.Intl.AP.727530_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.8, 46.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ND_Fargo-Hector.Intl.AP.727530_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.82, 46.93] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ND_Fargo.727530_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.8, 46.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ND_Grand.Forks.AFB.727575_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.4, 47.97] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ND_Grand.Forks.Intl.AP.727576_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.18, 47.95] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ND_Jamestown.Muni.AP.727535_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-98.68, 46.92] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ND_Minot.727676_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-101.28, 48.27] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ND_Minot.AFB.727675_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-101.35, 48.42] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ND_Minot.Intl.AP.727676_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-101.28, 48.27] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ND_Minot.Intl.AP.727676_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-101.28, 48.27] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_ND_Williston-Sloulin.Field.Intl.AP.727670_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-103.65, 48.2] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NE_Ainsworth.Muni.AP.725556_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-100, 42.58] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NE_Alliance.Muni.AP.725635_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-102.8, 42.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NE_Beatrice.Muni.AP.725515_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.75, 40.3] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NE_Bellevue-Offutt.AFB.725540_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.92, 41.12] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NE_Broken.Bow.Muni.AP.725555_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-99.65, 41.43] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NE_Chadron.Muni.AP.725636_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-103.08, 42.83] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NE_Columbus.Muni.AP.725565_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.33, 41.45] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NE_Falls.City-Brenner.Field.725533_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.6, 40.08] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NE_Fremont.Muni.AP.725564_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.52, 41.45] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NE_Grand.Island-Central.Nebraska.Rgnl.AP.725520_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-98.32, 40.97] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NE_Grand.Island-Central.Nebraska.Rgnl.AP.725520_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-98.32, 40.97] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NE_Grand.Island.725520_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-98.32, 40.97] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NE_Hastings.Muni.AP.725525_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-98.43, 40.6] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NE_Holdrege-Brewster.Field.725628_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-99.33, 40.45] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NE_Imperial.Muni.AP.725626_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-101.62, 40.52] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NE_Kearney.Muni.AWOS.725526_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-99, 40.73] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NE_Lincoln.Muni.AP.725510_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.77, 40.83] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NE_McCook.Muni.AP.725625_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-100.58, 40.2] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NE_Norfolk-Karl.Stefan.Mem.AP.725560_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.43, 41.98] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NE_Norfolk.725560_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.43, 41.98] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NE_North.Platte.725620_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-100.68, 41.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NE_North.Platte.Rgnl.AP.725620_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-100.68, 41.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NE_North.Platte.Rgnl.AP.725620_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-100.67, 41.12] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NE_ONeill-Baker.Field.725566_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-98.68, 42.47] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NE_Omaha-Eppley.Airfield.725500_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.9, 41.3] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NE_Omaha-Eppley.Airfield.725500_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.9, 41.32] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NE_Omaha.725500_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.52, 41.37] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NE_Omaha.WSFO.725530_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.02, 41.37] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NE_Ord-Sharp.Field.725524_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-98.95, 41.62] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NE_Scottsbluff-W.B.Heilig.Field.725660_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-103.6, 41.87] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NE_Scottsbluff-W.B.Heilig.Field.725660_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-103.6, 41.87] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NE_Scottsbluff.725660_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-103.6, 41.87] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NE_Sidney.Muni.AP.725610_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-102.98, 41.1] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NE_Tekamah.AWOS.725527_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.17, 41.77] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NE_Valentine-Miller.Field.725670_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-100.55, 42.87] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NH_Berlin.Muni.AP.726160_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-71.18, 44.58] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NH_Concord.726050_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-71.5, 43.2] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NH_Concord.Muni.AP.726050_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-71.5, 43.2] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NH_Concord.Muni.AP.726050_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-71.5, 43.2] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NH_Keene-Dillant.Hopkins.AP.726165_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.27, 42.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NH_Laconia.Muni.AWOS.726155_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-71.42, 43.57] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NH_Lebanon.Muni.AP.726116_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.3, 43.63] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NH_Manchester.Muni.AP.743945_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-71.43, 42.93] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NH_Mount.Washington.726130_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-71.3, 44.27] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NH_Pease.Intl.Tradeport.726055_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-70.82, 43.08] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NJ_Atlantic.City.724070_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-74.57, 39.45] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NJ_Atlantic.City.Intl.AP.724070_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-74.57, 39.45] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NJ_Belmar-Monmouth.County.AP.724084_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-74.07, 40.18] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NJ_Caldwell-Essex.County.AP.724094_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-74.28, 40.88] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NJ_Cape.May.County.AP.745966_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-74.92, 39] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NJ_McGuire.AFB.724096_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-74.7, 40.03] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NJ_McGuire.AFB.724096_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-74.6, 40.02] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NJ_Millville.Muni.AP.724075_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.08, 39.37] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NJ_Newark.725020_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-74.17, 40.7] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NJ_Newark.Intl.AP.725020_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-74.17, 40.7] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NJ_Newark.Intl.AP.725020_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-74.18, 40.72] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NJ_Teterboro.AP.725025_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-74.07, 40.85] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NJ_Trenton-Mercer.County.AP.724095_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-74.82, 40.28] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NM_Albuquerque.723650_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-106.62, 35.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NM_Albuquerque.Intl.AP.723650_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-106.62, 35.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NM_Albuquerque.Intl.AP.723650_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-106.62, 35.04] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NM_Carlsbad.Cavern.City.Air.Terminal.722687_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-104.27, 32.33] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NM_Clayton.Muni.AP.723600_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-103.15, 36.45] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NM_Clayton.Muni.AP.723600_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-103.15, 36.45] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NM_Clovis-Cannon.AFB.722686_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-103.32, 34.38] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NM_Clovis.Muni.AWOS.722689_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-103.08, 34.43] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NM_Deming.Muni.AP.722725_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-107.72, 32.25] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NM_Farmington-Four.Corners.Rgnl.AP.723658_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-108.23, 36.75] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NM_Gallup-Sen.Clarke.Field.723627_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-108.78, 35.52] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NM_Holloman.AFB.747320_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-106.1, 32.85] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NM_Las.Cruces.Intl.AP.722695_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-106.92, 32.28] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NM_Las.Vegas-Muni.AP.723677_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-105.15, 35.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NM_Los.Alamos.723654_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-106.28, 35.88] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NM_Roswell.Industrial.Air.Park.722680_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-104.53, 33.3] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NM_Roswell.Industrial.Air.Park.722680_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-104.53, 33.3] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NM_Ruidoso-Sierra.Blanca.Rgnl.AP.722683_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-105.53, 33.47] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NM_Santa.Fe.County.Muni.AP.723656_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-106.08, 35.62] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NM_Taos.Muni.AP.723663_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-105.67, 36.45] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NM_Truth.or.Consequences.Muni.AP.722710_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-107.25, 33.23] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NM_Truth.or.Consequences.Muni.AP.722710_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-107.27, 33.23] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NM_Tucumcari.723676_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-103.6, 35.18] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NM_Tucumcari.AP.723676_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-103.6, 35.18] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NM_Tucumcari.AP.723676_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-103.6, 35.18] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NV_Elko.725825_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-115.78, 40.83] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NV_Elko.Muni.AP.725825_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-115.78, 40.83] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NV_Elko.Muni.AP.725825_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-115.8, 40.83] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NV_Ely-Yelland.Field.724860_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-114.85, 39.28] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NV_Ely-Yelland.Field.724860_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-114.85, 39.3] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NV_Ely.724860_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-114.85, 39.28] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NV_Fallon.NAS.724885_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-118.72, 39.42] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-115.17, 36.08] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-115.15, 36.08] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NV_Las.Vegas.723860_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-115.17, 36.08] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NV_Lovelock-Derby.Field.725805_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-118.55, 40.06] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NV_Lovelock-Derby.Field.725805_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-118.55, 40.07] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NV_Mercury-Desert.Rock.AP.723870_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-116.02, 36.63] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NV_Nellis.AFB.723865_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-115.03, 36.25] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NV_Reno-Tahoe.Intl.AP.724880_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-119.78, 39.5] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NV_Reno-Tahoe.Intl.AP.724880_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-119.77, 39.48] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NV_Reno.724880_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-119.78, 39.5] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NV_Tonopah.724855_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.13, 38.07] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NV_Tonopah.AP.724855_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.08, 38.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NV_Tonopah.AP.724855_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.08, 38.07] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NV_Winnemucca.725830_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.8, 40.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NV_Winnemucca.Muni.AP.725830_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.8, 40.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NV_Winnemucca.Muni.AP.725830_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.8, 40.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NV_Yucca.Flats.723850_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-116.05, 36.95] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_Albany.725180_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-73.8, 42.75] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_Albany.County.AP.725180_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-73.8, 42.75] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_Albany.County.AP.725180_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-73.8, 42.75] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_Binghamton-Edwin.A.Link.Field.725150_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.98, 42.22] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_Binghamton-Edwin.A.Link.Field.725150_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.98, 42.2] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_Binghamton.725150_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.98, 42.22] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-78.73, 42.93] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-78.73, 42.93] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_Buffalo.725280_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-78.73, 42.93] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_Elmira.Rgnl.AP.725156_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.9, 42.17] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_Fort.Drum-Wheeler.Sack.AAF.743700_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.72, 44.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_Glens.Falls-Bennett.Mem.AP.725185_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-73.62, 43.35] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_Islip-Long.Island.MacArthur.AP.725035_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-73.1, 40.78] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_Jamestown.AWOS.725235_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.27, 42.15] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_Massena.726223_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-74.85, 44.93] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_Massena.AP.726223_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-74.85, 44.93] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_Massena.AP.726223_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-74.85, 44.93] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_Monticello.AWOS.725145_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-74.8, 41.7] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_New.York-Central.Park.725033_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-73.97, 40.78] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_New.York-J.F.Kennedy.Intl.AP.744860_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-73.8, 40.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_New.York-LaGuardia.AP.725030_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-73.88, 40.78] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_New.York-LaGuardia.AP.725030_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-73.88, 40.78] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_New.York.City-Central.Park.744860_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-73.97, 40.78] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_New.York.City-Central.Park.94728_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-73.96, 40.78] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_Newburgh-Stewart.Intl.AP.725038_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-74.1, 41.5] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_Niagara.Falls.Intl.AP.725287_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-78.95, 43.1] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_Poughkeepsie-Dutchess.County.AP.725036_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-73.88, 41.63] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_Republic.AP.744864_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-73.42, 40.72] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_Rochester-Greater.Rochester.Intl.AP.725290_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.67, 43.12] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_Rochester-Greater.Rochester.Intl.AP.725290_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.68, 43.12] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_Rochester.725290_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.67, 43.12] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_Saranac.Lake-Adirondack.Rgnl.AP.726228_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-74.2, 44.38] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_Syracuse-Hancock.Intl.AP.725190_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.12, 43.12] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_Syracuse-Hancock.Intl.AP.725190_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.1, 43.12] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_Syracuse.725190_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.12, 43.12] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_Utica-Oneida.County.AP.725197_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.38, 43.15] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_Watertown.AP.726227_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.02, 44] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_Westhampton-Suffolk.County.AP.744865_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.63, 40.85] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_NY_White.Plains-Westchester.County.AP.725037_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-73.72, 41.07] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OH_Akron.725210_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.43, 40.92] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OH_Akron.Canton.Rgnl.AP.725210_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.43, 40.92] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OH_Akron.Canton.Rgnl.AP.725210_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.43, 40.92] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OH_Cincinnati.Muni.AP-Lunken.Field.724297_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.42, 39.1] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OH_Cleveland-Burke.Lakefront.AP.725245_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.68, 41.52] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OH_Cleveland-Hopkins.Intl.AP.725240_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.85, 41.4] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OH_Cleveland.725240_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.85, 41.4] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OH_Columbus-Port.Columbus.Intl.AP.724280_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.88, 40] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OH_Columbus-Port.Columbus.Intl.AP.724280_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.88, 39.98] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OH_Columbus.724280_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.88, 40] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OH_Dayton-Wright.Patterson.AFB.745700_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.05, 39.83] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OH_Dayton-Wright.Patterson.AFB.745700_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.05, 39.83] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OH_Dayton.745700_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.22, 39.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OH_Dayton.Intl.AP.724290_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.22, 39.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OH_Findlay.AP.725366_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.67, 41.02] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OH_Mansfield-Lahm.Muni.AP.725246_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.52, 40.82] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OH_Mansfield.725246_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.52, 40.82] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OH_Ohio.State.University.AP.724288_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.07, 40.07] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OH_Toledo.725360_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.8, 41.6] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OH_Toledo.Express.AP.725360_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.8, 41.6] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OH_Toledo.Express.AP.725360_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.8, 41.58] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OH_Youngstown.725250_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.67, 41.27] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OH_Youngstown.Rgnl.AP.725250_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.67, 41.27] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OH_Youngstown.Rgnl.AP.725250_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.67, 41.25] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OH_Zanesville.Muni.AP.724286_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.9, 39.95] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OK_Altus.AFB.723520_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-99.27, 34.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OK_Bartlesville-Phillips.Field.723565_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.02, 36.77] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OK_Clinton.Sherman.AP.723526_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-99.2, 35.33] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OK_Fort.Sill-Henry.Post.AAF.723550_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-98.4, 34.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OK_Gage.AP.723527_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-99.77, 36.3] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OK_Hobart.Muni.AP.723525_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-99.05, 35] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OK_Lawton.Muni.AP.723575_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-98.42, 34.57] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OK_McAlester.Rgnl.AP.723566_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.78, 34.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OK_Oklahoma.City-Tinker.AFB.723540_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.38, 35.42] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OK_Oklahoma.City-Wiley.Post.Field.723544_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.65, 35.53] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OK_Oklahoma.City-Will.Rogers.World.AP.723530_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.6, 35.4] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OK_Oklahoma.City-Will.Rogers.World.AP.723530_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.6, 35.38] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OK_Oklahoma.City.723530_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.6, 35.4] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OK_Ponca.City.Muni.AP.723546_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.49, 36.61] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OK_Stillwater.Rgnl.AP.723545_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.08, 36.15] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OK_Tulsa.723560_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.9, 36.2] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OK_Tulsa.Intl.AP.723560_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.9, 36.2] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OK_Tulsa.Intl.AP.723560_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.88, 36.2] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OK_Vance.AFB.723535_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.92, 36.33] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OR_Astoria.727910_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-123.88, 46.15] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OR_Astoria.Rgnl.AP.727910_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-123.88, 46.15] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OR_Astoria.Rgnl.AP.727910_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-123.88, 46.15] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OR_Aurora.State.AP.726959_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.77, 45.25] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OR_Baker.Muni.AP.726886_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.82, 44.83] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OR_Burns.726830_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-119.05, 43.58] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OR_Burns.Muni.AP.726830_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-119.02, 43.52] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OR_Corvallis.Muni.AP.726945_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-123.28, 44.48] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OR_Eugene-Mahlon.Sweet.AP.726930_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-123.07, 44.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OR_Eugene.726930_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-123.22, 44.12] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OR_Klamath.Falls.Intl.AP.725895_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-121.74, 42.22] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OR_La.Grande.Muni.AP.726884_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-118, 45.28] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OR_Lakeview.AWOS.725976_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-120.4, 42.17] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OR_Medford-Rogue.Valley.Intl.AP.725970_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.87, 42.37] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OR_Medford-Rogue.Valley.Intl.AP.725970_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.7, 42.19] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OR_Medford.725970_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.87, 42.37] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OR_North.Bend.726917_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-124.25, 43.42] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OR_North.Bend.Muni.AP.726917_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-124.25, 43.42] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OR_North.Bend.Muni.AP.726917_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-124.25, 43.42] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OR_Pendleton-Eastern.Oregon.Rgnl.AP.726880_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-118.83, 45.7] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OR_Pendleton.726880_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-118.85, 45.68] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OR_Portland-Hillsboro.AP.726986_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.95, 45.53] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OR_Portland-Troutdale.AP.726985_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.4, 45.55] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OR_Portland.726980_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.6, 45.6] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OR_Portland.Intl.AP.726980_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.6, 45.6] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OR_Portland.Intl.AP.726980_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.62, 45.6] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OR_Redmond-Roberts.Field.726835_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-121.15, 44.25] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OR_Redmond-Roberts.Field.726835_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-121.17, 44.25] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OR_Redmond.726835_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-121.15, 44.27] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OR_Roseburg.Rgnl.AP.726904_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-123.35, 43.23] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OR_Salem-McNary.Field.726940_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-123, 44.92] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OR_Salem-McNary.Field.726940_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-123, 44.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OR_Salem.726940_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-123.02, 44.92] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_OR_Sexton.Summit.725975_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-123.37, 42.6] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_PA_Allentown-Lehigh.Valley.Intl.AP.725170_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.43, 40.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_PA_Allentown-Lehigh.Valley.Intl.AP.725170_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.45, 40.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_PA_Allentown.725170_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.43, 40.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_PA_Altoona-Blair.County.AP.725126_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-78.32, 40.3] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_PA_Bradford.725266_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-78.63, 41.8] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_PA_Bradford.Rgnl.AP.725266_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-78.63, 41.8] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_PA_Butler.County.AWOS.725124_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.95, 40.78] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_PA_DuBois-Jefferson.County.AP.725125_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-78.9, 41.18] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_PA_Erie.725260_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.18, 42.08] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_PA_Erie.Intl.AP.725260_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.18, 42.08] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_PA_Erie.Intl.AP.725260_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.18, 42.08] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_PA_Franklin-Chess.Lemberton.AP.725267_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.87, 41.38] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_PA_Harrisburg-Capital.City.AP.725118_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.77, 40.2] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_PA_Harrisburg-Capital.City.AP.725118_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.85, 40.22] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_PA_Harrisburg.725115_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.85, 40.22] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_PA_Harrisburg.Intl.AP.725115_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.77, 40.2] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_PA_Johnstown-Cambria.County.AP.725127_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-78.83, 40.32] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_PA_Lancaster.AP.725116_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.3, 40.12] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_PA_Philadelphia-NE.Philadelphia.AP.724085_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.02, 40.08] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_PA_Philadelphia.724086_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.25, 39.88] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_PA_Philadelphia.Intl.AP.724080_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.15, 40.2] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_PA_Philadelphia.Intl.AP.724080_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.23, 39.87] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_PA_Pittsburgh-Allegheny.County.AP.725205_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.92, 40.35] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_PA_Pittsburgh.725200_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.22, 40.5] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_PA_Pittsburgh.Intl.AP.725200_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.22, 40.5] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_PA_Pittsburgh.Intl.AP.725200_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.23, 40.5] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_PA_Reading.Mem.AP-Spaatz.Field.725103_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.97, 40.37] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_PA_State.College-Penn.State.University.725128_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.93, 40.72] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_PA_Washington.AWOS.725117_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.28, 40.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_PA_Wilkes-Barre-Scranton.Intl.AP.725130_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.73, 41.33] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_PA_Wilkes-Barre-Scranton.Intl.AP.725130_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.73, 41.33] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_PA_Wilkes.Barre-Scranton.725130_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.73, 41.33] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_PA_Williamsport.725140_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.05, 41.27] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_PA_Williamsport.Rgnl.AP.725140_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.92, 41.25] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_PA_Willow.Grove.NAS.724086_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.15, 40.2] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_RI_Block.Island.State.AP.725058_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-71.58, 41.17] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_RI_Pawtucket.AWOS.725054_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-71.5, 41.92] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_RI_Providence-T.F.Green.State.AP.725070_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-71.43, 41.73] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_RI_Providence-T.F.Green.State.AP.725070_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-71.43, 41.72] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_RI_Providence.725070_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-71.43, 41.73] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_SC_Anderson.County.AP.723125_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.72, 34.5] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_SC_Beaufort.MCAS.722085_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.72, 32.48] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_SC_Charleston.722080_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.03, 32.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_SC_Charleston.Intl.AP.722080_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.03, 32.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_SC_Charleston.Intl.AP.722080_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.03, 32.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_SC_Columbia.723100_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.12, 33.95] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_SC_Columbia.Metro.AP.723100_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.12, 33.95] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_SC_Columbia.Metro.AP.723100_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.12, 33.95] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_SC_Florence.Rgnl.AP.723106_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.73, 34.18] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_SC_Greenville-Downtown.AP.723119_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.35, 34.85] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_SC_Greenville-Spartanburg.723120_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.22, 34.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_SC_Greer.Greenville-Spartanburg.AP.723120_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.22, 34.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_SC_Greer.Greenville-Spartanburg.AP.723120_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.22, 34.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_SC_Myrtle.Beach.AFB.747910_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-78.93, 33.68] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_SC_North.Myrtle.Beach-Grand.Strand.Field.747915_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-78.72, 33.82] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_SC_Shaw.AFB.747900_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.47, 33.97] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_SD_Aberdeen.Rgnl.AP.726590_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-98.42, 45.45] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_SD_Brookings.AWOS.726515_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.82, 44.3] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_SD_Ellsworth.AFB.726625_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-103.1, 44.15] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_SD_Huron.726540_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-98.22, 44.38] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_SD_Huron.Rgnl.AP.726540_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-98.22, 44.38] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_SD_Huron.Rgnl.AP.726540_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-98.22, 44.4] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_SD_Mitchell.AWOS.726545_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-98.03, 43.77] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_SD_Mobridge.Muni.AP.726685_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-100.43, 45.53] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_SD_Pierre.726686_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-100.28, 44.38] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_SD_Pierre.Muni.AP.726686_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-100.28, 44.38] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_SD_Pierre.Muni.AP.726686_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-100.28, 44.38] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_SD_Rapid.City.726620_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-103.07, 44.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_SD_Rapid.City.Rgnl.AP.726620_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-103.07, 44.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_SD_Rapid.City.Rgnl.AP.726620_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-103.05, 44.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_SD_Sioux.Falls-Foss.Field.726510_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.73, 43.58] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_SD_Sioux.Falls-Foss.Field.726510_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.75, 43.58] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_SD_Sioux.Falls.726510_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.73, 43.57] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_SD_Watertown.Muni.AP.726546_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.15, 44.93] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_SD_Yankton-Chan.Gurney.Muni.AP.726525_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.38, 42.92] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TN_Bristol-TriCities.Rgnl.AP.723183_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.4, 36.47] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TN_Bristol.723183_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.4, 36.48] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TN_Chattanooga-Lovell.Field.AP.723240_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-85.2, 35.03] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TN_Chattanooga-Lovell.Field.AP.723240_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-85.2, 35.03] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TN_Chattanooga.723240_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-85.2, 35.03] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TN_Crossville.Mem.AP.723265_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-85.08, 35.95] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TN_Dyersburg.Muni.AP.723347_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-89.4, 36.02] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TN_Jackson-McKellar.Sipes.Rgnl.AP.723346_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.92, 35.6] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TN_Knoxville-McGhee.Tyson.AP.723260_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.98, 35.82] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TN_Knoxville-McGhee.Tyson.AP.723260_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.98, 35.82] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TN_Knoxville.723260_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.98, 35.82] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TN_Memphis.723340_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-89.98, 35.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TN_Memphis.Intl.AP.723340_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-90, 35.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TN_Memphis.Intl.AP.723340_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-89.98, 35.07] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TN_Nashville.723270_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.68, 36.12] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TN_Nashville.Intl.AP.723270_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.68, 36.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TN_Nashville.Intl.AP.723270_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.68, 36.12] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Abilene-Dyess.AFB.690190_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-99.85, 32.43] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Abilene.722660_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-99.68, 32.43] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Abilene.Rgnl.AP.722660_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-99.68, 32.42] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Abilene.Rgnl.AP.722660_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-99.71, 32.47] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Alice.Intl.AP.722517_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-98.03, 27.73] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Amarillo.723630_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-101.7, 35.23] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Amarillo.Intl.AP.723630_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-101.7, 35.23] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Amarillo.Intl.AP.723630_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-101.9, 34.99] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Austin-Camp.Mabry.722544_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.77, 30.32] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Austin-Mueller.Muni.AP.722540_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.7, 30.3] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Austin-Mueller.Muni.AP.722540_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.74, 30.29] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Austin.722540_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.7, 30.3] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Beaumont-Port.Arthur.722410_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.02, 29.95] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Brownsville-South.Padre.Island.AP.722500_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.43, 25.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Brownsville-South.Padre.Island.AP.722500_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.43, 25.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Brownsville.722500_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.43, 25.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Childress.Muni.AP.723604_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-100.28, 34.43] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_College.Station-Easterwood.Field.722445_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.37, 30.58] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Corpus.Christi.722510_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.5, 27.77] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Corpus.Christi.Intl.AP.722510_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.5, 27.77] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Corpus.Christi.Intl.AP.722510_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.63, 27.88] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Corpus.Christi.NAS.722515_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.28, 27.68] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Cotulla.AP.722526_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-99.22, 28.45] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Cox.Field.722587_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.45, 33.63] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Dalhart.Muni.AP.722636_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-102.55, 36.02] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Dallas-Addison.AP.722598_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.83, 32.97] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.02, 32.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Dallas-Love.Field.722583_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.85, 32.85] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Dallas-Redbird.AP.722599_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.87, 32.68] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Del.Rio-Laughlin.AFB.722615_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-100.78, 29.37] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Del.Rio.722610_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-100.78, 29.36] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Del.Rio.722610_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-100.91, 29.38] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Draughon-Miller.Central.Texas.AP.722577_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.4, 31.15] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_El.Paso.722700_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-106.4, 31.8] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_El.Paso.Intl.AP.722700_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-106.4, 31.8] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_El.Paso.Intl.AP.722700_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-106.5, 31.77] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Fort.Hood.722570_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.72, 31.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Fort.Worth-Alliance.AP.722594_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.32, 32.98] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Fort.Worth-Meacham.AP.722596_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.37, 32.82] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Fort.Worth-Stephenville-Clark.Field.722600_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.37, 32.82] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Fort.Worth.722596_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.05, 32.83] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Fort.Worth.NAS.722595_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.45, 32.77] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Galveston.722420_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.8, 29.3] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Georgetown.AWOS.722547_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.68, 30.68] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Greenville.Muni.AP.722588_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.07, 33.07] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Harlingen-Valley.Intl.AP.722505_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.65, 26.23] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Hondo.Muni.AP.722533_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-99.17, 29.37] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Houston-Bush.Intercontinental.AP.722430_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.35, 29.97] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Houston-Bush.Intercontinental.AP.722430_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.37, 30] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Houston-D.W.Hooks.AP.722429_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.55, 30.07] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Houston-Ellington.AFB.722436_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.09, 29.57] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Houston-Intercontinental.722430_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.37, 29.98] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Houston-William.P.Hobby.AP.722435_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.28, 29.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Killeen-Fort.Hood.Rgnl.AP.722576_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.83, 31.07] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Killeen.Muni.AWOS.722575_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.68, 31.08] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Kingsville.722516_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.82, 27.5] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Kingsville.722516_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.82, 27.5] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Laredo.Intl.AP.722520_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-99.46, 27.53] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Laredo.Intl.AP.722520_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-99.49, 27.57] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Longview-Gregg.County.AP.722470_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.98, 32.29] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Lubbock.722670_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-101.82, 33.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Lubbock.Intl.AP.722670_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-101.82, 33.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Lubbock.Intl.AP.722670_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-101.82, 33.67] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Lufkin-Angelina.Co.AP.722446_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.75, 31.23] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Lufkin-Angelina.Co.AP.722446_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.75, 31.23] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Lufkin.722446_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.75, 31.23] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Marfa.AP.722640_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-104.02, 30.37] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_McAllen-Miller.Intl.AP.722506_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-98.17, 26.31] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_McGregor.AWOS.722563_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.32, 31.48] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Midland-Odessa.722650_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-102.2, 31.93] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Midland.Intl.AP.722650_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-102.18, 31.95] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Midland.Intl.AP.722650_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-102.18, 31.95] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Mineral.Wells.Muni.AP.722597_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-98.07, 32.78] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Nacogdoches.AWOS.722499_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.72, 31.58] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Palacios.Muni.AP.722555_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.25, 28.72] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Port.Arthur-Jefferson.Co.AP.722410_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.02, 29.95] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Port.Arthur-Jefferson.Co.AP.722410_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-94.02, 29.95] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Randolph.AFB.722536_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-98.28, 29.53] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Rockport-Aransas.Co.AP.722524_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.05, 28.08] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_San.Angelo-Mathis.AP.722630_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-100.5, 31.37] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_San.Angelo-Mathis.AP.722630_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-100.5, 31.35] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_San.Angelo.722630_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-100.5, 31.37] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_San.Antonio-Kelly.AFB.722535_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-98.58, 29.38] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_San.Antonio-Stinson.AP.722523_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-98.47, 29.33] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_San.Antonio.722536_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-98.47, 29.53] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_San.Antonio.Intl.AP.722530_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-98.28, 29.53] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_San.Antonio.Intl.AP.722530_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-98.47, 29.53] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Sherman-Perrin.AFB.722541_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.67, 33.72] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Tyler-Pounds.Field.722448_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-95.4, 32.35] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Victoria.722550_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.92, 28.85] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Victoria.Rgnl.AP.722550_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-96.93, 28.87] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Waco.722560_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.22, 31.62] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Waco.Rgnl.AP.722560_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.22, 31.62] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Waco.Rgnl.AP.722560_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-97.23, 31.62] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Wichita.Falls.723510_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-98.48, 33.97] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Wichita.Falls.Muni.AP.723510_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-98.5, 33.98] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Wichita.Falls.Muni.AP.723510_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-98.5, 33.98] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_TX_Wink-Winkler.County.AP.722656_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-103.2, 31.78] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_UT_Blanding.Muni.AP.724723_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-109.48, 37.62] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_UT_Bryce.Canyon.AP.724756_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-112.15, 37.7] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_UT_Bryce.Canyon.AP.724756_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-112.15, 37.7] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_UT_Cedar.City.724755_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-113.1, 37.7] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_UT_Cedar.City.Muni.AP.724755_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-113.1, 37.7] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_UT_Cedar.City.Muni.AP.724755_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-113.1, 37.7] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_UT_Delta.Muni.AP.724795_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-112.58, 39.33] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_UT_Hanksville.AP.724735_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-110.72, 38.37] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_UT_Moab-Canyonlands.Field.724776_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-109.54, 38.58] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_UT_Ogden-Hill.AFB.725755_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-111.97, 41.12] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_UT_Ogden-Hinkley.AP.725750_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-112.02, 41.2] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_UT_Provo.Muni.AWOS.725724_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-111.72, 40.22] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_UT_Saint.George.AWOS.724754_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-113.6, 37.08] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_UT_Salt.Lake.City.725720_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-111.97, 40.77] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_UT_Salt.Lake.City.Intl.AP.725720_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-111.97, 40.78] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_UT_Salt.Lake.City.Intl.AP.725720_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-111.97, 40.77] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_UT_Vernal.AP.725705_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-109.52, 40.43] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_UT_Wendover.USAF.Auxiliary.Field.725810_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-114.03, 40.72] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Abingdon-Virgina.Highlands.AP.724058_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.03, 36.68] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Arlington-Ronald.Reagan.Washington.Natl.AP.724050_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.03, 38.87] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Blacksburg-Virginia.Tech.AP.724113_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.42, 37.22] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Charlottesville-Albemarle.County.AP.724016_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-78.45, 38.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Danville.Rgnl.AP.724106_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.33, 36.57] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Davison.AAF.724037_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.18, 38.72] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Farmville.Muni.AP.724017_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-78.43, 37.35] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Franklin.Muni.AP.723083_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.9, 36.7] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Fredericksburg-Shannon.AP.724033_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.45, 38.27] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Hillsville-Twin.County.AP.724107_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.82, 36.77] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Hot.Springs-Ingalls.Field.724115_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.83, 37.95] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Langley.AFB.745980_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.35, 37.08] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Leesburg.Muni.AP-Godfrey.Field.724055_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.57, 39.08] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Lynchburg.724100_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.2, 37.33] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Lynchburg.Rgnl.AP-Preston.Glen.Field.724100_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.2, 37.33] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Manassas.Muni.AWOS.724036_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.52, 38.72] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Marion-Wytheville-Mountain.Empire.AP.724056_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.35, 36.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Martinsville-Blue.Ridge.AP.745985_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.02, 36.63] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Melfa-Accomack.County.AP.724026_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.77, 37.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Newport.News.723086_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.5, 37.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Norfolk.723080_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.2, 36.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Norfolk.Intl.AP.723080_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.2, 36.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Norfolk.Intl.AP.723080_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.2, 36.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Norfolk.NAS.723085_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.28, 36.95] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Oceana.NAS.723075_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.03, 36.82] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Petersburg.Muni.AP.724014_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.52, 37.18] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Pulaski-New.River.Valley.AP.724116_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.68, 37.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Quantico.MCAS.724035_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.3, 38.5] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Richmond.724010_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.33, 37.5] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Richmond.Intl.AP.724010_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.33, 37.5] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Richmond.Intl.AP.724010_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.32, 37.52] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Roanoke.724110_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.97, 37.32] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Roanoke.Rgnl.AP-Woodrum.Field.724110_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.97, 37.32] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Roanoke.Rgnl.AP-Woodrum.Field.724110_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.97, 37.32] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Staunton-Shenandoah.Valley.Rgnl.AP.724105_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-78.9, 38.27] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Sterling-Washington.Dulles.724030_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.45, 38.95] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Sterling-Washington.Dulles.Intl.AP.724030_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.45, 38.95] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Sterling-Washington.Dulles.Intl.AP.724030_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.47, 38.98] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Winchester.Rgnl.AP.724053_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-78.15, 39.15] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VA_Wise-Lonesome.Pine.AP.724117_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.53, 36.98] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VT_Burlington.726170_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-73.15, 44.47] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VT_Burlington.Intl.AP.726170_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-73.15, 44.47] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VT_Burlington.Intl.AP.726170_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-73.15, 44.47] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VT_Montpelier.AP.726145_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.57, 44.2] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VT_Rutland.State.AP.725165_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.95, 43.52] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_VT_Springfield-Hartnes.State.AP.726115_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.52, 43.35] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Bellingham.Intl.AP.727976_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.53, 48.8] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Bremerton.National.AP.727928_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.75, 47.48] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Ephrata.Muni.AP.727826_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-119.52, 47.3] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Fairchild.AFB.727855_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.65, 47.63] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Fort.Lewis-Gray.AAF.742070_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.58, 47.08] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Hanford.727840_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-119.6, 46.57] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Hoquiam.AP.727923_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-123.93, 46.98] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Kelso.AP.727924_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.9, 46.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Moses.Lake-Grant.County.AP.727827_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-119.32, 47.2] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Olympia.727920_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.9, 46.97] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Olympia.AP.727920_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.9, 46.97] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Olympia.AP.727920_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.9, 46.97] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Pasco-Tri.Cities.AP.727845_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-119.12, 46.27] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Port.Angeles-William.R.Fairchild.Intl.AP.727885_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-123.5, 48.12] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Pullman-Moscow.Rgnl.AP.727857_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.12, 46.75] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Quillayute.727970_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-124.55, 47.95] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Quillayute.State.AP.727970_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-124.57, 47.93] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Renton.Muni.AP.727934_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.22, 47.48] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Seattle-Boeing.Field.727935_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.25, 47.68] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Seattle-Tacoma.727930_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.3, 47.45] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Seattle-Tacoma.Intl.AP.727930_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.3, 47.45] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Seattle-Tacoma.Intl.AP.727930_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.32, 47.47] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Snohomish.County.AP.727937_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.28, 47.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Spokane-Felts.Field.727856_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.32, 47.68] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Spokane.727855_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.53, 47.63] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Spokane.Intl.AP.727850_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.65, 47.62] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Spokane.Intl.AP.727850_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-117.59, 47.49] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Stampede.Pass.727815_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-121.33, 47.28] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Tacoma-McChord.AFB.742060_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.48, 47.15] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Tacoma.Narrows.AP.727938_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.58, 47.27] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_The.Dalles.Muni.AP.726988_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-121.15, 45.62] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Toledo-Winlock-Ed.Carlson.Mem.AP.727926_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.8, 46.48] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Walla.Walla.City-County.AP.727846_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-118.28, 46.1] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Wenatchee-Pangborn.Mem.AP.727825_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-120.2, 47.4] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Whidbey.Island.NAS.690230_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.66, 48.35] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Whidbey.Island.NAS.690230_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-122.67, 48.35] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Yakima.727810_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-120.53, 46.57] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Yakima.Air.Terminal-McAllister.Field.727810_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-120.53, 46.57] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WA_Yakima.Air.Terminal-McAllister.Field.727810_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-120.55, 46.57] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WI_Appleton-Outagamie.County.AP.726457_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.52, 44.25] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WI_Eau.Claire.726435_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-91.48, 44.87] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WI_Eau.Claire.County.AP.726435_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-91.48, 44.87] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WI_Eau.Claire.County.AP.726435_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-91.48, 44.87] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WI_Ephraim.AWOS.726626_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-87.15, 45.15] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WI_Green.Bay-Austin.Straubel.Intl.AP.726450_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.13, 44.48] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WI_Green.Bay-Austin.Straubel.Intl.AP.726450_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.13, 44.48] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WI_Green.Bay.726450_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.13, 44.48] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WI_Janesville-Rock.County.AP.726415_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-89.03, 42.62] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WI_La.Crosse.726430_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-91.25, 43.87] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WI_La.Crosse.Muni.AP.726430_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-91.25, 43.87] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WI_La.Crosse.Muni.AP.726430_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-91.25, 43.87] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WI_Lone.Rock.AP.726416_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-90.18, 43.2] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WI_Madison-Dane.County.Rgnl.AP.726410_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-89.33, 43.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WI_Madison-Dane.County.Rgnl.AP.726410_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-89.33, 43.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WI_Madison.726410_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-89.33, 43.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WI_Manitowac.Muni.AWOS.726455_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-87.68, 44.13] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WI_Marshfield.Muni.AP.726574_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-90.18, 44.63] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WI_Milwaukee-Mitchell.Intl.AP.726400_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-87.9, 42.95] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WI_Milwaukee-Mitchell.Intl.AP.726400_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-87.9, 42.95] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WI_Milwaukee.726400_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-87.9, 42.95] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WI_Minocqua-Woodruff-Lee.Field.726404_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-89.73, 45.93] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WI_Mosinee-Central.Wisconsin.AP.726465_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-89.67, 44.78] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WI_Phillips-Price.County.AP.726468_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-90.4, 45.7] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WI_Rhinelander-Oneida.County.AP.727415_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-89.47, 45.63] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WI_Rice.Lake.Muni.AP.726467_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-91.72, 45.48] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WI_Sturgeon.Bay-Door.County.AP.726458_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-87.42, 44.85] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WI_Watertown.Muni.AP.726464_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.72, 43.17] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WI_Wausau.Muni.AP.726463_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-89.63, 44.92] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WI_Wittman.Rgnl.AP.726456_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.55, 43.98] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WV_Beckley-Raleigh.County.Mem.AP.724120_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.12, 37.8] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WV_Bluefield-Mercer.County.AP.724125_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.24, 37.27] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WV_Charleston-Yeager.AP.724140_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.6, 38.37] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WV_Charleston-Yeager.AP.724140_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.58, 38.38] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WV_Charleston.724140_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.6, 38.37] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WV_Clarksburg-Harrison.Marion.Rgnl.AP.724175_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.23, 39.28] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WV_Elkins-Randolph.County.AP.724170_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.85, 38.88] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WV_Elkins.724170_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.85, 38.88] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WV_Huntington-Tri.State.Walker.Long.Field.724250_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.55, 38.38] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WV_Huntington.724250_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.55, 38.37] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WV_Lewisburg-Greenbrier.Valley.AP.724127_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.4, 37.87] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WV_Martinsburg-Eastern.WV.Rgnl.AP.724177_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.98, 39.4] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WV_Morgantown.Muni-Hart.Field.724176_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.92, 39.65] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WV_Parkersburg-Wood.County-Gill.Robb.Wilson.AP.724273_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.43, 39.35] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WV_Wheeling-Ohio.County.AP.724275_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.65, 40.18] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WY_Casper-Natrona.County.Intl.AP.725690_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-106.47, 42.92] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WY_Casper-Natrona.County.Intl.AP.725690_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-106.47, 42.9] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WY_Casper.725690_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-106.47, 42.92] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WY_Cheyenne.725640_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-104.82, 41.15] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WY_Cheyenne.Muni.AP.725640_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-104.82, 41.15] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WY_Cheyenne.Muni.AP.725640_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-104.8, 41.15] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WY_Cody.Muni.AWOS.726700_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-109.02, 44.52] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WY_Evanston-Uinta.County.AP-Burns.Field.725775_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-111.03, 41.28] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WY_Gillette-Gillette.County.AP.726650_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-105.53, 44.35] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WY_Green.River-Greater.Green.River.Intergalactic.Spaceport.725744_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-109.07, 41.6] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WY_Green.River-Greater.Green.River.Intergalactic.Spaceport.725744_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-109.44, 41.46] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WY_Jackson.Hole.AP.725776_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-110.73, 43.6] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WY_Lander-Hunt.Field.725760_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-108.73, 42.82] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WY_Lander.725760_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-108.73, 42.82] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WY_Laramie-General.Brees.Field.725645_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-105.68, 41.32] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WY_Rawlins.Muni.AP.725745_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-107.2, 41.8] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WY_Riverton.Rgnl.AP.725765_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-108.45, 43.05] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WY_Rock.Springs.725744_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-109.07, 41.6] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WY_Sheridan.726660_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-106.97, 44.77] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WY_Sheridan.County.AP.726660_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-106.97, 44.77] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WY_Sheridan.County.AP.726660_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-106.97, 44.77] - } - }, { - "type": "Feature", - "properties": { - "title": "USA_WY_Worland.Muni.AP.726665_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "mos": "Download Modelica Weather File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-107.95, 43.97] - } - }, { - "type": "Feature", - "properties": { - "title": "VIR_Charlotte.Amalie-Harry.S.Truman.AP.785430_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.97, 18.35] - } - }, { - "type": "Feature", - "properties": { - "title": "ARG_Buenos.Aires.875760_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.53, -34.82] - } - }, { - "type": "Feature", - "properties": { - "title": "Resistencia Intl AP_Chaco_ARG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-59.05, -27.45] - } - }, { - "type": "Feature", - "properties": { - "title": "Saenz Peña AP_Chaco_ARG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-60.45, -26.82] - } - }, { - "type": "Feature", - "properties": { - "title": "Corrientes Intl AP_Corrientes_ARG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.77, -27.45] - } - }, { - "type": "Feature", - "properties": { - "title": "Monte Caseros AP_Corrientes_ARG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-57.65, -30.27] - } - }, { - "type": "Feature", - "properties": { - "title": "Paso de los Libres Intl AP_Corrientes_AR", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-57.15, -29.68] - } - }, { - "type": "Feature", - "properties": { - "title": "Concordia_Entre Rios_ARG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.02, -31.3] - } - }, { - "type": "Feature", - "properties": { - "title": "Gualeguaychu AP_Entre Rios_ARG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.62, -33] - } - }, { - "type": "Feature", - "properties": { - "title": "Parana AP_Entre Rios_ARG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-60.48, -31.78] - } - }, { - "type": "Feature", - "properties": { - "title": "Formosa Intl AP_Formosa_ARG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.23, -26.2] - } - }, { - "type": "Feature", - "properties": { - "title": "Posadas_Misiones_ARG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-55.97, -27.37] - } - }, { - "type": "Feature", - "properties": { - "title": "Puerto Iguazu Intl AP_Misiones_ARG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-54.47, -25.73] - } - }, { - "type": "Feature", - "properties": { - "title": "Ceres_Santa Fe_ARG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.95, -29.88] - } - }, { - "type": "Feature", - "properties": { - "title": "Reconquista AP_Santa Fe_ARG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-59.7, -29.18] - } - }, { - "type": "Feature", - "properties": { - "title": "Rosario Intl AP_Santa Fe_ARG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-60.78, -32.92] - } - }, { - "type": "Feature", - "properties": { - "title": "Sauce Viejo AP_Santa Fe_ARG", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-60.82, -31.7] - } - }, { - "type": "Feature", - "properties": { - "title": "BOL_La.Paz.852010_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-68.18, -16.52] - } - }, { - "type": "Feature", - "properties": { - "title": "Estação Comandante Ferraz_..._ATA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.38, -62.08] - } - }, { - "type": "Feature", - "properties": { - "title": "Feijó AP_AC_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-70.34, -8.14] - } - }, { - "type": "Feature", - "properties": { - "title": "Parque Estadual Chandless_AC_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-69.93, -9.37] - } - }, { - "type": "Feature", - "properties": { - "title": "Porto Walter_AC_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.74, -8.27] - } - }, { - "type": "Feature", - "properties": { - "title": "Rio Branco_AC_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-68.17, -9.96] - } - }, { - "type": "Feature", - "properties": { - "title": "Arapiraca AP_AL_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-36.62, -9.8] - } - }, { - "type": "Feature", - "properties": { - "title": "Coruripe_AL_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-36.29, -10.13] - } - }, { - "type": "Feature", - "properties": { - "title": "Maceió-Palmares Intl AP_AL_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-35.78, -9.52] - } - }, { - "type": "Feature", - "properties": { - "title": "Maceió_AL_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-35.74, -9.67] - } - }, { - "type": "Feature", - "properties": { - "title": "Palmeira dos Índios_AL_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-36.63, -9.41] - } - }, { - "type": "Feature", - "properties": { - "title": "Pão de Açúcar_AL_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-37.44, -9.75] - } - }, { - "type": "Feature", - "properties": { - "title": "São Luís do Quitunde_AL_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-35.57, -9.29] - } - }, { - "type": "Feature", - "properties": { - "title": "Autazes_AM_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-59.13, -3.58] - } - }, { - "type": "Feature", - "properties": { - "title": "Barcelos AP_AM_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-62.92, -0.99] - } - }, { - "type": "Feature", - "properties": { - "title": "Coari_AM_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-63.15, -4.1] - } - }, { - "type": "Feature", - "properties": { - "title": "Humaitá AP_AM_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-63.07, -7.55] - } - }, { - "type": "Feature", - "properties": { - "title": "Itacoatiara AP_AM_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.48, -3.13] - } - }, { - "type": "Feature", - "properties": { - "title": "Manacapuru_AM_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-60.63, -3.29] - } - }, { - "type": "Feature", - "properties": { - "title": "Manaus-Gomes Intl AP_AM_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-59.98, -3.15] - } - }, { - "type": "Feature", - "properties": { - "title": "Manaus-Gomez Intl AP_AM_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-60.03, -3.1] - } - }, { - "type": "Feature", - "properties": { - "title": "Maués_AM_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-57.67, -3.4] - } - }, { - "type": "Feature", - "properties": { - "title": "Parintins_AM_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-56.76, -2.64] - } - }, { - "type": "Feature", - "properties": { - "title": "Presidente Figueiredo_AM_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-60.03, -2.06] - } - }, { - "type": "Feature", - "properties": { - "title": "Urucará AP_AM_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-57.76, -2.53] - } - }, { - "type": "Feature", - "properties": { - "title": "Macapá-Alcolumbre Intl AP_AP_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-51.07, 0.04] - } - }, { - "type": "Feature", - "properties": { - "title": "Oiapoque_AP_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-51.86, 3.81] - } - }, { - "type": "Feature", - "properties": { - "title": "Porto Grande_AP_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-51.41, 0.7] - } - }, { - "type": "Feature", - "properties": { - "title": "Tartarugalzinho_AP_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-50.92, 1.5] - } - }, { - "type": "Feature", - "properties": { - "title": "Amargosa AP_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-39.62, -13.01] - } - }, { - "type": "Feature", - "properties": { - "title": "Barra AP_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-43.14, -11.08] - } - }, { - "type": "Feature", - "properties": { - "title": "Barreiras_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-44.99, -12.15] - } - }, { - "type": "Feature", - "properties": { - "title": "Belmonte_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-39.22, -16.09] - } - }, { - "type": "Feature", - "properties": { - "title": "Bom Jesus da Lapa AP_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-43.42, -13.26] - } - }, { - "type": "Feature", - "properties": { - "title": "Brumado_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-41.67, -14.18] - } - }, { - "type": "Feature", - "properties": { - "title": "Buritirama_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-43.65, -10.72] - } - }, { - "type": "Feature", - "properties": { - "title": "Caravelas_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-39.2, -17.73] - } - }, { - "type": "Feature", - "properties": { - "title": "Conde_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-37.62, -11.81] - } - }, { - "type": "Feature", - "properties": { - "title": "Correntina_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-44.62, -13.33] - } - }, { - "type": "Feature", - "properties": { - "title": "Cruz das Almas_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-39.1, -12.67] - } - }, { - "type": "Feature", - "properties": { - "title": "Delfino_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-41.21, -10.46] - } - }, { - "type": "Feature", - "properties": { - "title": "Euclides da Cunha_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-39, -10.54] - } - }, { - "type": "Feature", - "properties": { - "title": "Feira de Santana_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-38.97, -12.27] - } - }, { - "type": "Feature", - "properties": { - "title": "Guanambi_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-42.75, -14.21] - } - }, { - "type": "Feature", - "properties": { - "title": "Ibotirama_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-43.21, -12.19] - } - }, { - "type": "Feature", - "properties": { - "title": "Ilhéus_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-39.05, -14.79] - } - }, { - "type": "Feature", - "properties": { - "title": "Ipiaú_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-39.73, -14.14] - } - }, { - "type": "Feature", - "properties": { - "title": "Irecê_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-41.86, -11.33] - } - }, { - "type": "Feature", - "properties": { - "title": "Itaberaba_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-40.31, -12.53] - } - }, { - "type": "Feature", - "properties": { - "title": "Itapetinga_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-40.24, -15.24] - } - }, { - "type": "Feature", - "properties": { - "title": "Itiruçu_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-40.15, -13.53] - } - }, { - "type": "Feature", - "properties": { - "title": "Jacobina_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-40.47, -11.21] - } - }, { - "type": "Feature", - "properties": { - "title": "Lençóis_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-41.39, -12.56] - } - }, { - "type": "Feature", - "properties": { - "title": "Macajuba_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-40.36, -12.14] - } - }, { - "type": "Feature", - "properties": { - "title": "Maraú_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-38.97, -13.91] - } - }, { - "type": "Feature", - "properties": { - "title": "Paulo Afonso_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-38.22, -9.41] - } - }, { - "type": "Feature", - "properties": { - "title": "Piatã_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-41.77, -13.16] - } - }, { - "type": "Feature", - "properties": { - "title": "Porto Seguro_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-39.18, -16.39] - } - }, { - "type": "Feature", - "properties": { - "title": "Queimadas_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-39.62, -10.98] - } - }, { - "type": "Feature", - "properties": { - "title": "Remanso_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-42.08, -9.62] - } - }, { - "type": "Feature", - "properties": { - "title": "Salvador-Magalhães Intl AP_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-38.33, -12.9] - } - }, { - "type": "Feature", - "properties": { - "title": "Salvador_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-38.51, -12.97] - } - }, { - "type": "Feature", - "properties": { - "title": "Santa Rita de Cássia_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-44.52, -11.01] - } - }, { - "type": "Feature", - "properties": { - "title": "Senhor do Bonfim_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-40.15, -10.44] - } - }, { - "type": "Feature", - "properties": { - "title": "Serrinha_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-39.02, -11.66] - } - }, { - "type": "Feature", - "properties": { - "title": "Uauá_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-39.5, -9.83] - } - }, { - "type": "Feature", - "properties": { - "title": "Uná_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-39.09, -15.28] - } - }, { - "type": "Feature", - "properties": { - "title": "Valença_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-39.07, -13.37] - } - }, { - "type": "Feature", - "properties": { - "title": "Vitória da Conquista_BA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-40.84, -14.87] - } - }, { - "type": "Feature", - "properties": { - "title": "BRA_Belem-Val.de.Caes.821930_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.48, -1.38] - } - }, { - "type": "Feature", - "properties": { - "title": "BRA_Belem.821930_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.48, -1.38] - } - }, { - "type": "Feature", - "properties": { - "title": "BRA_Belo.Horizonte-Pampulha.835830_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-43.95, -19.85] - } - }, { - "type": "Feature", - "properties": { - "title": "BRA_Boa.Vista.820220_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-60.7, 2.83] - } - }, { - "type": "Feature", - "properties": { - "title": "BRA_Bom.Jesus.da.Lapa.832880_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-43.42, -13.27] - } - }, { - "type": "Feature", - "properties": { - "title": "BRA_Brasilia.833780_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-47.93, -15.87] - } - }, { - "type": "Feature", - "properties": { - "title": "BRA_Brasilia.833780_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-47.93, -15.87] - } - }, { - "type": "Feature", - "properties": { - "title": "Acaraú_CE_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-40.09, -3.12] - } - }, { - "type": "Feature", - "properties": { - "title": "Barbalha_CE_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-39.27, -7.3] - } - }, { - "type": "Feature", - "properties": { - "title": "Campos Sales_CE_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-40.36, -7.08] - } - }, { - "type": "Feature", - "properties": { - "title": "Crateús_CE_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-40.67, -5.19] - } - }, { - "type": "Feature", - "properties": { - "title": "Fortaleza_CE_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-38.53, -3.8] - } - }, { - "type": "Feature", - "properties": { - "title": "Fortaleza-Pinto Martins Intl_CE_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-38.53, -3.78] - } - }, { - "type": "Feature", - "properties": { - "title": "Guaramiranga_CE_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-38.93, -4.26] - } - }, { - "type": "Feature", - "properties": { - "title": "Iguatu_CE_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-39.3, -6.36] - } - }, { - "type": "Feature", - "properties": { - "title": "Itapipoca_CE_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-39.59, -3.48] - } - }, { - "type": "Feature", - "properties": { - "title": "Jaguaribe_CE_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-38.63, -5.91] - } - }, { - "type": "Feature", - "properties": { - "title": "Jaguaruana_CE_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-37.78, -4.79] - } - }, { - "type": "Feature", - "properties": { - "title": "Morada Nova_CE_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-38.37, -5.11] - } - }, { - "type": "Feature", - "properties": { - "title": "Quixeramobim_CE_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-39.29, -5.2] - } - }, { - "type": "Feature", - "properties": { - "title": "Tauá_CE_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-40.28, -6.02] - } - }, { - "type": "Feature", - "properties": { - "title": "BRA_Campo.Grande.836120_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-54.67, -20.47] - } - }, { - "type": "Feature", - "properties": { - "title": "BRA_Cuiaba-Marechal.Ron.833620_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-56.1, -15.65] - } - }, { - "type": "Feature", - "properties": { - "title": "BRA_Curitiba-Afonso.Pen.838400_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-49.17, -25.52] - } - }, { - "type": "Feature", - "properties": { - "title": "Brasília-Kubitschek Intl AP_DF_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-47.92, -15.87] - } - }, { - "type": "Feature", - "properties": { - "title": "Brasilia_DF_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-47.93, -15.78] - } - }, { - "type": "Feature", - "properties": { - "title": "Planaltina_DF_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-47.56, -15.53] - } - }, { - "type": "Feature", - "properties": { - "title": "Alegre_ES_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-41.53, -20.76] - } - }, { - "type": "Feature", - "properties": { - "title": "Alfredo Chaves_ES_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-40.75, -20.64] - } - }, { - "type": "Feature", - "properties": { - "title": "Linhares_ES_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-40.07, -19.39] - } - }, { - "type": "Feature", - "properties": { - "title": "Nova Venecia_ES_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-40.39, -18.7] - } - }, { - "type": "Feature", - "properties": { - "title": "Presidente Kennedy_ES_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-41.04, -21.1] - } - }, { - "type": "Feature", - "properties": { - "title": "Santa Teresa_ES_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-40.58, -19.99] - } - }, { - "type": "Feature", - "properties": { - "title": "São Mateus_ES_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-39.86, -18.72] - } - }, { - "type": "Feature", - "properties": { - "title": "Vitória-Salles AP_ES_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-40.28, -20.27] - } - }, { - "type": "Feature", - "properties": { - "title": "Vitória_ES_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-40.34, -20.32] - } - }, { - "type": "Feature", - "properties": { - "title": "BRA_Florianopolis.838990_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.55, -27.67] - } - }, { - "type": "Feature", - "properties": { - "title": "BRA_Fortaleza-Pinto.Mar.823980_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-38.53, -3.78] - } - }, { - "type": "Feature", - "properties": { - "title": "Alto Paraíso de Goiás_GO_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-47.51, -14.13] - } - }, { - "type": "Feature", - "properties": { - "title": "Aragarças_GO_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-52.25, -15.9] - } - }, { - "type": "Feature", - "properties": { - "title": "Caiapônia_GO_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-51.81, -16.96] - } - }, { - "type": "Feature", - "properties": { - "title": "Catalão_GO_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-47.93, -18.16] - } - }, { - "type": "Feature", - "properties": { - "title": "Cristalina_GO_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-47.61, -16.79] - } - }, { - "type": "Feature", - "properties": { - "title": "Goianésia_GO_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-49.12, -15.32] - } - }, { - "type": "Feature", - "properties": { - "title": "Goiânia_GO_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.78, -15.37] - } - }, { - "type": "Feature", - "properties": { - "title": "Goiás_GO_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-50.14, -15.93] - } - }, { - "type": "Feature", - "properties": { - "title": "Itapaci_GO_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-49.55, -14.95] - } - }, { - "type": "Feature", - "properties": { - "title": "Itumbiara_GO_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-49.19, -18.41] - } - }, { - "type": "Feature", - "properties": { - "title": "Jataí_GO_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-51.71, -17.88] - } - }, { - "type": "Feature", - "properties": { - "title": "Luziânia_GO_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-47.95, -16.25] - } - }, { - "type": "Feature", - "properties": { - "title": "Mineiros_GO_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-52.6, -17.57] - } - }, { - "type": "Feature", - "properties": { - "title": "Monte Alegre de Goiás_GO_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.89, -13.5] - } - }, { - "type": "Feature", - "properties": { - "title": "Morrinhos_GO_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-49.1, -17.73] - } - }, { - "type": "Feature", - "properties": { - "title": "Niquelândia_GO_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.46, -14.47] - } - }, { - "type": "Feature", - "properties": { - "title": "Paraúna_GO_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-50.43, -16.96] - } - }, { - "type": "Feature", - "properties": { - "title": "Pires do Rio_GO_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.28, -17.31] - } - }, { - "type": "Feature", - "properties": { - "title": "Posse_GO_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.37, -14.09] - } - }, { - "type": "Feature", - "properties": { - "title": "Rio Verde_GO_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-50.93, -17.8] - } - }, { - "type": "Feature", - "properties": { - "title": "São Simão_GO_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-50.54, -18.99] - } - }, { - "type": "Feature", - "properties": { - "title": "BRA_Jacareacanga.826400_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-57.73, -6.27] - } - }, { - "type": "Feature", - "properties": { - "title": "Alto Parnaíba_MA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-45.93, -9.11] - } - }, { - "type": "Feature", - "properties": { - "title": "Bacabal_MA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-44.8, -4.24] - } - }, { - "type": "Feature", - "properties": { - "title": "Balsas_MA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.03, -7.46] - } - }, { - "type": "Feature", - "properties": { - "title": "Barra do Corda_MA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-45.24, -5.51] - } - }, { - "type": "Feature", - "properties": { - "title": "Buriticupu_MA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.45, -4.32] - } - }, { - "type": "Feature", - "properties": { - "title": "Carolina_MA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-47.46, -7.34] - } - }, { - "type": "Feature", - "properties": { - "title": "Caxias_MA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-43.34, -4.82] - } - }, { - "type": "Feature", - "properties": { - "title": "Chapadinha_MA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-43.35, -3.74] - } - }, { - "type": "Feature", - "properties": { - "title": "Colinas_MA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-44.23, -6.03] - } - }, { - "type": "Feature", - "properties": { - "title": "Estreito_MA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-47.42, -6.65] - } - }, { - "type": "Feature", - "properties": { - "title": "Farol Preguiças_MA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-42.71, -2.59] - } - }, { - "type": "Feature", - "properties": { - "title": "Farol Santana_MA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-43.62, -2.27] - } - }, { - "type": "Feature", - "properties": { - "title": "Grajaú_MA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.16, -5.82] - } - }, { - "type": "Feature", - "properties": { - "title": "Imperatriz_MA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-47.46, -5.56] - } - }, { - "type": "Feature", - "properties": { - "title": "São Luís-Machado Intl AP_MA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-44.23, -2.58] - } - }, { - "type": "Feature", - "properties": { - "title": "São Luís_MA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-44.3, -2.53] - } - }, { - "type": "Feature", - "properties": { - "title": "Turiaçu_MA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-45.37, -1.66] - } - }, { - "type": "Feature", - "properties": { - "title": "Águas Vermelhas_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-41.46, -15.75] - } - }, { - "type": "Feature", - "properties": { - "title": "Aimorés_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-41.06, -19.5] - } - }, { - "type": "Feature", - "properties": { - "title": "Almenara_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-40.69, -16.18] - } - }, { - "type": "Feature", - "properties": { - "title": "Araxá_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.94, -19.59] - } - }, { - "type": "Feature", - "properties": { - "title": "Belo Horizonte-Pampulha AP_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-43.95, -19.85] - } - }, { - "type": "Feature", - "properties": { - "title": "Belo Horizonte-Pampulha AP_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-43.96, -19.82] - } - }, { - "type": "Feature", - "properties": { - "title": "Buritis_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.42, -15.62] - } - }, { - "type": "Feature", - "properties": { - "title": "Caldas_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.39, -21.92] - } - }, { - "type": "Feature", - "properties": { - "title": "Capelinha_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-42.52, -17.69] - } - }, { - "type": "Feature", - "properties": { - "title": "Carangola_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-42.02, -20.73] - } - }, { - "type": "Feature", - "properties": { - "title": "Caratinga_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-42.14, -19.79] - } - }, { - "type": "Feature", - "properties": { - "title": "Chapada Gaúcha_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-45.62, -15.31] - } - }, { - "type": "Feature", - "properties": { - "title": "Conceição das Alagoas_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.15, -19.99] - } - }, { - "type": "Feature", - "properties": { - "title": "Curvelo_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-44.43, -18.76] - } - }, { - "type": "Feature", - "properties": { - "title": "Diamantina AP_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-43.65, -18.23] - } - }, { - "type": "Feature", - "properties": { - "title": "Dores do Indaiá_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-45.6, -19.46] - } - }, { - "type": "Feature", - "properties": { - "title": "Espinosa_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-42.8, -14.92] - } - }, { - "type": "Feature", - "properties": { - "title": "Florestal_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-44.42, -19.89] - } - }, { - "type": "Feature", - "properties": { - "title": "Formiga_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-45.45, -20.46] - } - }, { - "type": "Feature", - "properties": { - "title": "Governador Valadares_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-41.95, -18.85] - } - }, { - "type": "Feature", - "properties": { - "title": "Guarda-Mor_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-47.1, -17.77] - } - }, { - "type": "Feature", - "properties": { - "title": "Ibirité_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-44.01, -20.03] - } - }, { - "type": "Feature", - "properties": { - "title": "Itaobim_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-41.29, -16.34] - } - }, { - "type": "Feature", - "properties": { - "title": "Ituiutaba_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-49.47, -18.97] - } - }, { - "type": "Feature", - "properties": { - "title": "João Pinheiro AP_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.12, -17.78] - } - }, { - "type": "Feature", - "properties": { - "title": "Juiz de Fora_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-43.35, -21.76] - } - }, { - "type": "Feature", - "properties": { - "title": "Mantena_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-40.98, -18.78] - } - }, { - "type": "Feature", - "properties": { - "title": "Maria da Fé_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-45.38, -22.31] - } - }, { - "type": "Feature", - "properties": { - "title": "Mocambinho_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-44.02, -15.09] - } - }, { - "type": "Feature", - "properties": { - "title": "Montalvânia_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-44.37, -14.42] - } - }, { - "type": "Feature", - "properties": { - "title": "Monte Verde AP_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.03, -22.86] - } - }, { - "type": "Feature", - "properties": { - "title": "Montes Claros_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-43.86, -16.74] - } - }, { - "type": "Feature", - "properties": { - "title": "Muriaé_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-42.37, -21.13] - } - }, { - "type": "Feature", - "properties": { - "title": "Ouro Branco_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-43.69, -20.52] - } - }, { - "type": "Feature", - "properties": { - "title": "Passa Quatro_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-44.97, -22.39] - } - }, { - "type": "Feature", - "properties": { - "title": "Passos_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.63, -20.75] - } - }, { - "type": "Feature", - "properties": { - "title": "Patrocínio_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.99, -18.94] - } - }, { - "type": "Feature", - "properties": { - "title": "Pirapora AP_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-44.94, -17.34] - } - }, { - "type": "Feature", - "properties": { - "title": "Rio Pardo de Minas_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-42.44, -15.72] - } - }, { - "type": "Feature", - "properties": { - "title": "Sacramento_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-47.44, -19.86] - } - }, { - "type": "Feature", - "properties": { - "title": "Salinas_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-42.29, -16.17] - } - }, { - "type": "Feature", - "properties": { - "title": "São João del Rei_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-44.26, -21.14] - } - }, { - "type": "Feature", - "properties": { - "title": "São Romão_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-45.07, -16.37] - } - }, { - "type": "Feature", - "properties": { - "title": "Serra dos Aimorés_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-40.25, -17.78] - } - }, { - "type": "Feature", - "properties": { - "title": "Teófilo Otoni_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-41.51, -17.86] - } - }, { - "type": "Feature", - "properties": { - "title": "Timóteo_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-42.64, -19.58] - } - }, { - "type": "Feature", - "properties": { - "title": "Três Marias_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-45.24, -18.21] - } - }, { - "type": "Feature", - "properties": { - "title": "Uberlândia_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.28, -18.92] - } - }, { - "type": "Feature", - "properties": { - "title": "Unaí AP_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.91, -16.36] - } - }, { - "type": "Feature", - "properties": { - "title": "Varginha_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-45.43, -21.55] - } - }, { - "type": "Feature", - "properties": { - "title": "Viçosa_MG_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-42.88, -20.75] - } - }, { - "type": "Feature", - "properties": { - "title": "Amambai_MS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-55.33, -23] - } - }, { - "type": "Feature", - "properties": { - "title": "Campo Grande Intl AP_MS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-54.65, -20.44] - } - }, { - "type": "Feature", - "properties": { - "title": "Chapadão do Sul_MS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-52.62, -18.79] - } - }, { - "type": "Feature", - "properties": { - "title": "Corumbá Intl AP_MS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-57.65, -19.01] - } - }, { - "type": "Feature", - "properties": { - "title": "Coxim_MS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-54.44, -18.3] - } - }, { - "type": "Feature", - "properties": { - "title": "Dourados_MS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-54.81, -22.22] - } - }, { - "type": "Feature", - "properties": { - "title": "Ivinhema_MS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-53.81, -22.31] - } - }, { - "type": "Feature", - "properties": { - "title": "Juti_MS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-54.61, -22.86] - } - }, { - "type": "Feature", - "properties": { - "title": "Miranda_MS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-56.38, -20.24] - } - }, { - "type": "Feature", - "properties": { - "title": "Nhumirim_MS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-56.62, -18.99] - } - }, { - "type": "Feature", - "properties": { - "title": "Ponta Porã_MS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-55.73, -22.54] - } - }, { - "type": "Feature", - "properties": { - "title": "Porto Murtinho AP_MS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-57.88, -21.7] - } - }, { - "type": "Feature", - "properties": { - "title": "Rio Brilhante_MS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-54.53, -21.78] - } - }, { - "type": "Feature", - "properties": { - "title": "Sete Quedas_MS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-55.02, -23.97] - } - }, { - "type": "Feature", - "properties": { - "title": "Sidrolândia_MS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-54.97, -20.98] - } - }, { - "type": "Feature", - "properties": { - "title": "Três Lagoas AP_MS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-51.68, -20.75] - } - }, { - "type": "Feature", - "properties": { - "title": "Água Boa_MT_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-52.16, -14.05] - } - }, { - "type": "Feature", - "properties": { - "title": "Alto Taquari_MT_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-53.29, -17.82] - } - }, { - "type": "Feature", - "properties": { - "title": "Apiacás_MT_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-57.45, -9.54] - } - }, { - "type": "Feature", - "properties": { - "title": "Campo Novo do Parecis_MT_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-57.89, -13.68] - } - }, { - "type": "Feature", - "properties": { - "title": "Campo Verde_MT_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-55.17, -15.55] - } - }, { - "type": "Feature", - "properties": { - "title": "Carlinda_MT_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-55.83, -9.97] - } - }, { - "type": "Feature", - "properties": { - "title": "Comodoro_MT_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-59.79, -13.66] - } - }, { - "type": "Feature", - "properties": { - "title": "Confresa_MT_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-51.57, -10.65] - } - }, { - "type": "Feature", - "properties": { - "title": "Cotriguaçu_MT_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.41, -9.86] - } - }, { - "type": "Feature", - "properties": { - "title": "Cuiabá_MT_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-56, -15.62] - } - }, { - "type": "Feature", - "properties": { - "title": "Gaúcha do Norte_MT_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-53.26, -13.18] - } - }, { - "type": "Feature", - "properties": { - "title": "Guarantã do Norte_MT_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-54.91, -9.79] - } - }, { - "type": "Feature", - "properties": { - "title": "Guiratinga_MT_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-53.77, -16.34] - } - }, { - "type": "Feature", - "properties": { - "title": "Itiquira_MT_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-54.5, -17.18] - } - }, { - "type": "Feature", - "properties": { - "title": "Juara_MT_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-57.52, -11.26] - } - }, { - "type": "Feature", - "properties": { - "title": "Juína_MT_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.74, -11.38] - } - }, { - "type": "Feature", - "properties": { - "title": "Nova Maringá_MT_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-57.09, -13.04] - } - }, { - "type": "Feature", - "properties": { - "title": "Novo Mundo_MT_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.23, -12.52] - } - }, { - "type": "Feature", - "properties": { - "title": "Paranatinga_MT_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-54.05, -14.43] - } - }, { - "type": "Feature", - "properties": { - "title": "Pontes de Lacerda_MT_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-59.35, -15.25] - } - }, { - "type": "Feature", - "properties": { - "title": "Porto Estrela_MT_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-57.23, -15.32] - } - }, { - "type": "Feature", - "properties": { - "title": "Querência_MT_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-52.22, -12.63] - } - }, { - "type": "Feature", - "properties": { - "title": "Rondonópolis_MT_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-54.64, -16.47] - } - }, { - "type": "Feature", - "properties": { - "title": "Salto do Céu_MT_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.13, -15.12] - } - }, { - "type": "Feature", - "properties": { - "title": "Santo Antônio do Leste_MT_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-53.88, -14.93] - } - }, { - "type": "Feature", - "properties": { - "title": "São Félix do Araguaia_MT_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-50.73, -11.62] - } - }, { - "type": "Feature", - "properties": { - "title": "São José do Rio Claro_MT_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-56.72, -13.45] - } - }, { - "type": "Feature", - "properties": { - "title": "Sinop_MT_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-55.5, -11.86] - } - }, { - "type": "Feature", - "properties": { - "title": "Sorriso_MT_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-55.71, -12.55] - } - }, { - "type": "Feature", - "properties": { - "title": "Tangará da Serra_MT_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-57.49, -14.62] - } - }, { - "type": "Feature", - "properties": { - "title": "Vila Bela da Santíssima Trind_MT_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-59.95, -15.01] - } - }, { - "type": "Feature", - "properties": { - "title": "BRA_Manaus.823310_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-60.02, -3.13] - } - }, { - "type": "Feature", - "properties": { - "title": "Belém-Ribeiro Intl AP_PA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.48, -1.38] - } - }, { - "type": "Feature", - "properties": { - "title": "Belém_PA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.5, -1.46] - } - }, { - "type": "Feature", - "properties": { - "title": "Bragança_PA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.78, -1.05] - } - }, { - "type": "Feature", - "properties": { - "title": "Cametá_PA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-49.49, -2.25] - } - }, { - "type": "Feature", - "properties": { - "title": "Castanhal_PA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-47.92, -1.3] - } - }, { - "type": "Feature", - "properties": { - "title": "Conceição do Araguaia_PA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-49.27, -6.28] - } - }, { - "type": "Feature", - "properties": { - "title": "Itaituba_PA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-55.99, -4.28] - } - }, { - "type": "Feature", - "properties": { - "title": "Marabá_PA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-49.12, -5.37] - } - }, { - "type": "Feature", - "properties": { - "title": "Novo Repartimento_PA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-49.93, -4.26] - } - }, { - "type": "Feature", - "properties": { - "title": "Pacajá_PA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-50.64, -3.84] - } - }, { - "type": "Feature", - "properties": { - "title": "Paragominas_PA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-47.34, -3.01] - } - }, { - "type": "Feature", - "properties": { - "title": "Placas_PA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-54.22, -3.86] - } - }, { - "type": "Feature", - "properties": { - "title": "Rondon do Pará_PA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.07, -4.78] - } - }, { - "type": "Feature", - "properties": { - "title": "Salinópolis_PA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-47.35, -0.62] - } - }, { - "type": "Feature", - "properties": { - "title": "Santana do Araguaia_PA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-50.33, -9.34] - } - }, { - "type": "Feature", - "properties": { - "title": "Serra dos Carajás_PA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-50.14, -6.08] - } - }, { - "type": "Feature", - "properties": { - "title": "Soure_PA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.52, -0.81] - } - }, { - "type": "Feature", - "properties": { - "title": "Tomé Açu_PA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.36, -2.59] - } - }, { - "type": "Feature", - "properties": { - "title": "Tucuruí_PA_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-49.68, -3.82] - } - }, { - "type": "Feature", - "properties": { - "title": "Areia_PB_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-35.69, -6.96] - } - }, { - "type": "Feature", - "properties": { - "title": "Cabaceiras_PB_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-36.29, -7.48] - } - }, { - "type": "Feature", - "properties": { - "title": "Camaratuba_PB_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-35.13, -6.61] - } - }, { - "type": "Feature", - "properties": { - "title": "Campina Grande_PB_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-35.88, -7.23] - } - }, { - "type": "Feature", - "properties": { - "title": "João Pessoa_PB_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-34.86, -7.11] - } - }, { - "type": "Feature", - "properties": { - "title": "Monteiro_PB_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-37.12, -7.89] - } - }, { - "type": "Feature", - "properties": { - "title": "Patos_PB_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-37.28, -7.02] - } - }, { - "type": "Feature", - "properties": { - "title": "São Gonçalo_PB_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-38.31, -6.84] - } - }, { - "type": "Feature", - "properties": { - "title": "Arcoverde_PE_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-37.05, -8.42] - } - }, { - "type": "Feature", - "properties": { - "title": "Cabrobó_PE_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-39.31, -8.5] - } - }, { - "type": "Feature", - "properties": { - "title": "Caruaru_PE_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-35.99, -8.24] - } - }, { - "type": "Feature", - "properties": { - "title": "Floresta_PE_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-38.59, -8.61] - } - }, { - "type": "Feature", - "properties": { - "title": "Garanhuns_PE_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-36.49, -8.89] - } - }, { - "type": "Feature", - "properties": { - "title": "Ibimirim_PE_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-37.71, -8.51] - } - }, { - "type": "Feature", - "properties": { - "title": "Palmares_PE_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-35.57, -8.67] - } - }, { - "type": "Feature", - "properties": { - "title": "Petrolina_PE_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-40.51, -9.39] - } - }, { - "type": "Feature", - "properties": { - "title": "Recife-Guararapes-Freyre Intl_PE_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-34.92, -8.13] - } - }, { - "type": "Feature", - "properties": { - "title": "Recife_PE_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-34.88, -8.05] - } - }, { - "type": "Feature", - "properties": { - "title": "Serra Talhada_PE_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-38.29, -7.95] - } - }, { - "type": "Feature", - "properties": { - "title": "Surubim_PE_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-35.79, -7.84] - } - }, { - "type": "Feature", - "properties": { - "title": "Alvorada do Gurguéia_PI_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-43.86, -8.44] - } - }, { - "type": "Feature", - "properties": { - "title": "Bom Jesus do Piaui_PI_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-44.36, -9.07] - } - }, { - "type": "Feature", - "properties": { - "title": "Caracol_PI_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-43.32, -9.29] - } - }, { - "type": "Feature", - "properties": { - "title": "Castelo do Piaui_PI_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-41.51, -5.35] - } - }, { - "type": "Feature", - "properties": { - "title": "Esperantina_PI_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-42.26, -3.9] - } - }, { - "type": "Feature", - "properties": { - "title": "Floriano_PI_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-43.02, -6.77] - } - }, { - "type": "Feature", - "properties": { - "title": "Gilbués_PI_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-45.35, -9.87] - } - }, { - "type": "Feature", - "properties": { - "title": "Oeiras_PI_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-42.15, -6.97] - } - }, { - "type": "Feature", - "properties": { - "title": "Parnaíba_PI_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-41.78, -2.9] - } - }, { - "type": "Feature", - "properties": { - "title": "Paulistana_PI_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-41.15, -8.14] - } - }, { - "type": "Feature", - "properties": { - "title": "Picos_PI_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-41.4, -7.07] - } - }, { - "type": "Feature", - "properties": { - "title": "Piripiri_PI_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-41.78, -4.27] - } - }, { - "type": "Feature", - "properties": { - "title": "São João do Piauí_PI_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-42.25, -8.36] - } - }, { - "type": "Feature", - "properties": { - "title": "São Pedro do Piauí_PI_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-42.72, -5.91] - } - }, { - "type": "Feature", - "properties": { - "title": "São Raimundo Nonato_PI_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-42.7, -9.03] - } - }, { - "type": "Feature", - "properties": { - "title": "Teresina_PI_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-42.8, -5.09] - } - }, { - "type": "Feature", - "properties": { - "title": "Uruçuí_PI_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-44.34, -7.47] - } - }, { - "type": "Feature", - "properties": { - "title": "Valença do Piauí_PI_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-41.74, -6.4] - } - }, { - "type": "Feature", - "properties": { - "title": "Castro_PR_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-50.01, -24.79] - } - }, { - "type": "Feature", - "properties": { - "title": "Cidade Gaúcha_PR_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-52.93, -23.36] - } - }, { - "type": "Feature", - "properties": { - "title": "Clevelândia_PR_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-52.35, -26.42] - } - }, { - "type": "Feature", - "properties": { - "title": "Curitiba-Pena Intl AP_PR_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-49.18, -25.52] - } - }, { - "type": "Feature", - "properties": { - "title": "Curitiba_PR_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-49.27, -25.43] - } - }, { - "type": "Feature", - "properties": { - "title": "Diamante do Norte_PR_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-52.89, -22.64] - } - }, { - "type": "Feature", - "properties": { - "title": "Dois Vizinhos_PR_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-53.09, -25.69] - } - }, { - "type": "Feature", - "properties": { - "title": "Foz do Iguaçu-Cataratas Intl_PR_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-54.48, -25.6] - } - }, { - "type": "Feature", - "properties": { - "title": "General Carneiro_PR_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-51.35, -26.4] - } - }, { - "type": "Feature", - "properties": { - "title": "Ibaiti_PR_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-50.18, -23.77] - } - }, { - "type": "Feature", - "properties": { - "title": "Icaraíma_PR_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-53.61, -23.4] - } - }, { - "type": "Feature", - "properties": { - "title": "Ilha do Mel_PR_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.32, -25.57] - } - }, { - "type": "Feature", - "properties": { - "title": "Inácio Martins_PR_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-51.08, -25.57] - } - }, { - "type": "Feature", - "properties": { - "title": "Ivaí_PR_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-50.86, -25.01] - } - }, { - "type": "Feature", - "properties": { - "title": "Joaquim Távora_PR_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-49.9, -23.5] - } - }, { - "type": "Feature", - "properties": { - "title": "Londrina_PR_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-51.18, -23.38] - } - }, { - "type": "Feature", - "properties": { - "title": "Marechal Cândido Rondon_PR_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-54.06, -24.56] - } - }, { - "type": "Feature", - "properties": { - "title": "Maringá_PR_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-51.94, -23.42] - } - }, { - "type": "Feature", - "properties": { - "title": "Maringá AP_PR_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-51.92, -23.4] - } - }, { - "type": "Feature", - "properties": { - "title": "Nova Fátima_PR_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-50.56, -23.43] - } - }, { - "type": "Feature", - "properties": { - "title": "Nova Tebas_PR_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-51.94, -24.44] - } - }, { - "type": "Feature", - "properties": { - "title": "Paranapoema_PR_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-52.13, -22.49] - } - }, { - "type": "Feature", - "properties": { - "title": "Planalto_PR_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-53.75, -25.72] - } - }, { - "type": "Feature", - "properties": { - "title": "BRA_Petrolina.829840_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-40.55, -9.35] - } - }, { - "type": "Feature", - "properties": { - "title": "BRA_Porto.Nacional.830630_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.4, -10.7] - } - }, { - "type": "Feature", - "properties": { - "title": "BRA_Porto.Velho.828240_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-63.92, -8.77] - } - }, { - "type": "Feature", - "properties": { - "title": "Arraial do Cabo_RJ_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-42.03, -22.97] - } - }, { - "type": "Feature", - "properties": { - "title": "Cambuci_RJ_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-41.91, -21.58] - } - }, { - "type": "Feature", - "properties": { - "title": "Campos dos Goytacazes_RJ_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-41.32, -21.75] - } - }, { - "type": "Feature", - "properties": { - "title": "Duque de Caxias-Xerém_RJ_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-43.3, -22.57] - } - }, { - "type": "Feature", - "properties": { - "title": "Farol de São Tomé_RJ_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-41.05, -22.04] - } - }, { - "type": "Feature", - "properties": { - "title": "Macaé_RJ_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-41.79, -22.37] - } - }, { - "type": "Feature", - "properties": { - "title": "Niterói_RJ_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-43.13, -22.91] - } - }, { - "type": "Feature", - "properties": { - "title": "Paraty_RJ_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-44.71, -23.22] - } - }, { - "type": "Feature", - "properties": { - "title": "Petrópolis-Pico do Couto_RJ_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-43.3, -22.46] - } - }, { - "type": "Feature", - "properties": { - "title": "Resende_RJ_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-44.45, -22.47] - } - }, { - "type": "Feature", - "properties": { - "title": "Rio De Janeiroo-Galeão-Jobim_RJ_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-43.25, -22.83] - } - }, { - "type": "Feature", - "properties": { - "title": "Rio de Janeiro-Vila Militar_RJ_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-43.41, -22.86] - } - }, { - "type": "Feature", - "properties": { - "title": "Teresópolis_RJ_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-42.97, -22.41] - } - }, { - "type": "Feature", - "properties": { - "title": "Valença_RJ_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-43.7, -22.25] - } - }, { - "type": "Feature", - "properties": { - "title": "Apodi_RN_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-37.83, -5.63] - } - }, { - "type": "Feature", - "properties": { - "title": "Caicó_RN_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-37.1, -6.46] - } - }, { - "type": "Feature", - "properties": { - "title": "Macau_RN_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-36.63, -5.11] - } - }, { - "type": "Feature", - "properties": { - "title": "Mossoró_RN_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-37.34, -5.19] - } - }, { - "type": "Feature", - "properties": { - "title": "Natal-Severo Intl AP_RN_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-35.25, -5.92] - } - }, { - "type": "Feature", - "properties": { - "title": "Natal_RN_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-35.21, -5.8] - } - }, { - "type": "Feature", - "properties": { - "title": "Touros_RN_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-35.49, -5.16] - } - }, { - "type": "Feature", - "properties": { - "title": "Ariquemes_RO_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-62.96, -9.95] - } - }, { - "type": "Feature", - "properties": { - "title": "Cacoal_RO_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.43, -11.45] - } - }, { - "type": "Feature", - "properties": { - "title": "Porto Velho_RO_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-63.9, -8.76] - } - }, { - "type": "Feature", - "properties": { - "title": "Vilhena_RO_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-60.16, -12.73] - } - }, { - "type": "Feature", - "properties": { - "title": "Boa Vista_RR_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-60.65, 2.8] - } - }, { - "type": "Feature", - "properties": { - "title": "Alegrete_RS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-55.79, -29.78] - } - }, { - "type": "Feature", - "properties": { - "title": "Bagé_RS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-54.11, -31.33] - } - }, { - "type": "Feature", - "properties": { - "title": "Bento Gonçalves_RS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-51.52, -29.17] - } - }, { - "type": "Feature", - "properties": { - "title": "Caçapava do Sul_RS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-53.49, -30.51] - } - }, { - "type": "Feature", - "properties": { - "title": "Camaquã_RS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-51.83, -30.81] - } - }, { - "type": "Feature", - "properties": { - "title": "Canela AP_RS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-50.83, -29.37] - } - }, { - "type": "Feature", - "properties": { - "title": "Canguçu_RS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-52.7, -31.41] - } - }, { - "type": "Feature", - "properties": { - "title": "Chuí_RS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-53.37, -33.74] - } - }, { - "type": "Feature", - "properties": { - "title": "Cruz Alta_RS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-53.67, -28.6] - } - }, { - "type": "Feature", - "properties": { - "title": "Erechim_RS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-52.27, -27.63] - } - }, { - "type": "Feature", - "properties": { - "title": "Frederico Westphalen_RS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-53.43, -27.4] - } - }, { - "type": "Feature", - "properties": { - "title": "Jaguarão_RS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-53.38, -32.57] - } - }, { - "type": "Feature", - "properties": { - "title": "Lagoa Vermelha_RS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-51.51, -28.22] - } - }, { - "type": "Feature", - "properties": { - "title": "Mostardas_RS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-50.91, -31.25] - } - }, { - "type": "Feature", - "properties": { - "title": "Palmeira das Missões_RS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-53.32, -27.92] - } - }, { - "type": "Feature", - "properties": { - "title": "Passo Fundo_RS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-52.41, -28.26] - } - }, { - "type": "Feature", - "properties": { - "title": "Porto Alegre-Filho Intl AP_RS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-51.18, -30] - } - }, { - "type": "Feature", - "properties": { - "title": "Porto Alegre_RS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-51.23, -30.03] - } - }, { - "type": "Feature", - "properties": { - "title": "Quaraí_RS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-56.44, -30.37] - } - }, { - "type": "Feature", - "properties": { - "title": "Rio Pardo_RS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-52.38, -29.87] - } - }, { - "type": "Feature", - "properties": { - "title": "Santa Maria_RS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-53.81, -29.68] - } - }, { - "type": "Feature", - "properties": { - "title": "Santana do Livramento_RS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-55.53, -30.89] - } - }, { - "type": "Feature", - "properties": { - "title": "Santiago_RS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-54.89, -29.19] - } - }, { - "type": "Feature", - "properties": { - "title": "Santo Augusto_RS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-53.78, -27.85] - } - }, { - "type": "Feature", - "properties": { - "title": "São Borja_RS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-56, -28.66] - } - }, { - "type": "Feature", - "properties": { - "title": "São Gabriel_RS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-54.31, -30.34] - } - }, { - "type": "Feature", - "properties": { - "title": "São José dos Ausentes_RS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-50.07, -28.75] - } - }, { - "type": "Feature", - "properties": { - "title": "São Luiz Gonzaga_RS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-54.96, -28.41] - } - }, { - "type": "Feature", - "properties": { - "title": "Soledade_RS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-52.54, -28.85] - } - }, { - "type": "Feature", - "properties": { - "title": "Torres_RS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-49.73, -29.33] - } - }, { - "type": "Feature", - "properties": { - "title": "Tramandaí_RS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-50.14, -30.01] - } - }, { - "type": "Feature", - "properties": { - "title": "Uruguaiana_RS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-57.09, -29.75] - } - }, { - "type": "Feature", - "properties": { - "title": "Vacaria_RS_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-50.88, -28.51] - } - }, { - "type": "Feature", - "properties": { - "title": "BRA_Recife-Guararapes.828990_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-34.85, -8.07] - } - }, { - "type": "Feature", - "properties": { - "title": "BRA_Recife.828990_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-34.88, -8.1] - } - }, { - "type": "Feature", - "properties": { - "title": "BRA_Rio.de.Janeiro-Santos.Dumont.837550_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-43.17, -22.9] - } - }, { - "type": "Feature", - "properties": { - "title": "Araranguá_SC_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-49.5, -28.93] - } - }, { - "type": "Feature", - "properties": { - "title": "Caçador_SC_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-50.84, -26.82] - } - }, { - "type": "Feature", - "properties": { - "title": "Curitibanos AP_SC_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-50.6, -27.29] - } - }, { - "type": "Feature", - "properties": { - "title": "Dionísio Cerqueira_SC_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-53.63, -26.29] - } - }, { - "type": "Feature", - "properties": { - "title": "Florianópolis-Luz AP_SC_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.55, -27.67] - } - }, { - "type": "Feature", - "properties": { - "title": "Florianópolis_SC_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.55, -27.6] - } - }, { - "type": "Feature", - "properties": { - "title": "Indaial_SC_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-49.27, -26.92] - } - }, { - "type": "Feature", - "properties": { - "title": "Itapoá_SC_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.62, -26.12] - } - }, { - "type": "Feature", - "properties": { - "title": "Ituporanga_SC_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-49.65, -27.42] - } - }, { - "type": "Feature", - "properties": { - "title": "Joaçaba-Santa Terezinha Muni_SC_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-51.56, -27.17] - } - }, { - "type": "Feature", - "properties": { - "title": "Major Vieira_SC_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-50.36, -26.4] - } - }, { - "type": "Feature", - "properties": { - "title": "Novo Horizonte_SC_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-52.85, -26.41] - } - }, { - "type": "Feature", - "properties": { - "title": "Rio Negrinho_SC_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-49.58, -26.25] - } - }, { - "type": "Feature", - "properties": { - "title": "Santa Marta_SC_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.81, -28.6] - } - }, { - "type": "Feature", - "properties": { - "title": "São Joaquim_SC_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-49.93, -28.28] - } - }, { - "type": "Feature", - "properties": { - "title": "São Miguel do Oeste AP_SC_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-53.5, -26.78] - } - }, { - "type": "Feature", - "properties": { - "title": "Urubici_SC_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-49.48, -28.13] - } - }, { - "type": "Feature", - "properties": { - "title": "Urussanga_SC_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-49.32, -28.53] - } - }, { - "type": "Feature", - "properties": { - "title": "Xanxerê_SC_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-52.4, -26.94] - } - }, { - "type": "Feature", - "properties": { - "title": "Aracaju_SE_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-37.07, -10.91] - } - }, { - "type": "Feature", - "properties": { - "title": "Brejo Grande_SE_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-36.48, -10.47] - } - }, { - "type": "Feature", - "properties": { - "title": "Carira_SE_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-37.75, -10.4] - } - }, { - "type": "Feature", - "properties": { - "title": "Itabaianinha_SE_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-37.79, -11.27] - } - }, { - "type": "Feature", - "properties": { - "title": "Poço Verde_SE_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-38.11, -10.74] - } - }, { - "type": "Feature", - "properties": { - "title": "Ariranha_SP_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.84, -21.13] - } - }, { - "type": "Feature", - "properties": { - "title": "Avaré_SP_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.93, -23.1] - } - }, { - "type": "Feature", - "properties": { - "title": "Bauru_SP_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-49.06, -22.32] - } - }, { - "type": "Feature", - "properties": { - "title": "Campinas_SP_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-47.06, -22.82] - } - }, { - "type": "Feature", - "properties": { - "title": "Campos do Jordão_SP_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-45.59, -22.74] - } - }, { - "type": "Feature", - "properties": { - "title": "Casa Branca_SP_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-47.09, -21.77] - } - }, { - "type": "Feature", - "properties": { - "title": "Franca_SP_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-47.4, -20.54] - } - }, { - "type": "Feature", - "properties": { - "title": "Ibitinga_SP_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.8, -21.86] - } - }, { - "type": "Feature", - "properties": { - "title": "Iguape_SP_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-47.56, -24.71] - } - }, { - "type": "Feature", - "properties": { - "title": "Itapeva_SP_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.88, -23.98] - } - }, { - "type": "Feature", - "properties": { - "title": "Itapira_SP_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.81, -22.42] - } - }, { - "type": "Feature", - "properties": { - "title": "Ituverava_SP_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-47.78, -20.36] - } - }, { - "type": "Feature", - "properties": { - "title": "Jales_SP_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-50.55, -20.27] - } - }, { - "type": "Feature", - "properties": { - "title": "José Bonifácio_SP_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-49.92, -21.1] - } - }, { - "type": "Feature", - "properties": { - "title": "Lins_SP_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-49.74, -21.68] - } - }, { - "type": "Feature", - "properties": { - "title": "Ourinhos_SP_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-49.87, -22.98] - } - }, { - "type": "Feature", - "properties": { - "title": "Piracicaba_SP_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-47.65, -22.73] - } - }, { - "type": "Feature", - "properties": { - "title": "Presidente Prudente_SP_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-51.39, -22.13] - } - }, { - "type": "Feature", - "properties": { - "title": "Rancharia_SP_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-50.97, -22.37] - } - }, { - "type": "Feature", - "properties": { - "title": "São Carlos_SP_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-47.89, -22.02] - } - }, { - "type": "Feature", - "properties": { - "title": "São Luís do Paraitinga_SP_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-45.42, -23.23] - } - }, { - "type": "Feature", - "properties": { - "title": "São Paulo-Congonhas AP_SP_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.65, -23.62] - } - }, { - "type": "Feature", - "properties": { - "title": "São Paulo_SP_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.64, -23.85] - } - }, { - "type": "Feature", - "properties": { - "title": "Sorocaba_SP_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-47.46, -23.5] - } - }, { - "type": "Feature", - "properties": { - "title": "Taubaté_SP_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-45.56, -23.03] - } - }, { - "type": "Feature", - "properties": { - "title": "Valparaíso_SP_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-50.93, -21.32] - } - }, { - "type": "Feature", - "properties": { - "title": "Votuporanga_SP_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-49.97, -20.42] - } - }, { - "type": "Feature", - "properties": { - "title": "BRA_Salvador.832290_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-38.52, -13.02] - } - }, { - "type": "Feature", - "properties": { - "title": "BRA_Santa.Maria.839360_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-53.7, -29.7] - } - }, { - "type": "Feature", - "properties": { - "title": "BRA_Sao.Paulo-Congonhas.837800_SWERA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.65, -23.62] - } - }, { - "type": "Feature", - "properties": { - "title": "BRA_Sao.Paulo.837800_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.65, -23.62] - } - }, { - "type": "Feature", - "properties": { - "title": "Araguaína_TO_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.22, -7.18] - } - }, { - "type": "Feature", - "properties": { - "title": "Araguatins_TO_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.11, -5.64] - } - }, { - "type": "Feature", - "properties": { - "title": "Dianópolis_TO_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.85, -11.59] - } - }, { - "type": "Feature", - "properties": { - "title": "Formoso do Araguaia_TO_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-49.61, -11.78] - } - }, { - "type": "Feature", - "properties": { - "title": "Gurupi_TO_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-49.08, -11.72] - } - }, { - "type": "Feature", - "properties": { - "title": "Palmas_TO_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.33, -10.17] - } - }, { - "type": "Feature", - "properties": { - "title": "Paranã_TO_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-47.87, -12.6] - } - }, { - "type": "Feature", - "properties": { - "title": "Pedro Afonso_TO_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.17, -8.97] - } - }, { - "type": "Feature", - "properties": { - "title": "Peixe_TO_BRA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.54, -12.02] - } - }, { - "type": "Feature", - "properties": { - "title": "CHL_Antofagasta.854420_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-70.43, -23.43] - } - }, { - "type": "Feature", - "properties": { - "title": "CHL_Concepcion.856820_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-73.05, -36.77] - } - }, { - "type": "Feature", - "properties": { - "title": "CHL_Easter.Island.854690_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-109.42, -27.15] - } - }, { - "type": "Feature", - "properties": { - "title": "CHL_Punta.Arenas.859340_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-70.85, -53] - } - }, { - "type": "Feature", - "properties": { - "title": "CHL_Santiago.855740_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-70.78, -33.38] - } - }, { - "type": "Feature", - "properties": { - "title": "COL_Bogota.802220_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-74.13, 4.7] - } - }, { - "type": "Feature", - "properties": { - "title": "ECU_Quito.840710_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-78.48, -0.15] - } - }, { - "type": "Feature", - "properties": { - "title": "PER_Arequipa.847520_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-71.55, -16.32] - } - }, { - "type": "Feature", - "properties": { - "title": "PER_Cuzco.846860_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-71.98, -13.55] - } - }, { - "type": "Feature", - "properties": { - "title": "PER_Lima.846280_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.12, -12] - } - }, { - "type": "Feature", - "properties": { - "title": "PRY_Asuncion.862180_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-57.57, -25.25] - } - }, { - "type": "Feature", - "properties": { - "title": "URY_Montevideo.865800_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-56, -34.83] - } - }, { - "type": "Feature", - "properties": { - "title": "VEN_Caracas.804150_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [-66.98, 10.6] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_ACT.Canberra.949260_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [149.18, -35.3] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_ACT.Canberra.Airport.949260_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [149.2, -35.3] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_NSW.Armidale.Airport.957730_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [151.62, -30.53] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_NSW.Cabramurra.959160_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [148.38, -35.93] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_NSW.Cobar.947110_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [145.83, -31.48] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_NSW.Coffs.Harbour.947910_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [153.12, -30.32] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_NSW.Dubbo.Airport.957190_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [148.57, -32.22] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_NSW.Mascot-Sydney.Airport.947670_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [151.17, -33.93] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_NSW.Moree.Aero.955270_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [149.83, -29.48] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_NSW.Nowra.RAN.Air.Station.947500_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [150.53, -34.95] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_NSW.Orange.Airport.957260_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [149.13, -33.38] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_NSW.Richmond.RAAF.957530_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [150.78, -33.6] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_NSW.Sydney.947670_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [151.18, -33.95] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_NSW.Sydney.947680_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [151.2, -33.85] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_NSW.Thredbo.Village.959080_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [148.3, -36.5] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_NSW.Wagga.Wagga.949100_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [147.45, -35.17] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_NSW.Williamtown.RAAF.947760_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [151.83, -32.8] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_NT.Alice.Springs.Airport.943260_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [133.88, -23.8] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_NT.Darwin.941200_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [130.87, -12.4] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_NT.Darwin.Airport.941200_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [130.88, -12.42] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_NT.Tennant.Creek.942380_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [134.18, -19.63] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_QLD.Amberley.945680_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [152.72, -27.63] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_QLD.Brisbane.945780_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [153.1, -27.38] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_QLD.Brisbane.94578_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [153.13, -27.38] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_QLD.Cairns.Aero.948270_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [145.75, -16.88] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_QLD.Charleville.Aero.945100_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [146.27, -26.42] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_QLD.Gladstone.Airport.943810_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [151.22, -23.87] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_QLD.Longreach.Aero.943460_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [144.28, -23.43] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_QLD.Mackay.943670_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [149.22, -21.12] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_QLD.Mount.Isa.Aero.943320_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [139.48, -20.68] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_QLD.Oakey.Aero.945520_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [151.73, -27.42] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_QLD.Rockhampton.Aero.943740_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [150.48, -23.38] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_QLD.Townsville.Aero.942940_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [146.77, -19.25] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_QLD.Weipa.Aero.941700_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [141.92, -12.68] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_QLD.Willis.Island.942990_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [149.97, -16.3] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_SA.Adelaide-Kent.Town.946750_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [138.62, -34.92] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_SA.Adelaide.946720_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [138.52, -34.93] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_SA.Ceduna.946530_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [133.7, -32.13] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_SA.Mount.Gambier.Aero.948210_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [140.78, -37.73] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_SA.Mt.Lofty.946780_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [138.7, -34.97] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_SA.Oodnadatta.Airport.944760_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [135.45, -27.55] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_SA.Woomera.Aerodrome.946590_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [136.82, -31.15] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_TAS.Hobart-Ellerslie.Road.949700_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [147.33, -42.88] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_TAS.Launceston-Ti.Tree.Bend.949690_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [147.12, -41.42] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_TAS.Launceston.Airport.949680_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [147.2, -41.53] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_TAS.Low.Head.959640_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [146.78, -41.05] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_VIC.Ballarat.Aerodrome.948520_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [143.78, -37.52] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_VIC.Cape.Otway.Lighthouse.948420_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [143.52, -38.85] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_VIC.East.Sale.Airport.949070_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [147.13, -38.1] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_VIC.Melbourne.948660_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [144.83, -37.67] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_VIC.Melbourne.948680_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [144.97, -37.82] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_VIC.Mildura.Airport.946930_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [142.08, -34.23] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_VIC.Moorabbin.Airport.948700_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [145.1, -37.98] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_VIC.Tullamarine-Melbourne.Airport.948660_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [144.85, -37.67] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_VIC.Warrnambool.Airport.948370_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [142.45, -38.28] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_WA.Albany.Airport.948020_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [117.8, -34.93] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_WA.Broome.Airport.942030_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [122.23, -17.95] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_WA.Carnarvon.Airport.943000_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [113.67, -24.88] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_WA.Esperance.946380_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [121.88, -33.83] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_WA.Forrest.956460_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [128.12, -30.83] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_WA.Geraldton.Airport.944030_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [114.7, -28.8] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_WA.Giles.94461_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [128.3, -25.03] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_WA.Halls.Creek.Airport.942120_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [127.67, -18.23] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_WA.Kalamunda-Bickley.956100_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [116.13, -32.02] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_WA.Kalgoorlie-Boulder.Airport.946370_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [121.45, -30.78] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_WA.Katanning.946410_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [117.6, -33.68] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_WA.Learmonth.943020_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [114.08, -22.23] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_WA.Learmonth.Airport.943020_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [114.08, -22.23] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_WA.Mandurah.946050_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [115.72, -32.52] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_WA.Manjimup.946170_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [116.15, -34.25] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_WA.Meekatharra.Airport.944300_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [118.55, -26.62] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_WA.Newman.Airport.943170_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [119.8, -23.42] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_WA.Perth.946100_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [115.95, -31.93] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_WA.Perth.Airport.946100_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [115.97, -31.93] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_WA.Port.Hedland.943120_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [119.1, -20.23] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_WA.Port.Hedland.Airport.943120_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [118.63, -20.37] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_WA.Swanbourne.946140_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [115.77, -31.95] - } - }, { - "type": "Feature", - "properties": { - "title": "AUS_WA.Wyndham.942140_RMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [128.12, -15.48] - } - }, { - "type": "Feature", - "properties": { - "title": "BRN_Bandar.Seri.Begawan.963150_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [114.93, 4.93] - } - }, { - "type": "Feature", - "properties": { - "title": "FJI_Nadi.916800_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [177.45, -17.75] - } - }, { - "type": "Feature", - "properties": { - "title": "GUM_Andersen.AFB.912180_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [144.92, 13.57] - } - }, { - "type": "Feature", - "properties": { - "title": "GUM_Anderson.AFB.912180_TMY2", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [144.83, 13.55] - } - }, { - "type": "Feature", - "properties": { - "title": "GUM_Tamuning-Won.Pat.Intl.AP.912120_TMY3", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [144.8, 13.48] - } - }, { - "type": "Feature", - "properties": { - "title": "MHL_Kwajalein.Atoll.913660_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [167.73, 8.73] - } - }, { - "type": "Feature", - "properties": { - "title": "MYS_George.Town.486010_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [100.27, 5.3] - } - }, { - "type": "Feature", - "properties": { - "title": "MYS_Kota.Baharu.486150_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [102.28, 6.17] - } - }, { - "type": "Feature", - "properties": { - "title": "MYS_Kuala.Lumpur.486470_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [101.55, 3.12] - } - }, { - "type": "Feature", - "properties": { - "title": "MYS_Kuching.964130_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [110.33, 1.48] - } - }, { - "type": "Feature", - "properties": { - "title": "NZL_Auckland-Auckland.AK.931190_NIWA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [174.79, -37.01] - } - }, { - "type": "Feature", - "properties": { - "title": "NZL_Auckland.Auckland.931190_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [174.8, -37.02] - } - }, { - "type": "Feature", - "properties": { - "title": "NZL_Bay.of.Plenty-Tauranga.BP.931850_NIWA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [176.2, -37.67] - } - }, { - "type": "Feature", - "properties": { - "title": "NZL_Canterbury-Christchurch.CC.937800_NIWA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [172.54, -43.49] - } - }, { - "type": "Feature", - "properties": { - "title": "NZL_Canterbury.Christchurch.937800_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [172.55, -43.48] - } - }, { - "type": "Feature", - "properties": { - "title": "NZL_Central.Otago-Lauder.OC.938510_NIWA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [169.69, -45.04] - } - }, { - "type": "Feature", - "properties": { - "title": "NZL_East.Coast-Napier.EC.933730_NIWA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [176.86, -39.46] - } - }, { - "type": "Feature", - "properties": { - "title": "NZL_Manawatu-Paraparaumu.MW.934200_NIWA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [174.98, -40.91] - } - }, { - "type": "Feature", - "properties": { - "title": "NZL_Nelson.Marlborough-Nelson.NM.935460_NIWA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [173.22, -41.3] - } - }, { - "type": "Feature", - "properties": { - "title": "NZL_Northland-Kaitaia.NL.930120_NIWA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [173.26, -35.13] - } - }, { - "type": "Feature", - "properties": { - "title": "NZL_Otago-Dunedin.DN.938910_NIWA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [170.51, -45.9] - } - }, { - "type": "Feature", - "properties": { - "title": "NZL_Queenstown.Lakes-Queenstown.QL.938310_NIWA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [168.74, -45.02] - } - }, { - "type": "Feature", - "properties": { - "title": "NZL_Rotorua-Rotorua.RR.932470_NIWA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [176.32, -38.11] - } - }, { - "type": "Feature", - "properties": { - "title": "NZL_Southland-Invercargill.IN.938450_NIWA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [168.33, -46.42] - } - }, { - "type": "Feature", - "properties": { - "title": "NZL_Taranaki-New.Plymouth.NP.933090_NIWA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [174.18, -39.01] - } - }, { - "type": "Feature", - "properties": { - "title": "NZL_Taupo.King.Country-Turangi.TP.932450_NIWA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [175.81, -38.99] - } - }, { - "type": "Feature", - "properties": { - "title": "NZL_Waikato-Hamilton.HN.931730_NIWA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [175.31, -37.78] - } - }, { - "type": "Feature", - "properties": { - "title": "NZL_Wairarapa-Masterton.WI.934710_NIWA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [175.62, -41.02] - } - }, { - "type": "Feature", - "properties": { - "title": "NZL_Wellington-Wellington.WN.934360_NIWA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [174.87, -41.41] - } - }, { - "type": "Feature", - "properties": { - "title": "NZL_Wellington.Wellington.934360_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [174.78, -41.3] - } - }, { - "type": "Feature", - "properties": { - "title": "NZL_West.Coast-Hokitika.WC.936150_NIWA", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [170.98, -42.72] - } - }, { - "type": "Feature", - "properties": { - "title": "PHL_Manila.984290_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [121, 14.52] - } - }, { - "type": "Feature", - "properties": { - "title": "PLW_Koror.Island.914080_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [134.48, 7.33] - } - }, { - "type": "Feature", - "properties": { - "title": "SGP_Singapore.486980_IWEC", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [103.98, 1.37] - } - }, { - "type": "Feature", - "properties": { - "title": "UMI_Wake.Island.912450_TMY", - "epw": "EnergyPlus", - "ddy": "Download Design Day File", - "stat": "Download Statistics File", - "all": "Download All", - "dir": "Go To Folder" - }, - "geometry": { - "type": "Point", - "coordinates": [166.65, 19.28] - } - }] -} \ No newline at end of file + "features": [ + { + "type": "Feature", + "properties": { + "title": "DZA_Algiers.603900_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [3.25, 36.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "EGY_Al.Minya.623870_ETMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [30.73, 28.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "EGY_Alexandria.623180_ETMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [29.95, 31.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "EGY_Aswan.624140_ETMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [32.78, 23.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "EGY_Aswan.624140_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [32.78, 23.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "EGY_Asyut.623930_ETMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [31.02, 27.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "EGY_Cairo.623660_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [31.4, 30.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "EGY_Cairo.Intl.Airport.623660_ETMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [31.4, 30.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "EGY_El.Arish.623370_ETMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [33.82, 31.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "EGY_Helwan.623780_ETMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [31.33, 29.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "EGY_Hurghada.624630_ETMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [33.72, 27.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "EGY_Ismailia.624400_ETMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [32.25, 30.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "EGY_Kharga.624350_ETMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [30.53, 25.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "EGY_Luxor.624050_ETMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [32.7, 25.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "ETH_Addis.Ababa-Bole.634500_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [38.8, 8.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "ETH_Awassa.634600_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [38.05, 7.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "ETH_Bahar.Dar.633320_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [37.4, 11.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "ETH_Combolcha.633330_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [39.72, 11.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "ETH_Debre.Marcos.633340_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [37.72, 10.35] + } + }, + { + "type": "Feature", + "properties": { + "title": "ETH_Dire.Dawa.634710_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [41.87, 9.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "ETH_Gondar.633310_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [37.43, 12.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "ETH_Jimma.634020_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [36.83, 7.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "ETH_Metehara.634530_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [39.78, 8.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "GHA_Accra.654720_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-0.17, 5.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "KEN_Eldoret.636860_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [35.28, 0.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "KEN_Embu.637200_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [37.45, -0.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "KEN_Garissa.637230_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [39.63, -0.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "KEN_Kakamega.636870_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [34.78, 0.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "KEN_Kisii.637090_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [34.78, -0.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "KEN_Kisumu.637080_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [34.75, -0.1] + } + }, + { + "type": "Feature", + "properties": { + "title": "KEN_Kitale.636610_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [35, 1.02] + } + }, + { + "type": "Feature", + "properties": { + "title": "KEN_Lamu-Manda.Island.637720_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [40.83, -2.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "KEN_Lodwar.636120_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [35.62, 3.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "KEN_Makindu.637660_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [37.83, -2.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "KEN_Malindi.637990_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [40.1, -3.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "KEN_Mandera.636240_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [41.87, 3.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "KEN_Marsabit.636410_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [37.9, 2.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "KEN_Meru.636950_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [37.65, 0.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "KEN_Mombasa-Moi.638200_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [39.62, -4.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "KEN_Moyale.636190_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [39.05, 3.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "KEN_Nairobi-Dagoretti.637410_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [36.75, -1.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "KEN_Nairobi-Kenyatta.637400_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [36.92, -1.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "KEN_Nairobi-Wilson.637420_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [36.82, -1.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "KEN_Nairobi.637400_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [36.92, -1.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "KEN_Nakuru.637140_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [36.1, -0.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "KEN_Narok.637370_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [35.83, -1.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "KEN_Nyeri.637170_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [36.97, -0.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "KEN_Voi.637930_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [38.57, -3.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "LBY_Tripoli.620100_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [13.15, 32.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "MAR_Casablanca.Nouasser.601560_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-7.58, 33.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "MDG_Antananarivo.670830_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [47.48, -18.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "SEN_Dakar.616410_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-17.5, 14.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "TUN_Tunis.607150_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [10.23, 36.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "ZAF_Cape.Town.688160_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [18.6, -33.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "ZAF_Johannesburg.683680_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [28.23, -26.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "ZWE_Harare.677750_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [31.13, -17.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "ARE_Abu.Dhabi.412170_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [54.65, 24.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "BGD_Bogra.418830_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [89.37, 24.85] + } + }, + { + "type": "Feature", + "properties": { + "title": "BGD_Chittagong-Patenga.419780_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [91.82, 22.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "BGD_Coxs.Bazar.419920_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [91.97, 21.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "BGD_Dhaka.419230_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [90.38, 23.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "BGD_Ishurdi.419070_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [89.05, 24.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "BGD_Jessore.419360_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [89.17, 23.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "BGD_Rangpur.418590_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [89.23, 25.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "BGD_Sylhet.418910_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [91.88, 24.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Anhui.Anqing.584240_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [117.05, 30.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Anhui.Bengbu.582210_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [117.38, 32.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Anhui.Boxian.581020_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [115.77, 33.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Anhui.Dongcheng.583190_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [116.95, 31.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Anhui.Hefei.583210_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [117.23, 31.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Anhui.Hefei.583210_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [117.23, 31.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Anhui.Huoshan.583140_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [116.32, 31.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Anhui.Shouxian.582150_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [116.78, 32.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Anhui.Tunxi.585310_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [118.28, 29.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Beijing.Beijing.545110_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [116.47, 39.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Beijing.Beijing.545110_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [116.47, 39.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Beijing.Beijing.545110_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [116.28, 39.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Beijing.Miyun.544160_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [116.87, 40.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Chongqing.Chongqing.Shapingba.575160_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [106.47, 29.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Chongqing.Chongqing.Shapingba.575160_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [106.48, 29.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Chongqing.Youyang.576330_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [108.77, 28.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Fujian.Congwu.591330_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [118.92, 24.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Fujian.Fuzhou.588470_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [119.28, 26.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Fujian.Jianou.587370_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [118.32, 27.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Fujian.Nanping.588340_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [118.17, 26.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Fujian.Shanghang.589180_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [116.42, 25.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Fujian.Xiamen.591340_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [118.07, 24.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Fujian.Yongan.589210_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [117.35, 25.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Gansu.Dunhuang.524180_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [94.68, 40.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Gansu.Hezuo.560800_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [102.9, 35] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Gansu.Jiuquan.525330_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [98.48, 39.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Gansu.Lanzhou.528890_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [103.88, 36.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Gansu.Lanzhou.528890_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [103.88, 36.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Gansu.Lanzhou.528890_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [103.88, 36.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Gansu.Minqin.526810_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [103.08, 38.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Gansu.Minqin.526810_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [103.1, 38.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Gansu.Minxian.560930_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [104.02, 34.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Gansu.Pingliang.539150_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [106.67, 35.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Gansu.Tianshui.570060_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [105.75, 34.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Gansu.Wudu.560960_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [104.92, 33.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Gansu.Wudu.560960_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [104.92, 33.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Gansu.Wushaoling.527870_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [102.87, 37.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Gansu.Xifengzhen.539230_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [107.63, 35.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Gansu.Yumenzhen.524360_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [97.03, 40.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Gansu.Yumenzhen.524360_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [97.03, 40.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Gansu.Yuzhong.529830_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [104.15, 35.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Guangdong.Dianbai.596640_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [111, 21.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Guangdong.Guangzhou.592870_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [113.33, 23.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Guangdong.Guangzhou.592870_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [113.32, 23.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Guangdong.Heyuan.592930_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [114.68, 23.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Guangdong.Nanxiong.579960_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [114.32, 25.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Guangdong.Shantou.593160_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [116.68, 23.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Guangdong.Shanwei.595010_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [115.37, 22.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Guangdong.Shaoguan.590820_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [113.6, 24.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Guangdong.Shenzhen.594930_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [114.1, 22.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Guangdong.Yangjiang.596630_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [111.97, 21.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Guangdong.Zhengcheng.592940_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [113.83, 23.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Guangxi.Zhuang.Baise.592110_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [106.6, 23.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Guangxi.Zhuang.Duan.590370_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [108.1, 23.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Guangxi.Zhuang.Guilin.579570_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [110.3, 25.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Guangxi.Zhuang.Guiping.592540_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [110.08, 23.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Guangxi.Zhuang.Hechi.590230_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [108.05, 24.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Guangxi.Zhuang.Lingshan.594460_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [109.3, 22.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Guangxi.Zhuang.Longzhou.594170_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [106.85, 22.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Guangxi.Zhuang.Nanning.594310_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [108.22, 22.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Guangxi.Zhuang.Qinzhou.596320_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [108.62, 21.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Guangxi.Zhuang.Wuzhou.592650_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [111.3, 23.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Guizhou.Bijie.577070_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [105.28, 27.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Guizhou.Guiyang.578160_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [106.73, 26.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Guizhou.Guiyang.578160_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [106.72, 26.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Guizhou.Sansui.578320_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [108.67, 26.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Guizhou.Tongzi.576060_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [106.83, 28.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Guizhou.Weining.566910_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [104.28, 26.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Guizhou.Xingyi.579020_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [105.18, 25.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Guizhou.Zunyi.577130_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [106.88, 27.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Hainan.Dongfang.598380_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [108.62, 19.1] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Hainan.Haikou.597580_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [110.35, 20.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Hainan.Qionghai.598550_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [110.47, 19.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Hebei.Chengde.544230_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [117.95, 40.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Hebei.Fengning.543080_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [116.63, 41.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Hebei.Huailai.544050_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [115.5, 40.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Hebei.Leting.545390_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [118.88, 39.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Hebei.Raoyang.546060_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [115.73, 38.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Hebei.Shijiazhuang.536980_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [114.42, 38.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Hebei.Xingtai.537980_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [114.5, 37.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Hebei.Zhangbei.533990_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [114.7, 41.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Heilongjiang.Anda.508540_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [125.32, 46.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Heilongjiang.Fujin.507880_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [131.98, 47.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Heilongjiang.Fuyu.507420_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [124.48, 47.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Heilongjiang.Hailun.507560_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [126.97, 47.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Heilongjiang.Harbin.509530_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [126.77, 45.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Heilongjiang.Harbin.509530_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [126.68, 45.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Heilongjiang.Harbin.509530_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [126.77, 45.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Heilongjiang.Huma.503530_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [126.65, 51.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Heilongjiang.Jiamusi.508730_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [130.28, 46.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Heilongjiang.Jixi.509780_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [130.95, 45.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Heilongjiang.Keshan.506580_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [125.88, 48.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Heilongjiang.Mohe.501360_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [122.52, 52.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Heilongjiang.Mudanjiang.540940_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [129.6, 44.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Heilongjiang.Nenjiang.505570_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [125.23, 49.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Heilongjiang.Qiqihar.507450_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [123.92, 47.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Heilongjiang.Shangzhi.509680_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [127.97, 45.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Heilongjiang.Suifenhe.540960_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [131.17, 44.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Heilongjiang.Sunwu.505640_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [127.35, 49.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Heilongjiang.Tonghe.509630_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [128.73, 45.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Heilongjiang.Zhaozhou.509500_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [125.25, 45.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Henan.Anyang.538980_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [114.4, 36.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Henan.Lushi.570670_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [111.03, 34.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Henan.Nanyang.571780_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [112.58, 33.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Henan.Shangqiu.580050_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [115.67, 34.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Henan.Xinyang.572970_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [114.05, 32.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Henan.Zhengzhou.570830_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [113.65, 34.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Henan.Zhumadian.572900_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [114.02, 33] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Hong.Kong.SAR.450070_CityUHK", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [114.17, 22.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Hubei.Exi.574470_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [109.47, 30.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Hubei.Laohekou.572650_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [111.67, 32.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Hubei.Macheng.573990_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [115.02, 31.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Hubei.Wuhan.574940_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [114.13, 30.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Hubei.Wuhan.574940_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [114.13, 30.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Hubei.Yichang.574610_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [111.3, 30.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Hubei.Yunxi.572510_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [110.42, 33] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Hubei.Zhongxiang.573780_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [112.57, 31.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Hunan.Changde.576620_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [111.68, 29.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Hunan.Changning.578740_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [112.4, 26.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Hunan.Changsha.576870_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [112.92, 28.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Hunan.Changsha.576870_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [112.87, 28.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Hunan.Jishou.576490_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [109.73, 28.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Hunan.Lingling.578660_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [111.62, 26.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Hunan.Nanxian.575740_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [112.4, 29.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Hunan.Shimen.575620_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [111.37, 29.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Hunan.Wugang.578530_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [110.63, 26.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Hunan.Zhijiang.577450_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [109.68, 27.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Hunan.Zhuzhou.577800_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [113.17, 27.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Jiangsu.Dongtai.582510_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [120.32, 32.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Jiangsu.Ganyu.580400_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [119.12, 34.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Jiangsu.Huaiyang-Qingjiang.581440_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [119.02, 33.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Jiangsu.Lusi.582650_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [121.6, 32.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Jiangsu.Nanjing.582380_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [118.8, 32.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Jiangsu.Xuzhou.580270_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [117.15, 34.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Jiangxi.Ganzhou.579930_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [115, 25.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Jiangxi.Jian.577990_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [114.92, 27.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Jiangxi.Jingdezhen.585270_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [117.2, 29.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Jiangxi.Nanchang.586060_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [115.92, 28.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Jiangxi.Nancheng.587150_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [116.65, 27.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Jiangxi.Nancheng.587150_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [116.65, 27.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Jiangxi.Nanjing.582380_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [118.8, 32] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Jiangxi.Suichuan.578960_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [114.5, 26.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Jiangxi.Yichun.577930_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [114.38, 27.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Jiangxi.Yushan.586340_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [118.33, 28.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Jilin.Baicheng.509360_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [122.83, 45.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Jilin.Changchun.541610_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [125.22, 43.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Jilin.Donggang.542840_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [127.57, 42.1] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Jilin.Dunhua.541860_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [128.2, 43.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Jilin.Linjiang.543740_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [126.92, 41] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Jilin.Qian.Gorlos.509490_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [124.87, 45.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Jilin.Siping.541570_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [124.33, 43.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Jilin.Yanji.542920_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [129.47, 42.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Kinjiang.Uygar.Kashi.517090_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [75.98, 39.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Kinjiang.Uygur.Kuqa.516440_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [82.95, 41.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Kinjiang.Uygur.Yining.514310_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [81.33, 43.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Kinjiang.Uyhur.Hotan.518280_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [79.93, 37.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Liaoning.Benxi.543460_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [123.78, 41.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Liaoning.Chaoyang.543240_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [120.45, 41.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Liaoning.Dalian.546620_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [121.63, 38.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Liaoning.Dalian.546620_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [121.63, 38.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Liaoning.Dandong.544970_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [124.33, 40.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Liaoning.Jinzhou.543370_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [121.12, 41.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Liaoning.Kuandian.544930_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [124.78, 40.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Liaoning.Shenyang.543420_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [123.45, 41.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Liaoning.Shenyang.543420_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [123.48, 41.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Liaoning.Xingcheng.544550_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [120.7, 40.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Liaoning.Xinmin.543330_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [122.83, 41.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Liaoning.Yingkou.544710_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [122.27, 40.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Liaoning.Zhangwu.542360_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [122.53, 42.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Abag.Qi.Hot.531920_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [114.95, 44.02] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Arxan.507270_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [119.93, 47.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Bailingmiao.533520_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [110.43, 41.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Bailingmiao.533520_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [110.43, 41.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Bairin.Zuo.Qi.540270_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [119.4, 43.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Bayan.Mod.524950_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [104.8, 40.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Bugt.506320_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [121.92, 48.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Bugt.506320_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [121.92, 48.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Chifeng.542180_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [118.93, 42.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Dong.Ujimqin.Qi.509150_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [116.97, 45.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Dongsheng.535430_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [109.98, 39.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Duolun.542080_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [116.47, 42.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Ejin.Qi.522670_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [101.07, 41.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Ejin.Qi.522670_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [101.07, 41.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Erenhot.530680_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [111.97, 43.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Hailar.505270_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [119.75, 49.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Hailisu.532310_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [106.4, 41.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Haliut.533360_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [108.52, 41.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Hohhot.534630_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [111.68, 40.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Huade.533910_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [114, 41.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Huade.533910_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [114, 41.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Jartai.535020_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [105.75, 39.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Jartai.535020_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [105.75, 39.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Jarud.Qi.540260_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [120.9, 44.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Jurh.532760_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [112.9, 42.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Kailu.541340_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [121.28, 43.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Linxi.541150_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [118.07, 43.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Linxi.541150_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [118.07, 43.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Manzhouli.505140_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [117.43, 49.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Otog.Qi.535290_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [107.98, 39.1] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Solon.508340_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [121.22, 46.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Tongliao.541350_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [122.27, 43.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Tongliao.541350_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [122.27, 43.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Tulihe.504340_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [121.68, 50.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Xi.Ujimqin.Qi.540120_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [117.6, 44.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Nei.Mongol.Xilinhot.541020_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [116.12, 43.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Ningxia.Hui.Guyuan.538170_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [106.27, 36] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Ningxia.Hui.Yanchi.537230_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [107.38, 37.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Ningxia.Hui.Yinchuan.536140_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [106.22, 38.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Qinghai.Daqaidam.527130_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [95.37, 37.85] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Qinghai.Darlag.560460_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [99.65, 33.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Qinghai.Dulan.Us.528360_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [98.1, 36.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Qinghai.Gangca.527540_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [100.13, 37.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Qinghai.Golmud.528180_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [94.9, 36.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Qinghai.Haixi.Delingha.527370_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [97.37, 37.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Qinghai.Lenghu.526020_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [93.33, 38.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Qinghai.Madoi.560330_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [98.22, 34.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Qinghai.Madoi.560330_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [98.22, 34.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Qinghai.Mangnai.518860_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [90.85, 38.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Qinghai.Minhe.528760_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [102.85, 36.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Qinghai.Nangqen.561250_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [96.48, 32.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Qinghai.Qumarleb.560210_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [95.78, 34.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Qinghai.Tuotuohe.560040_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [92.43, 34.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Qinghai.Tuotuohe.560040_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [92.43, 34.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Qinghai.Xinghai.529430_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [99.98, 35.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Qinghai.Xining.528660_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [101.75, 36.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Qinghai.Yushu.560290_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [97.02, 33.02] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Shaanxi.Ankang.572450_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [109.03, 32.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Shaanxi.Ankangan.572450_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [109.03, 32.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Shaanxi.Baoji.570160_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [107.13, 34.35] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Shaanxi.Dingbian.537250_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [107.58, 37.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Shaanxi.Hanzhong.571270_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [107.03, 33.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Shaanxi.Luochuan.539420_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [109.5, 35.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Shaanxi.Suide.537540_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [110.22, 37.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Shaanxi.Xian.570360_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [108.93, 34.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Shaanxi.Yanan.538450_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [109.5, 36.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Shaanxi.Yulin.536460_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [109.7, 38.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Shaanxi.Yulin.536460_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [109.7, 38.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Shandong.Chaoyang.548080_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [115.67, 36.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Shandong.Chengshantou.547760_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [122.68, 37.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Shandong.Huimin.Xian.547250_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [117.53, 37.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Shandong.Jinan.548230_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [117.05, 36.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Shandong.Juxian.549360_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [118.83, 35.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Shandong.Longkou.547530_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [120.32, 37.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Shandong.Weifang.548430_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [119.18, 36.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Shandong.Yanzhou.549160_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [116.85, 35.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Shanghai.Shanghai.583620_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [121.45, 31.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Shanghai.Shanghai.583620_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [121.43, 31.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Shanghai.Shanghai.583670_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [121.43, 31.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Shanxi.Datong.534870_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [113.33, 40.1] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Shanxi.Houma.539630_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [111.37, 35.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Shanxi.Jiexiu.538630_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [111.92, 37.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Shanxi.Taiyuan.537720_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [112.55, 37.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Shanxi.Yuanping.536730_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [112.72, 38.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Shanxi.Yuncheng.539590_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [111.05, 35.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Shanxi.Yushe.537870_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [112.98, 37.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Sichuan.Barkam.561720_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [102.23, 31.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Sichuan.Batang.562470_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [99.1, 30] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Sichuan.Chengdu.562940_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [104.02, 30.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Sichuan.Chengdu.562940_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [104.02, 30.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Sichuan.Garze.561460_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [100, 31.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Sichuan.Garze.561460_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [100, 31.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Sichuan.Hongyuan.561730_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [102.55, 32.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Sichuan.Huili.566710_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [102.25, 26.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Sichuan.Huili.566710_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [102.25, 26.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Sichuan.Jiulong.564620_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [101.5, 29] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Sichuan.Leshan.563860_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [103.75, 29.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Sichuan.Litang.562570_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [100.27, 30] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Sichuan.Luzhou.576020_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [105.43, 28.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Sichuan.Mianyang.561960_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [104.73, 31.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Sichuan.Nanchong.574110_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [106.1, 30.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Sichuan.Songpan.561820_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [103.57, 32.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Sichuan.Wanyuan.572370_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [108.03, 32.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Sichuan.Xichang.565710_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [102.27, 27.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Sichuan.Yibin.564920_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [104.6, 28.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Tianjin.Tianjin.545270_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [117.07, 39.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Tibet.Lhasa.555910_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [91.13, 29.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Tibet.Lhasa.555910_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [91.13, 29.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Tibet.Nyingchi.563120_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [94.33, 29.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Tibet.Nyingchi.563120_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [94.47, 29.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Tibet.Pagri.557730_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [89.08, 27.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Tibet.Qamdo.561370_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [97.17, 31.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Xinjiang.Urgur.Urumqi.514630_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [87.53, 43.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Xinjiang.Uygur.Aksu.516280_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [80.23, 41.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Xinjiang.Uygur.Altay.510760_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [88.08, 47.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Xinjiang.Uygur.Altay.510760_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [88.08, 47.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Xinjiang.Uygur.Bachu.517160_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [78.57, 39.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Xinjiang.Uygur.Fuyun.510870_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [89.52, 46.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Xinjiang.Uygur.Hami.522030_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [93.52, 42.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Xinjiang.Uygur.Hoboksar.511560_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [85.72, 46.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Xinjiang.Uygur.Hotan.518280_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [79.93, 37.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Xinjiang.Uygur.Jinghe.513340_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [82.9, 44.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Xinjiang.Uygur.Karamay.512430_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [84.85, 45.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Xinjiang.Uygur.Kashi.517090_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [75.98, 39.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Xinjiang.Uygur.Kuqa.516440_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [83.07, 41.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Xinjiang.Uygur.Minfeng.518390_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [82.72, 37.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Xinjiang.Uygur.Ruoqiang.517770_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [88.17, 39.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Xinjiang.Uygur.Shache.518110_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [77.27, 38.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Xinjiang.Uygur.Tacheng.511330_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [83, 46.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Xinjiang.Uygur.Tikanlik.517650_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [87.7, 40.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Xinjiang.Uygur.Turpan.515730_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [89.2, 42.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Xinjiang.Uygur.Turpan.515730_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [89.2, 42.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Xinjiang.Uygur.Urumqi.514630_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [87.65, 43.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Xinjiang.Uygur.Wusu.513460_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [84.67, 44.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Xinjiang.Uygur.Yanqi.515670_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [86.5, 42.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Xinjiang.Uygur.Yining.514310_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [81.33, 43.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Yunnan.Chuxiong.567680_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [101.55, 25.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Yunnan.Deqen.564440_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [98.92, 28.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Yunnan.Kunming.567780_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [102.68, 25.02] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Yunnan.Kunming.567780_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [102.68, 25.02] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Yunnan.Kunming.567780_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [102.68, 25.02] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Yunnan.Lancang.569540_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [99.93, 22.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Yunnan.Lijiang.566510_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [100.22, 26.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Yunnan.Lincang.569510_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [100.08, 23.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Yunnan.Mengla.569690_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [101.57, 21.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Yunnan.Mengzi.569850_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [103.38, 23.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Yunnan.Simao.569640_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [100.97, 22.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Yunnan.Tengchong.567390_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [98.5, 25.02] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Yunnan.Yuanjiang.569660_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [101.98, 23.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Zhejiang.Dinghai.584770_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [122.1, 30.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Zhejiang.Hangzhou.584570_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [120.17, 30.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Zhejiang.Hangzhou.584570_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [120.17, 30.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Zhejiang.Hongjia.586650_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [121.42, 28.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Zhejiang.Quxian.586330_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [118.9, 29] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHN_Zhejiang.Wenzhou.586590_CSWD", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [120.65, 28.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Ahmedabad.426470_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [72.63, 23.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Ahmedabad.426470_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [72.63, 23.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Akola.429340_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [77.03, 20.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Allahabad.424750_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [81.73, 25.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Amritsar.420710_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [74.52, 31.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Aurangabad.430140_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [75.33, 19.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Bangalore.432950_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [77.58, 12.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Barmer.424350_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [71.38, 25.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Belgaum.431980_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [74.32, 15.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Bhagalpur.424980_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [86.95, 25.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Bhopal.426670_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [77.35, 23.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Bhubneshwar.429710_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [85.83, 20.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Bikaner.421650_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [73.3, 28] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Calcutta.428090_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [88.45, 22.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Chennai-Madras.432790_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [80.18, 13] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Chennai.432790_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [80.18, 13] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Chirtadurg.432330_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [76.27, 14.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Dehradun.421110_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [78.03, 30.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Dibrugarh.423140_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [95.02, 27.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Goa.Panjim.431920_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [73.82, 15.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Gorakhpur.423790_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [83.37, 26.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Guwahati.424100_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [91.58, 26.1] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Gwalior.423610_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [78.25, 26.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Hissar.421310_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [75.73, 29.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Hyderabad.431280_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [78.47, 17.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Imphal.426230_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [93.9, 24.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Indore.427540_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [75.8, 22.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Jabalpur.426750_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [79.95, 23.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Jagdelpur.430410_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [82.03, 19.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Jaipur.423480_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [75.8, 26.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Jaisalmer.423280_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [70.92, 26.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Jamnagar.427340_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [70.02, 22.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Jodhpur.423390_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [73.02, 26.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Jorhat.424230_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [94.17, 26.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Kolkata.428090_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [88.45, 22.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Kota.424520_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [75.85, 25.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Kurnool.432130_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [78.03, 15.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Lucknow.423690_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [80.93, 26.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Mangalore.432840_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [74.52, 12.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Mumbai.430030_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [72.82, 18.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Mumbai.430030_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [72.85, 19.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Nagpur.428670_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [79.05, 21.1] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Nagpur.428670_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [79.05, 21.1] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Nellore.432450_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [79.98, 14.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_New.Delhi.421820_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [77.2, 28.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_New.Delhi.421820_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [77.2, 28.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Panjim.431920_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [73.82, 15.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Patna.424920_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [85.17, 25.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Pune.430630_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [73.85, 18.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Raipur.428750_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [81.65, 21.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Rajkot.427370_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [70.78, 22.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Ramagundam.430860_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [79.43, 18.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Ranchi.427010_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [85.33, 23.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Ratnagiri.431100_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [73.33, 16.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Raxaul.423820_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [84.52, 26.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Saharanpur.5217_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [77.88, 29.85] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Shillong.425160_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [91.88, 25.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Sholapur.431170_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [75.9, 17.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Sundernagar.8204_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [76.53, 31.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Surat.428400_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [72.83, 21.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Tezpur.424150_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [92.78, 26.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Tiruchirapalli.433440_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [78.72, 10.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Trivandram.433710_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [76.95, 8.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Trivandrum.433710_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [76.95, 8.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Veraval.429090_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [70.37, 20.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "IND_Vishakhapatnam.431500_ISHRAE", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [83.23, 17.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "IRN_Bandar.Abass.408750_ITMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [56.22, 27.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "IRN_Esfahan.408000_ITMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [51.4, 32.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "IRN_Shiraz.408480_ITMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [52.36, 29.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "IRN_Tabriz.407060_ITMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [46.17, 38.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "IRN_Tehran-Mehrabad.407540_ITMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [51.19, 35.41] + } + }, + { + "type": "Feature", + "properties": { + "title": "IRN_Yazd.408210_ITMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [54.28, 31.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "JPN_Kagoshima.478270_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [130.55, 31.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "JPN_Matsumoto.476180_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [137.97, 36.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "JPN_Miho.Civ.JASDF.477430_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [133.25, 35.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "JPN_Nagoya.476350_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [136.93, 35.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "JPN_Osaka.477710_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [135.45, 34.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "JPN_Sapporo.474120_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [141.33, 43.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "JPN_Shimonoseki.477620_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [130.93, 33.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "JPN_Tokyo.Hyakuri.477150_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [140.42, 36.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "JPN_Tosashimizu.478980_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [133.02, 32.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "KAZ_Semipalatinsk.361770_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [80.25, 50.35] + } + }, + { + "type": "Feature", + "properties": { + "title": "KOR_Inchon.471120_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [126.55, 37.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "KOR_Kangnung.471050_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [128.9, 37.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "KOR_Kwangju.471560_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [126.92, 35.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "KOR_Ulsan.471520_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [129.32, 35.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "KWT_KISR.Coastal.Station.405850_KISR", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [47.98, 29.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "KWT_Kuwait.Intl.AP.405820_KISR", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [47.98, 29.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "LKA_Anuradhapura.434210_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [80.42, 8.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "LKA_Batticaloa.434360_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [81.7, 7.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "LKA_Colombo-Katunayake.434500_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [79.88, 7.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "LKA_Colombo-Ratmalana.434670_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [79.88, 6.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "LKA_Hambantota.434970_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [81.13, 6.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "LKA_Kankasanturai.434000_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [80.07, 9.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "LKA_Nuwara.Eliya.434730_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [80.77, 6.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "LKA_Puttalam.434240_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [79.83, 8.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "LKA_Trincomalee.434180_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [81.25, 8.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "MAC_Macau.450110_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [113.53, 22.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "MDV_Gan.Island.435990_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [73.15, -0.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "MDV_Male-Hulule.Island.435550_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [73.53, 4.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "MNG_Ulaanbataar.442920_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [106.98, 47.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "MNG_Ulaangom.442120_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [92.08, 49.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "NPL_Kathmandu.444540_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [85.37, 27.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "NPL_Surkhet.444160_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [81.62, 28.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "PAK_Karachi.417800_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [67.13, 24.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "PRK_Chongjin.470080_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [129.82, 41.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "PRK_Haeju.470690_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [125.7, 38.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "PRK_Pyongyang.470580_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [125.78, 39.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "RUS_Chita.307580_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [113.33, 52.02] + } + }, + { + "type": "Feature", + "properties": { + "title": "RUS_Ekaterinburg.284400_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [60.63, 56.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "RUS_Irkutsk.307100_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [104.35, 52.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "RUS_Omsk.286980_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [73.4, 54.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "RUS_Yakutsk.249590_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [129.75, 62.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "SAU_Riyadh.404380_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [46.8, 24.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "THA_Bangkok.484560_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [100.6, 13.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "TWN_Taipei.466960_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [121.55, 25.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "UZB_Tashkent.384570_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [69.27, 41.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "VNM_Hanoi.488200_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [105.8, 21.02] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUT_Graz.112400_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [15.43, 47] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUT_Innsbruck.111200_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [11.35, 47.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUT_Linz.110100_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [14.2, 48.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUT_Salzburg.111500_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [13, 47.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUT_Vienna.Schwechat.110360_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [16.57, 48.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "BEL_Brussels.064510_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [4.53, 50.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "BEL_Oostende.064070_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [2.87, 51.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "BEL_Saint.Hubert.064760_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [5.4, 50.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "BGR_Plovdiv.156250_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [24.75, 42.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "BGR_Sofia.156140_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [23.38, 42.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "BGR_Varna.155520_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [27.92, 43.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "BIH_Banja.Luka.132420_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [17.22, 44.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "BLR_Minsk.268500_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [27.53, 53.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHE_Geneva.067000_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [6.13, 46.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "CYP_Larnaca.176090_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [33.63, 34.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "CZE_Ostrava.117820_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [18.18, 49.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "CZE_Prague.115180_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [14.28, 50.1] + } + }, + { + "type": "Feature", + "properties": { + "title": "DEU_Berlin.103840_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [13.4, 52.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "DEU_Bremen.102240_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [8.8, 53.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "DEU_Dusseldorf.104000_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [6.78, 51.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "DEU_Frankfurt.am.Main.106370_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [8.6, 50.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "DEU_Hamburg.101470_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [10, 53.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "DEU_Koln.105130_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [7.17, 50.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "DEU_Mannheim.107290_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [8.55, 49.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "DEU_Munich.108660_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [11.7, 48.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "DEU_Stuttgart.107380_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [9.22, 48.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "DNK_Copenhagen.061800_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [12.67, 55.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Albacete.082800_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-1.85, 38.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Alicante.083600_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-0.5, 38.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Almeria.084870_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-2.38, 36.85] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Avila.082100_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.7, 40.66] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Badajoz.083300_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-6.81, 38.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Barcelona.081810_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [2.07, 41.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Barcelona.081810_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [2.07, 41.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Bilbao.08250_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-2.93, 43.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Burgos.080750_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-3.62, 42.36] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Caceres.082610_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-6.33, 39.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Castellon.082860_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-0.07, 39.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Ceuta.603200_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-5.29, 35.89] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Cordoba.084100_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.85, 37.84] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Cuenca.082310_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-2.14, 40.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Gerona.081840_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [2.77, 41.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Granada.084190_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-3.78, 37.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Guadalajara.082260_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-3.16, 40.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Huelva.083830_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-6.95, 37.26] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Huesca.080940_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-0.33, 42.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Jaen.084170_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-3.79, 37.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_La.Coruna.080010_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-8.42, 43.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Las.Palmas.600300_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-15.38, 27.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Leon.080550_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-5.65, 42.59] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Lerida.081710_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [0.6, 41.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Logrono.080840_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-2.33, 42.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Lugo.080080_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-7.48, 43.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Madrid.082210_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-3.55, 40.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Madrid.082210_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-3.68, 40.41] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Malaga.084820_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.49, 36.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Melilla.603380_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-2.95, 35.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Murcia.084300_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-0.8, 37.79] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Orense.080480_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-7.86, 42.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Oviedo.080150_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-5.87, 43.34] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Palencia.080720_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.54, 42.01] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Palma.083060_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [2.73, 39.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Palma.083060_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [2.73, 39.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Pamplona.080850_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-1.64, 42.76] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Pontevedra.080440_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-8.65, 42.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Salamanca.082020_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-5.5, 40.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_San.Sebastian.080270_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-2.05, 43.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Santander.080230_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-3.82, 43.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Santander.080230_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-3.82, 43.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Segovia.082130_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.13, 40.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Sevilla.083910_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-5.9, 37.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Sevilla.083910_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-5.9, 37.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Soria.081480_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-2.48, 41.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Tarragona.081760_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [0.49, 40.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Tenerife.600200_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-16.25, 28.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Teruel.082350_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-1.1, 40.34] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Toledo.082720_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.05, 39.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Valencia.082840_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-0.47, 39.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Valencia.082840_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-0.47, 39.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Valladolid.081410_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.77, 41.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Vitoria.080800_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-2.64, 42.85] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Zamora.081300_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-5.91, 41.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "ESP_Zaragoza.081600_SWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-1.02, 41.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "FIN_Helsinki.029740_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [24.97, 60.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "FIN_Tampere.029440_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [23.58, 61.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "FRA_Bordeaux.075100_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-0.7, 44.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "FRA_Brest.071100_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.42, 48.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "FRA_Clermont-Ferrand.074600_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [3.17, 45.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "FRA_Dijon.072800_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [5.08, 47.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "FRA_Lyon.074810_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [5.08, 45.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "FRA_Marseille.076500_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [5.23, 43.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "FRA_Montpellier.076430_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [3.97, 43.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "FRA_Nancy.071800_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [6.22, 48.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "FRA_Nantes.072220_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-1.6, 47.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "FRA_Nice.076900_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [7.2, 43.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "FRA_Paris.Orly.071490_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [2.4, 48.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "FRA_Strasbourg.071900_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [7.63, 48.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "GBR_Aberdeen.Dyce.030910_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-2.22, 57.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "GBR_Aughton.033220_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-2.92, 53.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "GBR_Belfast.039170_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-6.22, 54.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "GBR_Birmingham.035340_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-1.73, 52.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "GBR_Finningley.033600_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-1, 53.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "GBR_Hemsby.034960_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [1.68, 52.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "GBR_Jersey.Channel.Islands.038950_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-2.2, 49.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "GBR_Leuchars.031710_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-2.87, 56.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "GBR_London.Gatwick.037760_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-0.18, 51.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "GBR_Oban.031140_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-5.47, 56.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "GRC_Andravida.166820_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [21.28, 37.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "GRC_Athens.167160_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [23.73, 37.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "GRC_Thessaloniki.166220_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [22.97, 40.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "HUN_Debrecen.128820_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [21.63, 47.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "HUN_Szombathely.128120_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [16.63, 47.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "IRL_Belmullet.039760_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-10, 54.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "IRL_Birr.039650_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-7.88, 53.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "IRL_Clones.039740_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-7.23, 54.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "IRL_Dublin.039690_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-6.25, 53.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "IRL_Kilkenny.039600_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-7.27, 52.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "IRL_Malin.039800_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-7.33, 55.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "IRL_Valentia.Observatory.039530_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-10.25, 51.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "ISL_Reykjavik.040300_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-21.9, 64.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "ISR_Beer.Sheva.401900_MSI", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [34.8, 31.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "ISR_Eilat.401990_MSI", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [34.95, 29.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "ISR_Jerusalem-Atarot.AP.401840_MSI", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [35.22, 31.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "ISR_Jerusalem.401840_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [35.22, 31.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "ISR_Tel.Aviv-Bet.Dagan.401790_MSI", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [34.82, 32] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Alghero.165200_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [8.28, 40.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Ancona-Falconara.161910_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [13.37, 43.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Ancona.161910_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [13.52, 43.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Aviano.160370_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [12.6, 46.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Bari-Palese.Macchie.162700_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [16.78, 41.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Bergamo-Orio.al.Serio.160760_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [9.7, 45.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Bologna-Borgo.Panigale.161400_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [11.3, 44.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Bolzano.160200_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [11.33, 46.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Bonifati.163370_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [15.88, 39.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Brescia-Ghedi.160880_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [10.28, 45.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Brindisi.163200_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [17.95, 40.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Brindisi.163200_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [17.95, 40.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Cagliari-Elmas.165600_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [9.05, 39.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Campobasso.162520_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [14.65, 41.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Capo.Bellavista.165500_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [9.72, 39.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Capo.Palinuro.163100_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [15.28, 40.02] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Catania-Fontanarossa.164600_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [15.05, 37.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Catania-Sigonella.164590_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [14.92, 37.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Cozzo.Spadaro.164800_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [15.13, 36.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Crotone.163500_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [17.07, 39.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Enna.164500_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [14.28, 37.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Firenze-Peretola.161700_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [11.2, 43.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Foggia.162610_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [15.53, 41.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Gela.164530_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [14.22, 37.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Genova-Sestri.161200_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [8.85, 44.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Genova.161200_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [8.85, 44.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Gioia.del.Colle.163120_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [16.93, 40.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Grosseto.162060_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [11.07, 42.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Lecce.163320_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [18.15, 40.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Marina.di.Ravenna._IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [12.28, 44.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Messina.164200_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [15.55, 38.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Messina.164200_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [15.55, 38.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Milan.160660_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [8.73, 45.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Milano-Linate.160800_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [9.28, 45.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Milano-Malpensa.160660_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [8.73, 45.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Monte.Cimone.161340_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [10.7, 44.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Monte.Terminillo.162190_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [12.98, 42.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Naples.162890_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [14.3, 40.85] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Napoli-Capodichino.162890_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [14.3, 40.85] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Novara-Cameri.160640_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [8.67, 45.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Olbia-Costa.Smeralda.165310_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [8.5, 40.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Paganella.160220_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [11.03, 46.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Palermo-Boccadifalco.164000_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [13.3, 38.1] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Palermo-Punta.Raisi.164050_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [13.1, 38.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Palermo.164050_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [13.1, 38.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Parma.161300_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [10.19, 44.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Patelleria.164700_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [11.97, 36.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Perugia.161810_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [12.5, 43.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Pescara.162300_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [14.2, 42.85] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Piacenza.160840_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [9.73, 44.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Pianosa_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [10.1, 42.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Pisa-S.Gusto.161580_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [10.38, 43.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Pisa.161580_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [10.38, 43.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Ponza.162800_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [12.95, 40.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Potenza.163000_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [15.8, 40.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Pratica.di.Mare.162450_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [12.6, 41.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Rimini.161490_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [12.62, 44.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Roma-Ciampino.162390_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [12.58, 41.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Roma-Fiumicino.162420_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [12.23, 41.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Rome.162420_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [12.23, 41.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_S.Maria.di.Leuca.163600_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [18.35, 39.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_San.Remo.161530_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [8.17, 43.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Taranto.163250_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [16.88, 40.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Tarvisio.160400_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [13.58, 46.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Torino-Caselle.160590_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [7.65, 45.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Torino.160590_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [7.65, 45.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Trapani-Birgi.164290_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [12.5, 37.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Treviso-Istrana.160980_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [12.1, 45.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Treviso-S.Angelo.160990_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [12.18, 45.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Trieste.161100_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [13.75, 45.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Udine-Campoformido.160440_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [13.18, 46.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Ustica.164000_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [13.18, 38.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Venezia-Tessera.161050_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [12.33, 45.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Venice.161050_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [12.33, 45.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Verona-Villafranca.160900_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [10.87, 45.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "ITA_Vicenza.160940_IGDG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [11.52, 45.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "LTU_Kaunas.266290_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [23.88, 54.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "NLD_Amsterdam.062400_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [4.77, 52.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "NLD_Beek.063800_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [5.78, 50.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "NLD_Groningen.062800_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [6.58, 53.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "NOR_Bergen.013110_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [5.22, 60.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "NOR_Oslo.Fornebu.014880_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [10.62, 59.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Bialystok.122950_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [23.25, 53] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Bielsko.Biala.126000_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [19.25, 49.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Bydgoszcz.122400_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [18, 53.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Chojnice.122350_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [17.57, 53.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Czestochowa.125500_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [19, 50.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Elblag.121600_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [19.43, 54.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Gdansk.Port.Polnocny.121400_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [18.63, 54.35] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Gorzow.Wlkp.123000_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [15.23, 52.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Hel.121350_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [18.78, 54.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Jelenia.Gora.125000_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [15.73, 50.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Kalisz.124350_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [18.08, 51.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Kasprowy.Wierch.126500_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [19.97, 49.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Katowice.125600_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [19.03, 50.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Ketrzyn.121850_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [21.38, 54.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Kielce.125700_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [20.67, 50.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Klodzko.125200_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [16.65, 50.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Kolo.123450_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [18.62, 52.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Kolobrzeg.121000_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [15.58, 54.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Kolobrzeg.121000_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [15.58, 54.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Koszalin.121050_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [16.18, 54.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Krakow.125660_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [19.92, 50.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Krakow.125660_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [19.8, 50.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Krosno.126700_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [21.78, 49.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Leba.121200_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [17.55, 54.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Lebork.121250_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [17.75, 54.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Legnica.124150_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [16.2, 51.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Lesko.126900_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [22.32, 49.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Leszno.124180_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [16.53, 51.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Lodz.124650_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [19.47, 51.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Lublin.Radawiec.124950_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [22.5, 51.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Mikolajki.122800_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [21.58, 53.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Mlawa.122700_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [20.38, 53.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Nowy.Sacz.126600_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [20.5, 49.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Olsztyn.122720_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [20.48, 53.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Opole.125300_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [17.95, 50.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Ostroleka.122850_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [19.13, 51.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Pila.122300_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [16.75, 53.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Plock.123600_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [19.7, 52.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Poznan.123300_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [16.97, 52.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Poznan.123300_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [16.83, 52.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Przemysl.126950_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [22.78, 49.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Raciborz.125400_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [18.2, 50.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Resko.122100_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [15.12, 53.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Rzeszow.Jasionka.125800_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [22.02, 50.1] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Sandomierz.125850_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [21.75, 50.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Siedlce.123850_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [22.3, 52.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Slubice.123100_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [14.58, 52.35] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Sniezka.125100_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [15.73, 50.74] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Sulejow.124690_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [19.88, 51.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Suwalki.121950_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [22.93, 54.1] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Swinoujscie.122000_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [14.25, 53.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Szczecin.122050_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [14.67, 53.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Szczecinek.122150_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [16.7, 53.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Tarnow.125750_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [20.98, 50.02] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Terespol.123990_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [23.57, 52.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Torun.122500_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [23.08, 51.1] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Ustka.121150_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [16.85, 54.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Warsaw.123750_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [20.97, 52.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Warszawa.Okecie.123750_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [21, 52.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Wielun.124550_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [18.55, 51.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Wlodawa.124970_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [23.55, 51.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Wroclaw.124240_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [17.03, 51.1] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Zakopane.126250_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [19.97, 49.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Zamosc.125950_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [23.25, 50.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "POL_Zielona.Gora.124000_IMGW", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [15.5, 51.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "PRT_Braganca.085750_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-6.73, 41.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "PRT_Coimbra.085490_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-8.42, 40.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "PRT_Evora.085570_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-7.9, 38.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "PRT_Faro.085540_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-7.97, 37.02] + } + }, + { + "type": "Feature", + "properties": { + "title": "PRT_Funchal.Madeira-Islands.085210_INETI", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-16.92, 32.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "PRT_Lajes.085090_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-27.1, 38.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "PRT_Lisboa.085360_INETI", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-9.15, 38.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "PRT_Porto.085450_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-8.68, 41.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "ROU_Bucharest.154200_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [26.13, 44.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "ROU_Cluj-Napoca.151200_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [23.57, 46.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "ROU_Constanta.154800_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [28.63, 44.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "ROU_Craiova.154500_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [23.87, 44.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "ROU_Galati.153100_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [28.02, 45.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "ROU_Timisoara.152470_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [21.25, 45.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "RUS_Arkhangelsk.225500_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [40.47, 64.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "RUS_Moscow.276120_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [37.63, 55.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "RUS_Saint-Petersburg.260630_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [30.3, 59.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "RUS_Samara.289000_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [50.45, 53.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "SRB_Belgrade.132720_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [20.28, 44.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "SRB_Podgorica.134620_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [19.25, 42.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "SVK_Bratislava.118160_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [17.2, 48.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "SVK_Kosice.119680_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [21.27, 48.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "SVN_Ljubljana.130140_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [14.48, 46.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "SWE_Goteborg.Landvetter.025260_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [12.3, 57.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "SWE_Karlstad.024180_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [13.47, 59.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "SWE_Kiruna.020440_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [20.33, 67.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "SWE_Ostersund.Froson.022260_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [14.5, 63.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "SWE_Stockholm.Arlanda.024600_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [17.95, 59.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "SYR_Damascus.400800_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [36.52, 33.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "TUR_Ankara.171280_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [32.98, 40.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "TUR_Istanbul.170600_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [28.82, 40.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "TUR_Izmir.172180_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [27.02, 38.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "UKR_Kiev.333450_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [30.45, 50.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "UKR_Odessa.338370_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [30.7, 46.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "BLZ_Belize.785830_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.3, 17.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_AB_Calgary.718770_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-114.02, 51.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_AB_Edmonton.711230_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-114.1, 53.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_AB_Fort.McMurray.719320_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-111.22, 56.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_AB_Grande.Prairie.719400_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-118.88, 55.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_AB_Lethbridge.712430_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-112.8, 49.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_AB_Medicine.Hat.718720_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-110.72, 50.02] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_BC_Abbotsford.711080_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.37, 49.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_BC_Comox.718930_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-124.9, 49.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_BC_Cranbrook.718800_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-115.78, 49.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_BC_Fort.St.John.719430_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-120.73, 56.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_BC_Kamloops.718870_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-120.45, 50.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_BC_Port.Hardy.711090_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-127.37, 50.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_BC_Prince.George.718960_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.68, 53.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_BC_Prince.Rupert.718980_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-130.43, 54.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_BC_Sandspit.711010_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-131.82, 53.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_BC_Smithers.719500_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-127.18, 54.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_BC_Summerland.717680_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-119.65, 49.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_BC_Vancouver.718920_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-123.17, 49.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_BC_Victoria.717990_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-123.43, 48.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_MB_Brandon.711400_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-99.95, 49.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_MB_Churchill.719130_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.07, 58.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_MB_The.Pas.718670_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-101.1, 53.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_MB_Winnipeg.718520_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.23, 49.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_NB_Fredericton.717000_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-66.53, 45.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_NB_Miramichi.717440_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-65.45, 47.02] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_NB_Saint.John.716090_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-65.88, 45.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_NF_Battle.Harbour.718170_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-55.83, 52.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_NF_Gander.718030_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-54.57, 48.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_NF_Goose.718160_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-60.37, 53.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_NF_St.Johns.718010_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-52.73, 47.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_NF_Stephenville.718150_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.55, 48.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_NS_Greenwood.713970_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.92, 44.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_NS_Sable.Island.716000_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-60.02, 43.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_NS_Shearwater.716010_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-63.5, 44.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_NS_Sydney.717070_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-60.05, 46.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_NS_Truro.713980_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-63.27, 45.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_NT_Inuvik.719570_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-133.48, 68.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_NT_Yellowknife.719360_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-114.45, 62.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_NU_Resolute.719240_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.98, 74.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_ON_Kingston.716200_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.6, 44.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_ON_London.716230_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.15, 43.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_ON_Mount.Forest.716310_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.75, 43.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_ON_Muskoka.716300_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.3, 44.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_ON_North.Bay.717310_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.43, 46.35] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_ON_Ottawa.716280_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.67, 45.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_ON_Sault.Ste.Marie.712600_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.52, 46.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_ON_Simcoe.715270_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.27, 42.85] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_ON_Thunder.Bay.717490_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.32, 48.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_ON_Timmins.717390_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.37, 48.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_ON_Toronto.716240_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.63, 43.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_ON_Trenton.716210_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.53, 44.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_ON_Windsor.715380_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.97, 42.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_PE_Charlottetown.717060_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-63.13, 46.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_PQ_Bagotville.717270_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-71, 48.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_PQ_Baie.Comeau.711870_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-68.2, 49.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_PQ_Grindstone.Island_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.87, 47.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_PQ_Kuujjuarapik.719050_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.77, 55.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_PQ_Kuujuaq.719060_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-68.42, 58.1] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_PQ_La.Grande.Riviere.718270_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.7, 53.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_PQ_Lake.Eon.714210_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-63.28, 51.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_PQ_Mont.Joli.717180_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-68.22, 48.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_PQ_Montreal.Intl.AP.716270_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-73.75, 45.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_PQ_Montreal.Jean.Brebeuf.716278_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-73.62, 45.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_PQ_Montreal.Mirabel.716278_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.03, 45.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_PQ_Nitchequon.CAN270_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.9, 53.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_PQ_Quebec.717140_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.38, 46.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_PQ_Riviere.du.Loup.717150_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-69.55, 47.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_PQ_Roberval.717280_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.27, 48.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_PQ_Schefferville.718280_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-66.82, 54.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_PQ_Sept-Iles.718110_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-66.27, 50.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_PQ_Sherbrooke.716100_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.68, 45.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_PQ_St.Hubert.713710_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-73.42, 45.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_PQ_Ste.Agathe.des.Monts.717200_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.28, 46.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_PQ_Val.d.Or.717250_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.78, 48.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_SK_Estevan.718620_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-102.97, 49.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_SK_North.Battleford.718760_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-108.25, 52.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_SK_Regina.718630_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-104.67, 50.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_SK_Saskatoon.718660_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-106.68, 52.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_SK_Swift.Current.718700_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-107.68, 50.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "CAN_YT_Whitehorse.719640_CWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-135.07, 60.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "CUB_Bahia.Honda.783180_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.15, 22.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "CUB_Camaguey.783550_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.85, 21.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "CUB_Casa.Blanca.783250_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.35, 23.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "CUB_Cienfuegos.783440_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.45, 22.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "CUB_Guantanamo.Bay.NAS.783670_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.22, 19.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "CUB_Guantanamo.Bay.NAS.783670_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.15, 19.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "CUB_Havana-Jose.Marti.782240_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.4, 22.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "CUB_Havana.782240_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.4, 22.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "CUB_La.Bajada.783110_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.47, 21.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "CUB_La.Fe.783210_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.77, 21.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "CUB_Paso.Real.de.San.Diego.783170_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.3, 22.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "CUB_Pinar.del.Rio.783150_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.68, 22.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "CUB_Playa.Giron.783330_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.03, 22.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "CUB_Puerto.Padre.783580_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.6, 21.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "CUB_Punta.de.Maisi.783690_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.15, 20.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "CUB_Sancti.Spiritus.783490_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.45, 21.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "CUB_Santiago.de.Cuba.782640_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.85, 19.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "CUB_Saua.la.Grande.783380_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.08, 22.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "CUB_Union.de.Reyes.783270_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.53, 22.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "CUB_Varadero.782290_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.28, 23.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "GTM_Flores.786150_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.88, 16.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "GTM_Guatemala-La.Aurora.786410_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.52, 14.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "GTM_Huehuetenango.786270_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.47, 15.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "GTM_Puerto.Barrios.786370_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.6, 15.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "GTM_San.Jose.786470_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.82, 13.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "HND_Amapala.787000_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.67, 13.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "HND_Catacamas.787140_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-85.93, 14.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "HND_Choluteca.787240_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.18, 13.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "HND_La.Ceiba-Goloson.787050_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.87, 15.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "HND_La.Mesa-San.Pedro.Sula.787080_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.93, 15.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "HND_Puerto.Lempira.787110_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.8, 15.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "HND_Santa.Rosa.de.Copan.787170_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.78, 14.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "HND_Tela.787060_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.48, 15.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "MEX_Acapulco.768056_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-99.75, 16.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "MEX_Mexico.City.766790_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-99.08, 19.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "MEX_Veracruz.766910_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.13, 19.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "MTQ_Fort-de-France.789250_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-61, 14.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "NIC_Chinandega.787390_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.13, 12.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "NIC_Managua-Augusto.CES.787410_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.17, 12.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "NIC_Rivas.787330_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-85.83, 11.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "PRI_Aguadilla-Borinquen.AP.785140_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-67.13, 18.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "PRI_Mayaguez-Eugenio.Maria.de.Hostos.AP.785145_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-67.15, 18.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "PRI_Mercedita.AP.785203_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-66.55, 18] + } + }, + { + "type": "Feature", + "properties": { + "title": "PRI_Roosevelt.Roads.NAS.785350_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-65.63, 18.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "PRI_San.Juan-Luis.Munoz.Marin.Intl.AP.785263_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-66, 18.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "PRI_San.Juan.785260_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-66, 18.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "PRI_San.Juan.Intl.AP.785260_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-66, 18.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "SLV_Acajutla.786500_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.83, 13.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "SLV_San.Salvador-Ilopango.786630_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.12, 13.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Adak.NAS.704540_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-176.65, 51.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Adak.NAS.704540_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-176.65, 51.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Ambler.701718_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-157.85, 67.1] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Anaktuvuk.Pass.701625_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-151.73, 68.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Anchorage-Elmendorf.AFB.702720_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-149.8, 61.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Anchorage-Lake.Hood.Seaplane.Base.702725_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-149.97, 61.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Anchorage-Merrill.Field.702735_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-149.85, 61.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Anchorage.702730_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-150.02, 61.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Anchorage.Intl.AP.702730_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-150, 61.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Aniak.AP.702320_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-159.53, 61.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Annette.703980_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-131.57, 55.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Annette.Island.AP.703980_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-131.57, 55.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Annette.Island.AP.703980_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-131.57, 55.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Anvik.702075_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-160.18, 62.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Barrow-W.Post-W.Rogers.AP.700260_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-156.62, 71.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Barrow.700260_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-156.78, 71.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Bethel.702190_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-161.8, 60.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Bethel.AP.702190_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-161.8, 60.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Bethel.AP.702190_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-161.83, 60.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Bettles.701740_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-151.52, 66.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Bettles.Field.701740_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-151.52, 66.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Big.Delta-Allen.AAF.702670_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-145.73, 64] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Big.Delta-Allen.AAF.702670_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-145.72, 64] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Big.Delta.702670_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-145.73, 64] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Big.River.Lake.702986_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-152.3, 60.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Birchwood.702746_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-149.52, 61.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Chulitna.702606_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-149.83, 62.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Cold.Bay.703160_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-162.72, 55.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Cold.Bay.AP.703160_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-162.72, 55.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Cordova.702960_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-145.5, 60.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Deadhorse.700637_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-148.48, 70.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Dillingham.AWOS.703210_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-158.52, 59.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Eielson.AFB.702650_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-147.1, 64.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Emmonak.702084_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-164.5, 62.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Fairbanks.702610_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-147.87, 64.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Fairbanks.Intl.AP.702610_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-147.87, 64.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Fairbanks.Intl.AP.702610_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-147.85, 64.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Fort.Yukon.701940_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-145.27, 66.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Gambell.702040_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-171.75, 63.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Gulkana.702710_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-145.45, 62.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Gulkana.702710_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-145.45, 62.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Gulkana.702710_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-145.45, 62.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Gustavus.703670_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-135.7, 58.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Hayes.River.702495_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-152.08, 61.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Healy.River.AP.702647_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-149.02, 63.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Homer.AP.703410_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-151.48, 59.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Homer.AP.703410_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-151.48, 59.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Hoonah.702607_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-135.45, 58.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Hooper.Bay.702186_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-166.15, 61.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Huslia.702225_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-156.38, 65.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Hydaburg.Seaplane.Base.703884_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-132.83, 55.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Iliamna.AP.703400_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-154.92, 59.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Juneau.Intl.AP.703810_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-134.58, 58.35] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Juneau.Intl.AP.703810_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-134.58, 58.35] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Kake.Seaplane.Base.703855_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-133.95, 56.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Kenai.Muni.AP.702590_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-151.23, 60.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Ketchikan.Intl.AP.703950_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-131.72, 55.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_King.Salmon.703260_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-156.65, 58.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_King.Salmon.AP.703260_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-156.65, 58.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_King.Salmon.AP.703260_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-156.65, 58.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Kodiak.703500_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-152.33, 57.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Kodiak.AP.703500_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-152.5, 57.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Kodiak.AP.703500_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-152.5, 57.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Kotzebue-Ralph.Wein.Mem.AP.701330_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-162.6, 66.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Kotzebue.701330_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-162.63, 66.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_McGrath.702310_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-155.62, 62.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_McGrath.AP.702310_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-155.62, 62.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_McGrath.AP.702310_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-155.6, 62.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Mekoryuk.702185_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-166.27, 60.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Middleton.Island.703430_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-146.32, 59.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Minchumina.702460_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-152.28, 63.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Nenana.Muni.AP.702600_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-149.1, 64.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Nome.702000_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-165.43, 64.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Nome.Muni.AP.702000_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-165.43, 64.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Nome.Muni.AP.702000_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-165.45, 64.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Northway.AP.702910_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-141.93, 62.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Palmer.Muni.AP.702740_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-149.08, 61.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Petersburg.703860_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-132.95, 56.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Point.Hope.AWOS.701043_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-166.8, 68.35] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Port.Heiden.703330_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-158.62, 56.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Saint.Marys.AWOS.702005_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-163.3, 62.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Sand.Point.703165_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-160.52, 55.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Savoonga.702035_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-170.5, 63.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Selawik.700197_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-160, 66.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Seward.702770_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-149.45, 60.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Shemya.AFB.704140_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [174.12, 52.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Shishmaref.AWOS.701195_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-166.05, 66.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Sitka-Japonski.Island.AP.703710_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-135.37, 57.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Skagway.AP.703620_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-135.3, 59.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Sleetmute.703407_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-157.15, 61.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Soldotna.702595_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-151.03, 60.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_St.Paul.Island.703080_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-170.22, 57.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_St.Paul.Island.AP.703080_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-170.22, 57.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Summit.702640_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-149.13, 63.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Talkeetna.702510_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-150.1, 62.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Talkeetna.State.AP.702510_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-150.1, 62.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Tanana-Ralph.Calhoun.AP.701780_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-152.1, 65.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Togiak.Village.AWOS.703606_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-160.4, 59.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Unalakleet.Field.702070_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-160.8, 63.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Unalaska-Dutch.Harbor.Field.704890_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-166.55, 53.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Valdez-Pioneer.Field.702756_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-146.27, 61.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Valdez.702750_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-146.35, 61.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Whittier.702757_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-148.68, 60.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Wrangell.703870_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-132.37, 56.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Yakutat.703610_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-139.67, 59.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Yakutat.State.AP.703610_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-139.67, 59.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AK_Yakutat.State.AP.703610_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-139.63, 59.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AL_Anniston.Metro.AP.722287_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-85.85, 33.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AL_Auburn-Opelika.AP.722284_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-85.43, 32.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AL_Birmingham.722280_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.75, 33.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AL_Birmingham.Muni.AP.722280_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.75, 33.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AL_Birmingham.Muni.AP.722280_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.75, 33.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AL_Dothan.Muni.AP.722268_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-85.43, 31.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AL_Fort.Rucker-Cairns.Field.722269_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-85.72, 31.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AL_Gadsen.Muni.AWOS.722285_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.08, 33.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AL_Huntsville.723230_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.77, 34.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AL_Huntsville.Intl.AP-Jones.Field.723230_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.78, 34.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AL_Maxwell.AFB.722265_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.35, 32.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AL_Mobile-Downtown.AP.722235_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.07, 30.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AL_Mobile-Rgnl.AP.722230_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.25, 30.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AL_Mobile-Rgnl.AP.722230_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.25, 30.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AL_Mobile.722230_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.25, 30.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AL_Montgomery-Dannelly.Field.722260_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.4, 32.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AL_Montgomery-Dannelly.Field.722260_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.4, 32.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AL_Montgomery.722260_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.4, 32.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AL_Muscle.Shoals.Rgnl.AP.723235_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.6, 34.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AL_Troy.Air.Field.722267_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.02, 31.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AL_Tuscaloosa.Muni.AP.722286_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.62, 33.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AR_Batesville.AWOS.723448_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.65, 35.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AR_Bentonville.AWOS.723444_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.22, 36.35] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AR_El.Dorado-Goodwin.Field.723419_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.82, 33.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AR_Fayetteville-Drake.Field.723445_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.17, 36] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AR_Flippin.AWOS.723447_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.47, 36.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AR_Fort.Smith.723440_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.37, 35.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AR_Fort.Smith.Rgnl.AP.723440_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.37, 35.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AR_Fort.Smith.Rgnl.AP.723440_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.37, 35.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AR_Harrison.AP.723446_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.15, 36.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AR_Hot.Springs.Mem.AP.723415_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.1, 34.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AR_Jonesboro.Muni.AP.723407_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.65, 35.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AR_Little.Rock-Adams.Field.723403_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.15, 34.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AR_Little.Rock-Adams.Field.723403_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.23, 34.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AR_Little.Rock.723405_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.23, 34.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AR_Little.Rock.AFB.723405_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.15, 34.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AR_Pine.Bluff.AP.723417_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.93, 34.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AR_Rogers.AWOS.723449_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.1, 36.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AR_Siloam.Spring.AWOS.723443_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.48, 36.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AR_Springdale.Muni.AP.723434_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.12, 36.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AR_Stuttgart.AWOS.723416_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.57, 34.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AR_Texarkana-Webb.Field.723418_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94, 33.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AR_Walnut.Ridge.AWOS.723406_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.92, 36.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AZ_Casa.Grande.AWOS.722748_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-111.77, 32.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AZ_Davis-Monthan.AFB.722745_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-110.88, 32.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AZ_Douglas-Bisbee.Douglas.Intl.AP.722735_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-109.6, 31.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AZ_Flagstaff-Pulliam.AP.723755_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-111.67, 35.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AZ_Flagstaff.723755_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-111.67, 35.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AZ_Grand.Canyon.National.Park.AP.723783_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-112.15, 35.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AZ_Kingman.AWOS.723700_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-113.95, 35.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AZ_Luke.AFB.722785_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-112.37, 33.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AZ_Page.Muni.AWOS.723710_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-111.45, 36.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AZ_Phoenix-Deer.Valley.AP.722784_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-112.08, 33.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-112.02, 33.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-111.98, 33.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AZ_Phoenix.722780_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-112.02, 33.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AZ_Prescott-Love.Field.723723_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-112.42, 34.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AZ_Prescott-Love.Field.723723_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-112.42, 34.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AZ_Prescott.723723_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-112.43, 34.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AZ_Safford.AWOS.722747_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-109.68, 32.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AZ_Scottsdale.Muni.AP.722789_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-111.92, 33.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AZ_Show.Low.Muni.AP.723747_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-110, 34.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AZ_Tucson.722740_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-110.93, 32.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AZ_Tucson.Intl.AP.722740_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-110.93, 32.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AZ_Tucson.Intl.AP.722740_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-110.95, 32.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AZ_Winslow.Muni.AP.723740_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-110.71, 35.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AZ_Winslow.Muni.AP.723740_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-110.72, 35.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AZ_Yuma.Intl.AP.722800_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-114.6, 32.66] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AZ_Yuma.Intl.AP.722800_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-114.6, 32.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_AZ_Yuma.MCAS.699604_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-114.62, 32.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "CZ01RV2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-124.2, 40.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "CZ02RV2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.7, 38.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "CZ03RV2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.2, 37.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "CZ04RV2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.4, 37.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "CZ05RV2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-120.4, 34.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "CZ06RV2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-118.5, 33.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "CZ07RV2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.2, 32.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "CZ08RV2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.7, 33.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "CZ09RV2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-118.15, 34.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "CZ10RV2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.27, 33.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "CZ11RV2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.2, 40.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "CZ12RV2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-121.5, 38.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "CZ13RV2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-119.7, 36.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "CZ14RV2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.7, 35.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "CZ15RV2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-115.6, 32.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "CZ16RV2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.3, 41.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Alturas.725958_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-120.53, 41.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Arcata.725945_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-124.1, 40.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Arcata.AP.725945_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-124.1, 40.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Arcata.AP.725945_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-124.1, 40.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Bakersfield-Meadows.Field.723840_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-119.05, 35.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Bakersfield-Meadows.Field.723840_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-119.05, 35.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Bakersfield.723840_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-119.05, 35.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Barstow-Daggett.723815_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-116.78, 34.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Barstow.Daggett.AP.723815_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-116.78, 34.85] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Barstow.Daggett.AP.723815_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-116.8, 34.85] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Beale.AFB.724837_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-121.43, 39.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Bishop.AP.724800_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-118.35, 37.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Blue.Canyon.AP.725845_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-120.72, 39.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Blythe-Riverside.County.AP.747188_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-114.72, 33.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Burbank-Glendale-Passadena.Bob.Hope.AP.722880_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-118.35, 34.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Camarillo.AWOS.723926_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-119.08, 34.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Camp.Pendleton.MCAS.722926_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.35, 33.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Carlsbad.722927_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.28, 33.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_China.Lake.NAF.746120_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.68, 35.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_China.Lake.NAF.746120_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.68, 35.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Chino.AP.722899_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.63, 33.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Chula.Vista-Brown.Field.Muni.AP.722904_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-116.98, 32.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Concord-Buchanan.Field.724936_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.05, 38] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Crescent.City-Jack.McNamara.Field.725946_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-124.23, 41.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Edwards.AFB.723810_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.87, 34.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_El.Toro.MCAS.690140_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.73, 33.66] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Fairfield-Travis.AFB.745160_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-121.93, 38.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Fresno.723890_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-119.72, 36.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Fresno.Air.Terminal.723890_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-119.72, 36.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Fresno.Air.Terminal.723890_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-119.72, 36.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Fullerton.Muni.AP.722976_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.98, 33.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Hawthorne-Jack.Northrop.Field.722956_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-118.33, 33.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Hayward.Air.Terminal.724935_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.12, 37.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Imperial.County.AP.747185_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-115.58, 32.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Lancaster-Gen.Wm.Fox.Field.723816_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-118.22, 34.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Lemoore.NAS.747020_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-119.95, 36.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Livermore.Muni.AP.724927_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-121.82, 37.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Lompoc.AWOS.722895_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-120.47, 34.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Long.Beach-Daugherty.Field.722970_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-118.15, 33.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Long.Beach-Daugherty.Field.722970_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-118.17, 33.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Long.Beach.722970_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-118.15, 33.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Los.Angeles.722950_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-118.4, 33.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Los.Angeles.Intl.AP.722950_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-118.4, 33.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Los.Angeles.Intl.AP.722950_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-118.4, 33.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_March.AFB.722860_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.25, 33.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Merced-Macready.Field.724815_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-120.52, 37.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Modesto.Muni.AP.724926_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-120.95, 37.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Montague-Siskiyou.County.AP.725955_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.47, 41.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Monterey.NAF.724915_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-121.87, 36.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Mount.Shasta.725957_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.33, 41.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Mountain.View-Moffett.Field.NAS.745090_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.05, 37.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Mountain.View-Moffett.Field.NAS.745090_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.05, 37.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Napa.County.AP.724955_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.28, 38.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Needles.AP.723805_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-114.62, 34.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Oakland.Intl.AP.724930_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.21, 37.71] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Oakland.Intl.AP.724930_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.22, 37.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Oxnard.AP.723927_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-119.2, 34.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Palm.Springs-Thermal.AP.747187_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-116.17, 33.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Palm.Springs.Intl.AP.722868_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-116.5, 33.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Palmdale.AP.723820_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-118.08, 34.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Paso.Robles.Muni.AP.723965_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-120.63, 35.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Point.Mugu.NAS.723910_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-119.11, 34.11] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Point.Mugu.NAS.723910_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-119.12, 34.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Porterville.AWOS.723895_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-119.07, 36.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Red.Bluff.Muni.AP.725910_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.25, 40.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Red.Bluff.Muni.AP.725910_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.25, 40.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Redding.Muni.AP.725920_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.32, 40.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Riverside.Muni.AP.722869_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.45, 33.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Sacramento.724835_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-121.5, 38.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Sacramento.Exec.AP.724830_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-121.3, 38.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Sacramento.Exec.AP.724830_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-121.5, 38.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Sacramento.Metro.AP.724839_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-121.58, 38.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Salinas.Muni.AP.724917_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-121.6, 36.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_San.Diego-Lindbergh.Field.722900_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.17, 32.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_San.Diego-Lindbergh.Field.722900_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.17, 32.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_San.Diego-Miramar.NAS.722930_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.13, 32.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_San.Diego-Montgomery.Field.722903_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.13, 32.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_San.Diego-North.Island.NAS.722906_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.2, 32.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_San.Diego.722900_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.17, 32.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_San.Francisco.724940_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.38, 37.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_San.Francisco.Intl.AP.724940_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.38, 37.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_San.Francisco.Intl.AP.724940_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.4, 37.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_San.Jose.Intl.AP.724945_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-121.93, 37.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_San.Luis.Obispo.AP.722897_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-120.63, 35.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Sandberg.723830_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-118.72, 34.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Santa.Ana-John.Wayne.AP.722977_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.87, 33.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Santa.Barbara.Muni.AP.723925_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-119.85, 34.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Santa.Maria.723940_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-120.45, 34.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Santa.Maria.Public.AP.723940_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-120.45, 34.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Santa.Maria.Public.AP.723940_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-120.47, 34.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Santa.Monica.Muni.AP.722885_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-118.45, 34.02] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Santa.Rosa.AWOS.724957_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.82, 38.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_South.Lake.Tahoe-Lake.Tahoe.AP.725847_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-120, 38.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Stockton.Metro.AP.724920_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-121.23, 37.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Truckee.Tahoe.AP.725846_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-120.13, 39.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Twentynine.Palms.690150_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-116.17, 34.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Ukiah.Muni.AP.725905_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-123.2, 39.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Van.Nuys.AP.722886_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-118.48, 34.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Visalia.Muni.AWOS.723896_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-119.4, 36.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CA_Yuba.County.AP.724838_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-121.57, 39.1] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_Akron-Washington.County.AP.724698_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-103.23, 40.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_Alamosa.724620_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-105.87, 37.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_Alamosa.Muni.AP.724620_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-105.87, 37.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_Aspen-Pitkin.County-Sardy.Field.724676_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-106.87, 39.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_Aurora-Buckley.Field.ANGB.724695_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-104.75, 39.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_Boulder-Broomfield-Jefferson.County.AP.724699_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-105.24, 40.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_Boulder.724699_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-105.25, 40.02] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_Colorado.Springs-Peterson.Field.724660_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-104.72, 38.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-104.72, 38.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_Colorado.Springs.724660_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-104.72, 38.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_Cortez-Montezuma.County.AP.724767_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-108.63, 37.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_Craig.Moffat.AP.725700_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-107.53, 40.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_Denver-Stapleton.724690_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-104.86, 39.76] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_Denver.Intl.AP.725650_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-104.65, 39.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_Durango-La.Plata.County.AP.724625_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-107.75, 37.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_Eagle.724675_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-106.92, 39.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_Eagle.County.Rgnl.AP.724675_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-106.92, 39.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_Eagle.County.Rgnl.AP.724675_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-106.92, 39.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_Fort.Collins.AWOS.724769_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-105.02, 40.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_Golden-NREL.724666_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-105.18, 39.74] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_Grand.Junction-Walker.Field.724760_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-108.53, 39.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_Grand.Junction-Walker.Field.724760_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-108.53, 39.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_Grand.Junction.724760_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-108.53, 39.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_Greeley-Weld.County.AWOS.724768_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-104.63, 40.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_Gunnison.County.AWOS.724677_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-106.93, 38.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_Hayden-Yampa.AWOS.725715_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-107.22, 40.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_La.Junta.Muni.AP.724635_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-103.53, 38.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_Lamar.Muni.AP.724636_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-102.68, 38.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_Leadville-Lake.County.AP.724673_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-106.32, 39.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_Limon.Muni.AP.724665_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-103.72, 39.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_Montrose.County.AP.724765_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-107.9, 38.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_Pueblo.724640_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-104.52, 38.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_Pueblo.Mem.AP.724640_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-104.52, 38.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_Pueblo.Mem.AP.724640_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-104.5, 38.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_Rifle-Garfield.County.Rgnl.AP.725717_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-107.72, 39.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CO_Trinidad-Las.Animas.County.AP.724645_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-104.33, 37.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CT_Bridgeport-Sikorsky.Mem.AP.725040_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-73.15, 41.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CT_Bridgeport.725040_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-73.13, 41.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CT_Danbury.Muni.AP.725086_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-73.48, 41.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CT_Groton-New.London.AP.725046_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.05, 41.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CT_Hartford-Bradley.Intl.AP.725080_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.65, 41.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CT_Hartford-Bradley.Intl.AP.725080_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.68, 41.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CT_Hartford-Brainard.Field.725087_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.65, 41.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CT_Hartford.725087_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.68, 41.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CT_New.Haven-Tweed.AP.725045_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.88, 41.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_CT_Oxford.AWOS.725029_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-73.13, 41.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_DE_Dover.AFB.724088_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.47, 39.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_DE_Wilmington-New.Castle.County.AP.724089_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.6, 39.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_DE_Wilmington-New.Castle.County.AP.724089_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.6, 39.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_DE_Wilmington.724089_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.6, 39.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Apalachicola.722200_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-85.03, 29.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Crestview-Bob.Sikes.AP.722215_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.52, 30.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Daytona.Beach.722056_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.05, 29.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Daytona.Beach.Intl.AP.722056_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.05, 29.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Daytona.Beach.Intl.AP.722056_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.07, 29.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Fort.Lauderdale.Executive.AP.722039_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.17, 26.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Fort.Lauderdale.Intl.AP.722025_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.15, 26.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Fort.Myers-Page.Field.722106_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.87, 26.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Fort.Pierce-St.Lucie.County.AP.722103_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.37, 27.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Fort.Walton.Beach-Hurlburt.Field.747770_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.68, 30.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Gainesville.Rgnl.AP.722146_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.28, 29.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Homestead.AFB.722026_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.38, 25.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Jacksonville-Craig.Field.722068_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.52, 30.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Jacksonville.722060_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.7, 30.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Jacksonville.Intl.AP.722060_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.7, 30.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Jacksonville.Intl.AP.722060_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.7, 30.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Jacksonville.NAS.722065_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.67, 30.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Key.West.722010_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.75, 24.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Key.West.Intl.AP.722010_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.75, 24.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Key.West.NAS.722015_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.68, 24.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Lakeland.Linder.Rgnl.AP.722119_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.02, 27.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_MacDill.AFB.747880_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.52, 27.85] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Marathon.AP.722016_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.05, 24.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Mayport.NS.722066_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.42, 30.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Melbourne.Rgnl.AP.722040_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.65, 28.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Miami-Kendall-Tamiami.Executive.AP.722029_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.43, 25.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Miami-Opa.Locka.AP.722024_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.28, 25.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Miami.722020_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.27, 25.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Miami.Intl.AP.722020_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.28, 25.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Miami.Intl.AP.722020_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.3, 25.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_NASA.Shuttle.Landing.Facility.747946_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.72, 28.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Naples.Muni.AP.722038_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.77, 26.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Ocala.Muni.AWOS.722055_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.22, 29.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Orlando-Sanford.AP.722057_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.25, 28.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Orlando.Executive.AP.722053_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.33, 28.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Orlando.Executive.AP.722053_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.33, 28.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Orlando.Intl.AP.722050_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.33, 28.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Panama.City-Bay.County.AP.722245_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-85.68, 30.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Pensacola-Forest.Sherman.NAS.722225_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.32, 30.35] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Pensacola.Rgnl.AP.722223_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.18, 30.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Sarasota-Bradenton.Intl.AP.722115_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.55, 27.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Southwest.Florida.Intl.AP.722108_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.75, 26.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_St.Petersburg-Albert.Whitted.Station.722104_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.63, 27.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_St.Petersburg-Clearwater.Intl.AP.722116_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.68, 27.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Tallahassee.722140_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.37, 30.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Tallahassee.Rgnl.AP.722140_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.37, 30.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Tallahassee.Rgnl.AP.722140_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.37, 30.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Tampa.722110_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.53, 27.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Tampa.Intl.AP.722110_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.53, 27.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Tampa.Intl.AP.722110_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.53, 27.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Tyndall.AFB.747750_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-85.58, 30.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Valparaiso-Elgin.AFB.722210_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.52, 30.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Vero.Beach.Muni.AP.722045_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.42, 27.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_West.Palm.Beach.722030_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.1, 26.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_West.Palm.Beach.Intl.AP.722030_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.12, 26.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_West.Palm.Beach.Intl.AP.722030_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.1, 26.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_FL_Whiting.Field.NAS.722226_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.02, 30.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_GA_Albany-Dougherty.County.AP.722160_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.18, 31.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_GA_Alma-Bacon.County.AP.722135_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.5, 31.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_GA_Athens-Ben.Epps.AP.723110_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.33, 33.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_GA_Athens.723110_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.32, 33.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_GA_Atlanta-Hartsfield-Jackson.Intl.AP.722190_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.42, 33.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_GA_Atlanta-Hartsfield-Jackson.Intl.AP.722190_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.43, 33.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_GA_Atlanta.722190_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.43, 33.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_GA_Augusta-Bush-Field.722180_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.97, 33.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_GA_Augusta-Bush-Field.722180_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.97, 33.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_GA_Augusta.722180_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.97, 33.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_GA_Brunswick-Golden.Isles.AP.722136_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.47, 31.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_GA_Brunswick-Malcolm.McKinnon.AP.722137_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.38, 31.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_GA_Columbus.722255_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.95, 32.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_GA_Columbus.Metro.AP.722255_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.95, 32.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_GA_Dekalb.Peachtree.AP.722196_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.3, 33.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_GA_Fort.Benning-Lawson.Field.722250_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-85, 32.35] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_GA_Fulton.County.AP.722195_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.52, 33.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_GA_Macon-Middle.Georgia.Rgnl.AP.722170_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.65, 32.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_GA_Macon-Middle.Georgia.Rgnl.AP.722170_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.65, 32.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_GA_Macon.722170_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.65, 32.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_GA_Marietta-Dobbins.AFB.722270_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.52, 33.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_GA_Rome-Richard.B.Russell.AP.723200_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-85.17, 34.35] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_GA_Savannah-Hunter.AAF.747804_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.15, 32] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_GA_Savannah.722070_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.2, 32.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_GA_Savannah.Intl.AP.722070_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.2, 32.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_GA_Savannah.Intl.AP.722070_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.2, 32.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_GA_Valdosta-Moody.AFB.747810_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.2, 30.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_GA_Valdosta.Rgnl.AP.722166_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.28, 30.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_GA_Warner.Robins.AFB.722175_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.6, 32.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_HI_Barbers.Point.NAS.911780_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-158.07, 21.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_HI_Barbers.Point.NAS.911780_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-158.07, 21.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_HI_Hilo.912850_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-155.07, 19.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_HI_Hilo.Intl.AP.912850_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-155.07, 19.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_HI_Hilo.Intl.AP.912850_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-155.05, 19.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_HI_Honolulu.911820_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-157.92, 21.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_HI_Honolulu.Intl.AP.911820_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-157.93, 21.35] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_HI_Honolulu.Intl.AP.911820_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-157.93, 21.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_HI_Kahului.911900_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-156.43, 20.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_HI_Kahului.AP.911900_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-156.43, 20.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_HI_Kailua-Kaneohe.Bay.MCAS.911760_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-157.78, 21.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_HI_Kapalua-West.Maui.AP.911904_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-156.63, 20.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_HI_Keahole-Kona.Intl.AP.911975_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-156.05, 19.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_HI_Lanai.AP.911905_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-156.95, 20.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_HI_Lihue.911650_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-159.35, 21.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_HI_Lihue.AP.911650_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-159.35, 21.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_HI_Lihue.AP.911650_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-159.33, 21.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_HI_Molokai.AWOS.911860_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-157.1, 21.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Algona.Muni.AP.725457_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.27, 43.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Atlantic.Muni.AP.725453_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.05, 41.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Boone.Muni.AP.725486_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.85, 42.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Burlington.Muni.AP.725455_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.13, 40.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Burlington.Muni.AP.725455_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.12, 40.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Carroll.Muni.AP.725468_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.78, 42.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Cedar.Rapids.Muni.AP.725450_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.72, 41.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Chariton.Muni.AP.725469_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.37, 41.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Charles.City.Muni.AP.725463_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.62, 43.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Clarinda.Muni.AP.725479_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.03, 40.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Clinton.Muni.AWOS.725473_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.33, 41.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Council.Bluffs.Muni.AP.725497_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.77, 41.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Creston.Muni.AP.725474_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.37, 41.02] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Decorah.Muni.AP.725476_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.73, 43.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Denison.Muni.AP.725477_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.38, 41.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Des.Moines.725460_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.65, 41.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Des.Moines.Intl.AP.725460_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.65, 41.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Des.Moines.Intl.AP.725460_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.67, 41.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Dubuque.Rgnl.AP.725470_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.7, 42.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Estherville.Muni.AP.726499_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.75, 43.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Fairfield.Muni.AP.726498_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.98, 41.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Fort.Dodge.AWOS.725490_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.18, 42.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Fort.Madison.Muni.AP.725483_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.33, 40.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Keokuk.Muni.AP.725456_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.43, 40.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Knoxville.Muni.AP.725493_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.12, 41.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Le.Mars.Muni.AP.725484_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.2, 42.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Mason.City.725485_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.33, 43.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Mason.City.Muni.AP.725485_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.33, 43.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Mason.City.Muni.AP.725485_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.33, 43.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Monticello.Muni.AP.725475_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.17, 42.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Muscatine.Muni.AP.725487_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.15, 41.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Newton.Muni.AP.725464_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.02, 41.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Oelwein.Muni.AP.725488_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.97, 42.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Orange.City.Muni.AP.725489_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.07, 42.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Ottumwa.Industrial.AP.725465_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.45, 41.1] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Red.Oak.Muni.AP.725494_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.27, 41.02] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Sheldon.Muni.AP.725495_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.83, 43.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Shenandoah.Muni.AP.725467_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.42, 40.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Sioux.City-Sioux.Gateway.AP.725570_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.38, 42.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Sioux.City-Sioux.Gateway.AP.725570_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.38, 42.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Sioux.City.725570_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.38, 42.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Spencer.Muni.AP.726500_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.15, 43.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Storm.Lake.Muni.AP.725496_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.23, 42.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Washington.Muni.AP.725454_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.67, 41.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Waterloo.725480_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.4, 42.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Waterloo.Muni.AP.725480_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.4, 42.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IA_Webster.City.Muni.AP.725478_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.87, 42.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ID_Boise.726810_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-116.22, 43.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ID_Boise.Air.Terminal.726810_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-116.22, 43.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ID_Boise.Air.Terminal.726810_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-116.21, 43.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ID_Burley.Muni.AP.725867_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-113.77, 42.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ID_Caldwell.AWOS.726813_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-116.63, 43.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ID_Coeur.dAlene.AWOS.727834_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-116.82, 47.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ID_Hailey-Sun.Valley.AP.725865_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-114.3, 43.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ID_Idaho.Falls-Fanning.Field.725785_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-112.07, 43.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ID_Lewiston-Nez.Perce.County.AP.727830_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.01, 46.36] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ID_Lewiston-Nez.Perce.County.AP.727830_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.02, 46.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ID_Malad.City.AP.725786_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-112.28, 42.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ID_Mountain.Home.AFB.726815_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-115.87, 43.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ID_Pocatello.725780_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-112.6, 42.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ID_Pocatello.Muni.AP.725780_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-112.6, 42.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ID_Pocatello.Muni.AP.725780_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-112.57, 42.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ID_Salmon-Lemhi.AWOS.726865_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-113.88, 45.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ID_Soda.Springs-Tigert.AP.725868_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-111.58, 42.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ID_Twin.Falls-Magic.Valley.Rgnl.AP-Joslin.Field.725866_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-114.35, 42.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IL_Aurora.Muni.AP.744655_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.47, 41.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IL_Belleville-Scott.AFB.724338_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.85, 38.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IL_Bloomington.Normal-Central.Illinois.Rgnl.AP.724397_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.92, 40.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IL_Cahokia.AP.725314_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.15, 38.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IL_Carbondale-Southern.Illinois.AP.724336_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.25, 37.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IL_Chicago-Midway.AP.725340_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.75, 41.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IL_Chicago-Midway.AP.725340_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.75, 41.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IL_Chicago-OHare.725300_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.75, 41.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IL_Chicago-OHare.Intl.AP.725300_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.92, 41.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IL_Decatur.AP.725316_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.87, 39.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IL_Du.Page.AP.725305_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.25, 41.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IL_Marion-Williamson.County.Rgnl.AP.724339_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.02, 37.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IL_Moline-Quad.City.Intl.AP.725440_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.52, 41.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IL_Moline-Quad.City.Intl.AP.725440_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.52, 41.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IL_Moline.725440_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.52, 41.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IL_Mount.Vernon.AWOS.724335_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.87, 38.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IL_Peoria-Greater.Peoria.AP.725320_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.68, 40.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IL_Peoria.725320_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.68, 40.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IL_Quincy.Muni.AP.724396_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.2, 39.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IL_Rockford-Greater.Rockford.AP.725430_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.1, 42.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IL_Rockford.725430_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.1, 42.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IL_Springfield-Capital.AP.724390_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.67, 39.85] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IL_Springfield-Capital.AP.724390_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.68, 39.85] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IL_Springfield.724390_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.67, 39.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IL_Sterling-Rock.Falls-Whiteside.County.AP.725326_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.67, 41.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IL_University.of.Illinois-Willard.AP.725315_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.37, 40.06] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IL_Waukegan.Rgnl.AP.725347_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.87, 42.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IN_Delaware.County-Johnson.Field.725336_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-85.4, 40.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IN_Evansville.724320_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.53, 38.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IN_Evansville.Rgnl.AP.724320_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.53, 38.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IN_Evansville.Rgnl.AP.724320_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.53, 38.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IN_Fort.Wayne.725330_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-85.2, 41] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IN_Fort.Wayne.Intl.AP.725330_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-85.2, 41] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IN_Fort.Wayne.Intl.AP.725330_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-85.2, 41] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IN_Grissom.AFB.725335_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.15, 40.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IN_Huntingburg.Muni.AP.724365_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.95, 38.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IN_Indianapolis.724380_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.28, 39.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IN_Indianapolis.Intl.AP.724380_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.27, 39.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IN_Indianapolis.Intl.AP.724380_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.27, 39.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IN_Lafayette-Purdue.University.AP.724386_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.93, 40.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IN_Monroe.County.AP.724375_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.62, 39.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IN_South.Bend-Michiana.Rgnl.AP.725350_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.32, 41.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IN_South.Bend-Michiana.Rgnl.AP.725350_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.33, 41.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IN_South.Bend.725350_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.32, 41.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_IN_Terre.Haute-Hulman.Rgnl.AP.724373_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.3, 39.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KS_Chanute-Martin.Johnson.AP.724507_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.48, 37.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KS_Concordia-Blosser.Muni.AP.724580_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.65, 39.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KS_Dodge.City.724510_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-99.97, 37.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KS_Dodge.City.Rgnl.AP.724510_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-99.97, 37.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KS_Dodge.City.Rgnl.AP.724510_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-99.97, 37.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KS_Emporia.Muni.AP.724556_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.18, 38.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KS_Fort.Riley-Marshall.AAF.724550_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.77, 39.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KS_Garden.City.Muni.AP.724515_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-100.72, 37.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KS_Goodland-Renner.Field.724650_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-101.7, 39.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KS_Goodland-Renner.Field.724650_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-101.7, 39.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KS_Goodland.724650_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-101.7, 39.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KS_Great.Bend.AWOS.724517_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-98.87, 38.35] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KS_Hays.Muni.AWOS.724518_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-99.27, 38.85] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KS_Hill.City.Muni.AP.724655_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-99.83, 39.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KS_Hutchinson.Muni.AP.724506_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.87, 38.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KS_Liberal.Muni.AP.724516_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-100.97, 37.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KS_Manhattan.Rgnl.AP.724555_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.67, 39.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KS_Newton.AWOS.724509_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.28, 38.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KS_Olathe-Johnson.County.Executive.AP.724468_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.73, 38.85] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KS_Olathe-Johnson.County.Industrial.AP.724475_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.88, 38.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KS_Russell.Muni.AP.724585_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-98.82, 38.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KS_Salina.Muni.AP.724586_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.67, 38.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KS_Topeka-Forbes.AFB.724565_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.67, 38.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KS_Topeka-Phillip.Billard.Muni.AP.724560_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.62, 39.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KS_Topeka-Phillip.Billard.Muni.AP.724560_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.63, 39.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KS_Topeka.724560_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.63, 39.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KS_Wichita-Col.Jabara.Field.724504_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.22, 37.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KS_Wichita-McConnell.AFB.724505_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.27, 37.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KS_Wichita-Mid.Continent.AP.724500_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.43, 37.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KS_Wichita.724500_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.42, 37.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KY_Bowling.Green-Warren.County.AP.746716_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.43, 36.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KY_Cincinnati-Northern.Kentucky.AP.724210_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.67, 39.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KY_Cincinnati-Northern.Kentucky.AP.724210_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.67, 39.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KY_Covington-Cincinnati.AP.724210_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.67, 39.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KY_Fort.Campbell.AAF.746710_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.48, 36.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KY_Fort.Knox-Godman.AAF.724240_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-85.97, 37.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KY_Henderson.City.County.AP.724238_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.68, 37.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KY_Jackson-Julian.Carroll.AP.724236_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.32, 37.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KY_Lexington-Bluegrass.AP.724220_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.6, 38.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KY_Lexington-Bluegrass.AP.724220_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.6, 38.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KY_Lexington.724220_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.6, 38.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KY_London-Corbin-Magee.Field.724243_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.08, 37.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KY_Louisville-Bowman.Field.724235_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-85.67, 38.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KY_Louisville-Standiford.Field.724230_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-85.73, 38.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KY_Louisville-Standiford.Field.724230_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-85.73, 38.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KY_Louisville.724230_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-85.73, 38.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KY_Paducah-Barkley.Rgnl.AP.724350_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.77, 37.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_KY_Somerset-Pulaski.County.AWOS.724354_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.6, 38] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_LA_Alexandria-England.AFB.747540_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.55, 31.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_LA_Alexandria-Esler.Rgnl.AP.722487_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.3, 31.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_LA_Barksdale.AFB.722485_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.67, 32.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_LA_Baton.Rouge-Ryan.AP.722317_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.15, 30.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_LA_Baton.Rouge-Ryan.AP.722317_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.15, 30.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_LA_Baton.Rouge.722317_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.15, 30.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_LA_Fort.Polk.722390_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.18, 31.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_LA_Houma-Terrebonne.AP.722406_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.67, 29.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_LA_Lafayette.RgnlAP.722405_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.98, 30.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_LA_Lake.Charles.722400_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.22, 30.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_LA_Lake.Charles.AP.722404_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.17, 30.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_LA_Lake.Charles.Rgnl.AP.722400_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.22, 30.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_LA_Lake.Charles.Rgnl.AP.722400_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.23, 30.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_LA_Monroe.Rgnl.AP.722486_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.03, 32.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_LA_New.Iberia.722314_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.88, 30.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_LA_New.Orleans-Alvin.Callender.Field.722316_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.02, 29.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_LA_New.Orleans-Lakefront.AP.722315_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.03, 30.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_LA_New.Orleans.722315_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.25, 29.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_LA_New.Orleans.Intl.AP.722310_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.03, 30.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_LA_New.Orleans.Intl.AP.722310_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.25, 30] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_LA_Patterson.Mem.AP.722329_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.33, 29.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_LA_Shreveport.722480_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.82, 32.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_LA_Shreveport.Downtown.722484_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.75, 32.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_LA_Shreveport.Rgnl.AP.722480_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.82, 32.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_LA_Shreveport.Rgnl.AP.722480_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.82, 32.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MA_Barnstable-Boardman.Poland.AP.725067_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.28, 41.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MA_Beverly.Muni.AP.725088_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.92, 42.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MA_Boston-Logan.725090_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.03, 42.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MA_Boston-Logan.Intl.AP.725090_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.07, 42.35] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MA_Boston-Logan.Intl.AP.725090_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.02, 42.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MA_Chicopee.Falls-Westover.AFB.744910_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.53, 42.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MA_Lawrence.Muni.AP.744904_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.12, 42.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MA_Marthas.Vineyard.AP.725066_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.62, 41.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MA_Nantucket.Mem.AP.725063_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.07, 41.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MA_New.Bedford.Rgnl.AP.725065_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.95, 41.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MA_North.Adams.AP.725075_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-73.17, 42.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MA_Norwood.Mem.AP.725098_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.18, 42.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MA_Otis.ANGB.725060_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.52, 41.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MA_Plymouth.Muni.AP.725064_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.73, 41.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MA_Provincetown.AWOS.725073_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.22, 42.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MA_Westfield-Barnes.Muni.AP.744915_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.72, 42.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MA_Worcester.725095_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.87, 42.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MA_Worcester.Rgnl.AP.725095_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.88, 42.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MD_Andrews.AFB.745940_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.87, 38.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MD_Baltimore-Washington.Intl.AP.724060_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.67, 39.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MD_Baltimore-Washington.Intl.AP.724060_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.68, 39.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MD_Baltimore.724060_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.67, 39.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MD_Hagerstown-Washington.County.Rgnl.AP.724066_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.73, 39.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MD_Patuxent.River.NAS.724040_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.41, 38.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MD_Patuxent.River.NAS.724040_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.42, 38.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MD_Salisbury-Wicomico.County.Rgnl.AP.724045_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.52, 38.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ME_Auburn-Lewiston.Muni.AP.726184_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.28, 44.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ME_Augusta.AP.726185_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-69.8, 44.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ME_Bangor.Intl.AP.726088_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-68.8, 44.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ME_Bangor.Intl.AP.726088_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-68.82, 44.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ME_Bar.Harbor.AWOS.726077_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-68.37, 44.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ME_Brunswick.NAS.743920_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-69.93, 43.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ME_Caribou.727120_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-68.02, 46.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ME_Caribou.Muni.AP.727120_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-68.02, 46.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ME_Caribou.Muni.AP.727120_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-68.03, 46.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ME_Edmundston-Northern.Aroostook.Rgnl.AP.726083_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-68.32, 47.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ME_Houlton.Intl.AP.727033_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-67.8, 46.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ME_Millinocket.Muni.AP.726196_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-68.68, 45.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ME_Portland.726060_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.32, 43.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ME_Portland.Intl.Jetport.726060_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.32, 43.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ME_Portland.Intl.Jetport.726060_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.3, 43.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ME_Presque.Isle.Muni.AP.727130_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-68.05, 46.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ME_Rockland-Knox.AWOS.726079_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-69.1, 44.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ME_Sanford.Muni.AWOS.726064_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.72, 43.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ME_Waterville.AWOS.726073_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-69.68, 44.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ME_Wiscasset.AP.727135_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-69.72, 43.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Alpena.726390_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.57, 45.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Alpena.County.Rgnl.AP.726390_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.57, 45.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Alpena.County.Rgnl.AP.726390_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.58, 45.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Ann.Arbor.Muni.AP.725374_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.75, 42.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Battle.Creek-Kellogg.AP.725396_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-85.25, 42.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Benton.Harbor-Ross.Field-Twin.Cities.AP.726355_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.43, 42.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Cadillac-Wexford.County.AP.726384_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-85.42, 44.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Chippewa.County.Intl.AP.727344_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.47, 46.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Detroit-City.AP.725375_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83, 42.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Detroit-City.AP.725375_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83, 42.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Detroit-Metro.AP.725370_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.02, 42.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Detroit-Willow.Run.AP.725376_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.53, 42.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Detroit.Metro.AP.725370_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.35, 42.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Escanaba.AWOS.726480_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.03, 45.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Flint-Bishop.Intl.AP.726370_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.75, 42.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Flint-Bishop.Intl.AP.726370_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.75, 42.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Flint.726370_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.73, 42.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Grand.Rapids-Kent.County.Intl.AP.726350_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-85.52, 42.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Grand.Rapids-Kent.County.Intl.AP.726350_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-85.52, 42.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Grand.Rapids.726350_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-85.52, 42.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Hancock-Houghton.County.AP.727440_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.5, 47.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Houghton-Lake.Roscommon.County.AP.726380_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.68, 44.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Houghton.727440_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.5, 47.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Howell-Livingston.County.AP.725378_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.98, 42.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Iron.Mountain-Ford.Field.727437_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.12, 45.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Ironwood.AWOS.727445_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.13, 46.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Jackson-Reynolds.Field.725395_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.47, 42.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Kalamazoo-Battle.Creek.Intl.AP.726357_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-85.55, 42.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Lansing-Capital.City.AP.725390_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.58, 42.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Lansing.725390_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.6, 42.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Manistee.AWOS.726385_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.25, 44.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Menominee.AWOS.726487_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.63, 45.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Mount.Clemens-Selfridge.ANGB.725377_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.83, 42.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Muskegon.726360_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.25, 43.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Muskegon.County.AP.726360_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.23, 43.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Oakland.County.Intl.AP.726375_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.42, 42.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Oscoda-Wurtsmith.AFB.726395_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.4, 44.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Pellston-Emmet.County.AP.727347_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.78, 45.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Saginaw-Tri.City.Intl.AP.726379_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.08, 43.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Sault.Ste.Marie-Sanderson.Field.727340_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.37, 46.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Sault.Ste.Marie-Sanderson.Field.727340_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.35, 46.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Sault.Ste.Marie.727340_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.37, 46.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_St.Clair.County.Intl.AP.725384_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.53, 42.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Traverse.City-Cherry.Capital.AP.726387_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-85.58, 44.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Traverse.City-Cherry.Capital.AP.726387_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-85.58, 44.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MI_Traverse.City.726387_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-85.58, 44.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Aitkin.AWOS.727504_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.68, 46.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Albert.Lea.AWOS.726589_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.37, 43.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Alexandria.Muni.AP.726557_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.4, 45.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Austin.Muni.AP.727566_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.93, 43.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Baudette.Intl.AP.727476_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.6, 48.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Bemidji.Muni.AP.727550_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.93, 47.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Benson.Muni.AP.727507_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.65, 45.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Brainerd-Crow.Wing.County.AP.726555_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.13, 46.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Cambridge.Muni.AP.727503_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.27, 45.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Cloquet.AWOS.726558_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.5, 46.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Crane.Lake.AWOS.727473_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.57, 46.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Crookston.Muni.Field.727452_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.62, 47.85] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Detroit.Lakes.AWOS.727457_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.88, 46.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Duluth.727450_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.18, 46.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Duluth.Intl.AP.727450_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.18, 46.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Duluth.Intl.AP.727450_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.22, 46.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Edin.Prairie-Flying.Cloud.AP.726579_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.45, 44.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Ely.Muni.AP.727459_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.83, 47.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Eveleth.Muni.AWOS.727474_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.5, 47.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Fairmont.Muni.AWOS.726586_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.42, 43.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Faribault.Muni.AWOS.726563_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.32, 44.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Fergus.Falls.AWOS.726560_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.15, 46.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Fosston.AWOS.727505_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.77, 47.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Glenwood.AWOS.726547_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.32, 45.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Grand.Rapids.AWOS.727458_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.52, 47.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Hallock.727478_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.95, 48.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Hibbing-Chisholm.Hibbing.AP.727455_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.85, 47.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Hutchinson.AWOS.726569_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.38, 44.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_International.Falls.727470_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.38, 48.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_International.Falls.Intl.AP.727470_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.38, 48.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_International.Falls.Intl.AP.727470_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.4, 48.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Litchfield.Muni.AP.726583_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.5, 45.1] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Little.Falls.AWOS.726578_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.35, 45.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Mankato.AWOS.726585_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.92, 44.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Marshall.Muni-Ryan.Field.AWOS.726559_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.82, 44.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Minneapolis-Crystal.AP.726575_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.35, 45.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Minneapolis-St.Paul.726580_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.22, 44.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Minneapolis-St.Paul.Intl.AP.726580_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.22, 44.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Minneapolis-St.Paul.Intl.AP.726580_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.23, 44.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Mora.Muni.AWOS.727475_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.27, 45.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Morris.Muni.AWOS.726565_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.97, 45.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_New.Ulm.Muni.AWOS.726567_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.5, 44.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Orr.Rgnl.AP.726544_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.87, 48.02] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Owatonna.AWOS.726568_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.25, 44.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Park.Rapids.Muni.AP.727453_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.07, 46.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Pipestone.AWOS.726566_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.32, 43.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Red.Wing.Muni.AP.726564_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.48, 44.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Redwood.Falls.Muni.AP.726556_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.08, 44.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Rochester.726440_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.5, 43.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Rochester.Intl.AP.726440_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.5, 43.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Rochester.Intl.AP.726440_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.5, 43.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Roseau.Muni.AWOS.727477_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.7, 48.85] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Saint.Cloud.726550_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.07, 45.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Silver.Bay.Muni.AP.727556_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.4, 47.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_South.St.Paul.Muni.AP.726603_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.15, 44.85] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_St.Cloud.Muni.AP.726550_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.05, 45.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_St.Paul-Downtown.AP.726584_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.05, 44.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Thief.River.AWOS.727555_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.18, 48.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Two.Harbors.Muni.AP.727444_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.75, 47.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Wheaton.AWOS.727533_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.5, 45.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Willmar.Muni.AP.726576_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.08, 45.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Winona.Muni.AWOS.726588_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.7, 44.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MN_Worthington.AWOS.726587_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.58, 43.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MO_Cape.Girardeau.Muni.AP.723489_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.57, 37.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MO_Columbia.724450_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.22, 38.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MO_Columbia.Rgnl.AP.724450_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.22, 38.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MO_Columbia.Rgnl.AP.724450_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.22, 38.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MO_Farmington.Rgnl.AP.724454_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.4, 37.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MO_Fort.Leonard.Wood-Forney.AAF.724457_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.15, 37.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MO_Jefferson.City.Mem.AP.724458_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.15, 38.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MO_Joplin.Muni.AP.723495_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.5, 37.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MO_Kaiser-Lee.Fine.Mem.AWOS.724459_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.55, 38.1] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MO_Kansas.City.724460_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.72, 39.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MO_Kansas.City.Downtown.AP.724463_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.6, 39.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MO_Kansas.City.Intl.AP.724460_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.72, 39.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MO_Kirksville.Muni.AP.724455_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.55, 40.1] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MO_Poplar.Bluff.AWOS.723300_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.47, 36.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MO_Rolla.National.AP.724456_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.77, 38.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MO_Springfield.724400_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.38, 37.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MO_Springfield.Rgnl.AP.724400_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.38, 37.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MO_Springfield.Rgnl.AP.724400_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.38, 37.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MO_St.Joseph-Rosecrans.Mem.AP.724490_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.9, 39.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MO_St.Louis-Lambert.Intl.AP.724340_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.37, 38.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MO_St.Louis-Lambert.Intl.AP.724340_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.37, 38.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MO_St.Louis-Spirit.of.St.Louis.AP.724345_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.65, 38.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MO_St.Louis.724340_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.38, 38.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MO_Whiteman.AFB.724467_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.55, 38.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MS_Biloxi-Keesler.AFB.747686_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.92, 30.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MS_Columbus.AFB.723306_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.45, 33.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MS_Golden.Triangle.Rgnl.AWOS.723307_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.58, 33.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MS_Greenville.Muni.AP.722356_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.98, 33.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MS_Greenwood-Leflore.AP.722359_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.08, 33.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MS_Gulfport-Biloxi.Intl.AP.747685_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.07, 30.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MS_Hattiesburg-Laurel.AP.722348_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.33, 31.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MS_Jackson.722350_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.08, 32.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MS_Jackson.Intl.AP.722350_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.08, 32.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MS_Jackson.Intl.AP.722350_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.08, 32.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MS_McComb-Pike.Co.AP.722358_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.47, 31.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MS_Meridian-Key.Field.722340_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.75, 32.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MS_Meridian-Key.Field.722340_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.75, 32.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MS_Meridian.722340_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.75, 32.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MS_Meridian.NAS.722345_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.57, 32.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MS_Natchez-Hardy.Anders.Field.722357_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.3, 31.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MS_Tupelo.Muni-C.D.Lemons.AP.723320_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.77, 34.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MT_Billings-Logan.Intl.AP.726770_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-108.53, 45.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MT_Billings-Logan.Intl.AP.726770_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-108.55, 45.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MT_Billings.726770_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-108.53, 45.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MT_Bozeman-Gallatin.Field.726797_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-111.15, 45.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MT_Butte-Bert.Mooney.AP.726785_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-112.5, 45.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MT_Cut.Bank.727796_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-112.37, 48.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MT_Cut.Bank.Muni.AP.727796_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-112.37, 48.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MT_Cut.Bank.Muni.AP.727796_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-112.37, 48.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MT_Dillon.726796_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-112.55, 45.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MT_Glasgow.727680_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-106.62, 48.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MT_Glasgow.Intl.AP.727680_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-106.62, 48.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MT_Glasgow.Intl.AP.727680_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-106.62, 48.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MT_Glendive.AWOS.726676_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-104.8, 47.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MT_Great.Falls.727755_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-111.37, 47.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MT_Great.Falls.Intl.AP.727750_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-111.18, 47.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MT_Great.Falls.Intl.AP.727750_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-111.38, 47.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MT_Havre.City-County.AP.727770_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-109.77, 48.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MT_Helena.727720_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-112, 46.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MT_Helena.Rgnl.AP.727720_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-112, 46.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MT_Helena.Rgnl.AP.727720_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-111.97, 46.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MT_Kalispell-Glacier.Park.Intl.AP.727790_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-114.25, 48.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MT_Kalispell.727790_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-114.27, 48.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MT_Lewistown.726776_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-109.45, 47.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MT_Lewistown.Muni.AP.726776_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-109.47, 47.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MT_Lewistown.Muni.AP.726776_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-109.45, 47.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MT_Livingston-Mission.Field.726798_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-110.45, 45.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MT_Miles.City.742300_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-105.87, 46.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MT_Miles.City.Muni.AP.742300_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-105.87, 46.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MT_Miles.City.Muni.AP.742300_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-105.88, 46.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MT_Missoula.727730_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-114.08, 46.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MT_Missoula.Intl.AP.727730_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-114.08, 46.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MT_Missoula.Intl.AP.727730_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-114.1, 46.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MT_Sidney-Richland.Muni.AP.727687_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-104.2, 47.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_MT_Wolf.Point.Intl.AP.727686_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-105.1, 48.31] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NC_Asheville.723150_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.53, 35.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NC_Asheville.Rgnl.AP.723150_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.55, 35.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NC_Asheville.Rgnl.AP.723150_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.53, 35.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NC_Cape.Hatteras.723040_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.55, 35.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NC_Cape.Hatteras.723040_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.55, 35.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NC_Cape.Hatteras.723040_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.55, 35.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NC_Charlotte-Douglas.Intl.AP.723140_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.93, 35.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NC_Charlotte-Douglas.Intl.AP.723140_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.95, 35.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NC_Charlotte.723140_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.93, 35.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NC_Cherry.Point.MCAS.723090_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.88, 34.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NC_Cherry.Point.MCAS.723090_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.88, 34.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NC_Elizabeth.City.CGAS.746943_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.25, 36.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NC_Fayetteville-Pope.AFB.723030_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.02, 35.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NC_Fayetteville.Muni.AP.723035_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-78.88, 34.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NC_Fort.Bragg-Simmons.AAF.746930_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-78.93, 35.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NC_Goldsboro-Seymour.Johnson.AFB.723066_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.97, 35.35] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NC_Greensboro-Piedmont.Triad.Intl.AP.723170_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.95, 36.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NC_Greensboro-Piedmont.Triad.Intl.AP.723170_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.95, 36.1] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NC_Greensboro.723170_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.95, 36.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NC_Hickory.Rgnl.AP.723145_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.38, 35.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NC_Jacksonville.AWOS.723069_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.62, 34.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NC_Kinston.Stallings.AFB.723067_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.63, 35.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NC_Manteo-Dare.County.Rgnl.AP.723046_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.7, 35.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NC_New.Bern-Craven.County.Rgnl.AP.723095_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.05, 35.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NC_New.River.MCAS.723096_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.38, 34.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NC_Pitt.Greenville.AP.723065_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.4, 35.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NC_Raleigh-Durham.723060_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-78.78, 35.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NC_Raleigh-Durham.Intl.AP.723060_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-78.78, 35.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NC_Raleigh-Durham.Intl.AP.723060_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-78.78, 35.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NC_Rocky.Mount-Wilson.AP.723068_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.9, 35.85] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NC_Southern.Pines-Moore.County.AP.723143_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.4, 35.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NC_Wilmington.723013_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.9, 34.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NC_Wilmington.Intl.AP.723013_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.9, 34.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NC_Winston.Salem-Smith.Reynolds.AP.723193_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.22, 36.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ND_Bismarck.727640_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-100.75, 46.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ND_Bismarck.Muni.AP.727640_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-100.75, 46.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ND_Bismarck.Muni.AP.727640_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-100.77, 46.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ND_Devils.Lake.AWOS.727573_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-98.92, 48.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ND_Dickinson.Muni.AP.727645_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-102.8, 46.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ND_Fargo-Hector.Intl.AP.727530_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.8, 46.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ND_Fargo-Hector.Intl.AP.727530_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.82, 46.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ND_Fargo.727530_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.8, 46.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ND_Grand.Forks.AFB.727575_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.4, 47.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ND_Grand.Forks.Intl.AP.727576_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.18, 47.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ND_Jamestown.Muni.AP.727535_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-98.68, 46.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ND_Minot.727676_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-101.28, 48.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ND_Minot.AFB.727675_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-101.35, 48.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ND_Minot.Intl.AP.727676_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-101.28, 48.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ND_Minot.Intl.AP.727676_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-101.28, 48.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_ND_Williston-Sloulin.Field.Intl.AP.727670_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-103.65, 48.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NE_Ainsworth.Muni.AP.725556_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-100, 42.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NE_Alliance.Muni.AP.725635_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-102.8, 42.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NE_Beatrice.Muni.AP.725515_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.75, 40.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NE_Bellevue-Offutt.AFB.725540_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.92, 41.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NE_Broken.Bow.Muni.AP.725555_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-99.65, 41.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NE_Chadron.Muni.AP.725636_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-103.08, 42.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NE_Columbus.Muni.AP.725565_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.33, 41.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NE_Falls.City-Brenner.Field.725533_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.6, 40.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NE_Fremont.Muni.AP.725564_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.52, 41.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NE_Grand.Island-Central.Nebraska.Rgnl.AP.725520_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-98.32, 40.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NE_Grand.Island-Central.Nebraska.Rgnl.AP.725520_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-98.32, 40.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NE_Grand.Island.725520_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-98.32, 40.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NE_Hastings.Muni.AP.725525_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-98.43, 40.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NE_Holdrege-Brewster.Field.725628_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-99.33, 40.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NE_Imperial.Muni.AP.725626_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-101.62, 40.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NE_Kearney.Muni.AWOS.725526_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-99, 40.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NE_Lincoln.Muni.AP.725510_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.77, 40.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NE_McCook.Muni.AP.725625_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-100.58, 40.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NE_Norfolk-Karl.Stefan.Mem.AP.725560_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.43, 41.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NE_Norfolk.725560_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.43, 41.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NE_North.Platte.725620_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-100.68, 41.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NE_North.Platte.Rgnl.AP.725620_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-100.68, 41.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NE_North.Platte.Rgnl.AP.725620_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-100.67, 41.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NE_ONeill-Baker.Field.725566_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-98.68, 42.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NE_Omaha-Eppley.Airfield.725500_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.9, 41.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NE_Omaha-Eppley.Airfield.725500_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.9, 41.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NE_Omaha.725500_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.52, 41.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NE_Omaha.WSFO.725530_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.02, 41.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NE_Ord-Sharp.Field.725524_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-98.95, 41.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NE_Scottsbluff-W.B.Heilig.Field.725660_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-103.6, 41.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NE_Scottsbluff-W.B.Heilig.Field.725660_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-103.6, 41.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NE_Scottsbluff.725660_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-103.6, 41.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NE_Sidney.Muni.AP.725610_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-102.98, 41.1] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NE_Tekamah.AWOS.725527_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.17, 41.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NE_Valentine-Miller.Field.725670_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-100.55, 42.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NH_Berlin.Muni.AP.726160_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.18, 44.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NH_Concord.726050_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.5, 43.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NH_Concord.Muni.AP.726050_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.5, 43.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NH_Concord.Muni.AP.726050_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.5, 43.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NH_Keene-Dillant.Hopkins.AP.726165_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.27, 42.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NH_Laconia.Muni.AWOS.726155_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.42, 43.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NH_Lebanon.Muni.AP.726116_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.3, 43.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NH_Manchester.Muni.AP.743945_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.43, 42.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NH_Mount.Washington.726130_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.3, 44.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NH_Pease.Intl.Tradeport.726055_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.82, 43.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NJ_Atlantic.City.724070_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.57, 39.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NJ_Atlantic.City.Intl.AP.724070_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.57, 39.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NJ_Belmar-Monmouth.County.AP.724084_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.07, 40.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NJ_Caldwell-Essex.County.AP.724094_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.28, 40.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NJ_Cape.May.County.AP.745966_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.92, 39] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NJ_McGuire.AFB.724096_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.7, 40.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NJ_McGuire.AFB.724096_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.6, 40.02] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NJ_Millville.Muni.AP.724075_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.08, 39.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NJ_Newark.725020_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.17, 40.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NJ_Newark.Intl.AP.725020_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.17, 40.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NJ_Newark.Intl.AP.725020_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.18, 40.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NJ_Teterboro.AP.725025_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.07, 40.85] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NJ_Trenton-Mercer.County.AP.724095_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.82, 40.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NM_Albuquerque.723650_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-106.62, 35.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NM_Albuquerque.Intl.AP.723650_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-106.62, 35.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NM_Albuquerque.Intl.AP.723650_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-106.62, 35.04] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NM_Carlsbad.Cavern.City.Air.Terminal.722687_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-104.27, 32.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NM_Clayton.Muni.AP.723600_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-103.15, 36.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NM_Clayton.Muni.AP.723600_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-103.15, 36.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NM_Clovis-Cannon.AFB.722686_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-103.32, 34.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NM_Clovis.Muni.AWOS.722689_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-103.08, 34.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NM_Deming.Muni.AP.722725_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-107.72, 32.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NM_Farmington-Four.Corners.Rgnl.AP.723658_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-108.23, 36.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NM_Gallup-Sen.Clarke.Field.723627_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-108.78, 35.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NM_Holloman.AFB.747320_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-106.1, 32.85] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NM_Las.Cruces.Intl.AP.722695_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-106.92, 32.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NM_Las.Vegas-Muni.AP.723677_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-105.15, 35.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NM_Los.Alamos.723654_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-106.28, 35.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NM_Roswell.Industrial.Air.Park.722680_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-104.53, 33.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NM_Roswell.Industrial.Air.Park.722680_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-104.53, 33.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NM_Ruidoso-Sierra.Blanca.Rgnl.AP.722683_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-105.53, 33.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NM_Santa.Fe.County.Muni.AP.723656_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-106.08, 35.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NM_Taos.Muni.AP.723663_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-105.67, 36.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NM_Truth.or.Consequences.Muni.AP.722710_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-107.25, 33.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NM_Truth.or.Consequences.Muni.AP.722710_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-107.27, 33.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NM_Tucumcari.723676_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-103.6, 35.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NM_Tucumcari.AP.723676_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-103.6, 35.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NM_Tucumcari.AP.723676_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-103.6, 35.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NV_Elko.725825_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-115.78, 40.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NV_Elko.Muni.AP.725825_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-115.78, 40.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NV_Elko.Muni.AP.725825_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-115.8, 40.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NV_Ely-Yelland.Field.724860_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-114.85, 39.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NV_Ely-Yelland.Field.724860_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-114.85, 39.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NV_Ely.724860_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-114.85, 39.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NV_Fallon.NAS.724885_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-118.72, 39.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-115.17, 36.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-115.15, 36.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NV_Las.Vegas.723860_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-115.17, 36.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NV_Lovelock-Derby.Field.725805_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-118.55, 40.06] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NV_Lovelock-Derby.Field.725805_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-118.55, 40.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NV_Mercury-Desert.Rock.AP.723870_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-116.02, 36.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NV_Nellis.AFB.723865_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-115.03, 36.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NV_Reno-Tahoe.Intl.AP.724880_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-119.78, 39.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NV_Reno-Tahoe.Intl.AP.724880_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-119.77, 39.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NV_Reno.724880_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-119.78, 39.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NV_Tonopah.724855_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.13, 38.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NV_Tonopah.AP.724855_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.08, 38.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NV_Tonopah.AP.724855_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.08, 38.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NV_Winnemucca.725830_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.8, 40.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NV_Winnemucca.Muni.AP.725830_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.8, 40.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NV_Winnemucca.Muni.AP.725830_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.8, 40.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NV_Yucca.Flats.723850_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-116.05, 36.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_Albany.725180_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-73.8, 42.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_Albany.County.AP.725180_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-73.8, 42.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_Albany.County.AP.725180_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-73.8, 42.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_Binghamton-Edwin.A.Link.Field.725150_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.98, 42.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_Binghamton-Edwin.A.Link.Field.725150_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.98, 42.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_Binghamton.725150_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.98, 42.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-78.73, 42.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-78.73, 42.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_Buffalo.725280_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-78.73, 42.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_Elmira.Rgnl.AP.725156_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.9, 42.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_Fort.Drum-Wheeler.Sack.AAF.743700_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.72, 44.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_Glens.Falls-Bennett.Mem.AP.725185_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-73.62, 43.35] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_Islip-Long.Island.MacArthur.AP.725035_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-73.1, 40.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_Jamestown.AWOS.725235_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.27, 42.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_Massena.726223_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.85, 44.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_Massena.AP.726223_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.85, 44.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_Massena.AP.726223_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.85, 44.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_Monticello.AWOS.725145_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.8, 41.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_New.York-Central.Park.725033_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-73.97, 40.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_New.York-J.F.Kennedy.Intl.AP.744860_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-73.8, 40.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_New.York-LaGuardia.AP.725030_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-73.88, 40.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_New.York-LaGuardia.AP.725030_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-73.88, 40.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_New.York.City-Central.Park.744860_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-73.97, 40.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_New.York.City-Central.Park.94728_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-73.96, 40.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_Newburgh-Stewart.Intl.AP.725038_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.1, 41.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_Niagara.Falls.Intl.AP.725287_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-78.95, 43.1] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_Poughkeepsie-Dutchess.County.AP.725036_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-73.88, 41.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_Republic.AP.744864_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-73.42, 40.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_Rochester-Greater.Rochester.Intl.AP.725290_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.67, 43.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_Rochester-Greater.Rochester.Intl.AP.725290_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.68, 43.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_Rochester.725290_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.67, 43.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_Saranac.Lake-Adirondack.Rgnl.AP.726228_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.2, 44.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_Syracuse-Hancock.Intl.AP.725190_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.12, 43.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_Syracuse-Hancock.Intl.AP.725190_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.1, 43.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_Syracuse.725190_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.12, 43.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_Utica-Oneida.County.AP.725197_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.38, 43.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_Watertown.AP.726227_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.02, 44] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_Westhampton-Suffolk.County.AP.744865_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.63, 40.85] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_NY_White.Plains-Westchester.County.AP.725037_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-73.72, 41.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OH_Akron.725210_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.43, 40.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OH_Akron.Canton.Rgnl.AP.725210_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.43, 40.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OH_Akron.Canton.Rgnl.AP.725210_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.43, 40.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OH_Cincinnati.Muni.AP-Lunken.Field.724297_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.42, 39.1] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OH_Cleveland-Burke.Lakefront.AP.725245_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.68, 41.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OH_Cleveland-Hopkins.Intl.AP.725240_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.85, 41.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OH_Cleveland.725240_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.85, 41.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OH_Columbus-Port.Columbus.Intl.AP.724280_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.88, 40] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OH_Columbus-Port.Columbus.Intl.AP.724280_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.88, 39.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OH_Columbus.724280_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.88, 40] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OH_Dayton-Wright.Patterson.AFB.745700_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.05, 39.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OH_Dayton-Wright.Patterson.AFB.745700_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.05, 39.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OH_Dayton.745700_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.22, 39.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OH_Dayton.Intl.AP.724290_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.22, 39.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OH_Findlay.AP.725366_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.67, 41.02] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OH_Mansfield-Lahm.Muni.AP.725246_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.52, 40.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OH_Mansfield.725246_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.52, 40.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OH_Ohio.State.University.AP.724288_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.07, 40.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OH_Toledo.725360_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.8, 41.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OH_Toledo.Express.AP.725360_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.8, 41.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OH_Toledo.Express.AP.725360_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.8, 41.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OH_Youngstown.725250_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.67, 41.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OH_Youngstown.Rgnl.AP.725250_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.67, 41.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OH_Youngstown.Rgnl.AP.725250_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.67, 41.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OH_Zanesville.Muni.AP.724286_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.9, 39.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OK_Altus.AFB.723520_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-99.27, 34.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OK_Bartlesville-Phillips.Field.723565_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.02, 36.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OK_Clinton.Sherman.AP.723526_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-99.2, 35.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OK_Fort.Sill-Henry.Post.AAF.723550_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-98.4, 34.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OK_Gage.AP.723527_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-99.77, 36.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OK_Hobart.Muni.AP.723525_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-99.05, 35] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OK_Lawton.Muni.AP.723575_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-98.42, 34.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OK_McAlester.Rgnl.AP.723566_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.78, 34.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OK_Oklahoma.City-Tinker.AFB.723540_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.38, 35.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OK_Oklahoma.City-Wiley.Post.Field.723544_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.65, 35.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OK_Oklahoma.City-Will.Rogers.World.AP.723530_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.6, 35.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OK_Oklahoma.City-Will.Rogers.World.AP.723530_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.6, 35.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OK_Oklahoma.City.723530_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.6, 35.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OK_Ponca.City.Muni.AP.723546_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.49, 36.61] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OK_Stillwater.Rgnl.AP.723545_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.08, 36.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OK_Tulsa.723560_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.9, 36.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OK_Tulsa.Intl.AP.723560_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.9, 36.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OK_Tulsa.Intl.AP.723560_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.88, 36.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OK_Vance.AFB.723535_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.92, 36.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OR_Astoria.727910_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-123.88, 46.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OR_Astoria.Rgnl.AP.727910_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-123.88, 46.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OR_Astoria.Rgnl.AP.727910_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-123.88, 46.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OR_Aurora.State.AP.726959_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.77, 45.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OR_Baker.Muni.AP.726886_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.82, 44.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OR_Burns.726830_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-119.05, 43.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OR_Burns.Muni.AP.726830_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-119.02, 43.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OR_Corvallis.Muni.AP.726945_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-123.28, 44.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OR_Eugene-Mahlon.Sweet.AP.726930_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-123.07, 44.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OR_Eugene.726930_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-123.22, 44.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OR_Klamath.Falls.Intl.AP.725895_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-121.74, 42.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OR_La.Grande.Muni.AP.726884_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-118, 45.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OR_Lakeview.AWOS.725976_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-120.4, 42.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OR_Medford-Rogue.Valley.Intl.AP.725970_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.87, 42.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OR_Medford-Rogue.Valley.Intl.AP.725970_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.7, 42.19] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OR_Medford.725970_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.87, 42.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OR_North.Bend.726917_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-124.25, 43.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OR_North.Bend.Muni.AP.726917_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-124.25, 43.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OR_North.Bend.Muni.AP.726917_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-124.25, 43.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OR_Pendleton-Eastern.Oregon.Rgnl.AP.726880_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-118.83, 45.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OR_Pendleton.726880_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-118.85, 45.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OR_Portland-Hillsboro.AP.726986_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.95, 45.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OR_Portland-Troutdale.AP.726985_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.4, 45.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OR_Portland.726980_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.6, 45.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OR_Portland.Intl.AP.726980_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.6, 45.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OR_Portland.Intl.AP.726980_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.62, 45.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OR_Redmond-Roberts.Field.726835_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-121.15, 44.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OR_Redmond-Roberts.Field.726835_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-121.17, 44.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OR_Redmond.726835_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-121.15, 44.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OR_Roseburg.Rgnl.AP.726904_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-123.35, 43.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OR_Salem-McNary.Field.726940_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-123, 44.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OR_Salem-McNary.Field.726940_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-123, 44.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OR_Salem.726940_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-123.02, 44.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_OR_Sexton.Summit.725975_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-123.37, 42.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_PA_Allentown-Lehigh.Valley.Intl.AP.725170_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.43, 40.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_PA_Allentown-Lehigh.Valley.Intl.AP.725170_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.45, 40.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_PA_Allentown.725170_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.43, 40.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_PA_Altoona-Blair.County.AP.725126_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-78.32, 40.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_PA_Bradford.725266_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-78.63, 41.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_PA_Bradford.Rgnl.AP.725266_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-78.63, 41.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_PA_Butler.County.AWOS.725124_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.95, 40.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_PA_DuBois-Jefferson.County.AP.725125_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-78.9, 41.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_PA_Erie.725260_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.18, 42.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_PA_Erie.Intl.AP.725260_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.18, 42.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_PA_Erie.Intl.AP.725260_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.18, 42.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_PA_Franklin-Chess.Lemberton.AP.725267_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.87, 41.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_PA_Harrisburg-Capital.City.AP.725118_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.77, 40.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_PA_Harrisburg-Capital.City.AP.725118_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.85, 40.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_PA_Harrisburg.725115_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.85, 40.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_PA_Harrisburg.Intl.AP.725115_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.77, 40.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_PA_Johnstown-Cambria.County.AP.725127_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-78.83, 40.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_PA_Lancaster.AP.725116_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.3, 40.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_PA_Philadelphia-NE.Philadelphia.AP.724085_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.02, 40.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_PA_Philadelphia.724086_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.25, 39.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_PA_Philadelphia.Intl.AP.724080_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.15, 40.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_PA_Philadelphia.Intl.AP.724080_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.23, 39.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_PA_Pittsburgh-Allegheny.County.AP.725205_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.92, 40.35] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_PA_Pittsburgh.725200_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.22, 40.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_PA_Pittsburgh.Intl.AP.725200_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.22, 40.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_PA_Pittsburgh.Intl.AP.725200_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.23, 40.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_PA_Reading.Mem.AP-Spaatz.Field.725103_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.97, 40.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_PA_State.College-Penn.State.University.725128_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.93, 40.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_PA_Washington.AWOS.725117_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.28, 40.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_PA_Wilkes-Barre-Scranton.Intl.AP.725130_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.73, 41.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_PA_Wilkes-Barre-Scranton.Intl.AP.725130_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.73, 41.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_PA_Wilkes.Barre-Scranton.725130_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.73, 41.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_PA_Williamsport.725140_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.05, 41.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_PA_Williamsport.Rgnl.AP.725140_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.92, 41.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_PA_Willow.Grove.NAS.724086_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.15, 40.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_RI_Block.Island.State.AP.725058_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.58, 41.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_RI_Pawtucket.AWOS.725054_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.5, 41.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_RI_Providence-T.F.Green.State.AP.725070_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.43, 41.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_RI_Providence-T.F.Green.State.AP.725070_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.43, 41.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_RI_Providence.725070_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.43, 41.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_SC_Anderson.County.AP.723125_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.72, 34.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_SC_Beaufort.MCAS.722085_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.72, 32.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_SC_Charleston.722080_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.03, 32.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_SC_Charleston.Intl.AP.722080_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.03, 32.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_SC_Charleston.Intl.AP.722080_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.03, 32.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_SC_Columbia.723100_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.12, 33.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_SC_Columbia.Metro.AP.723100_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.12, 33.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_SC_Columbia.Metro.AP.723100_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.12, 33.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_SC_Florence.Rgnl.AP.723106_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.73, 34.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_SC_Greenville-Downtown.AP.723119_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.35, 34.85] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_SC_Greenville-Spartanburg.723120_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.22, 34.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_SC_Greer.Greenville-Spartanburg.AP.723120_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.22, 34.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_SC_Greer.Greenville-Spartanburg.AP.723120_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.22, 34.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_SC_Myrtle.Beach.AFB.747910_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-78.93, 33.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_SC_North.Myrtle.Beach-Grand.Strand.Field.747915_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-78.72, 33.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_SC_Shaw.AFB.747900_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.47, 33.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_SD_Aberdeen.Rgnl.AP.726590_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-98.42, 45.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_SD_Brookings.AWOS.726515_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.82, 44.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_SD_Ellsworth.AFB.726625_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-103.1, 44.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_SD_Huron.726540_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-98.22, 44.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_SD_Huron.Rgnl.AP.726540_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-98.22, 44.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_SD_Huron.Rgnl.AP.726540_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-98.22, 44.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_SD_Mitchell.AWOS.726545_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-98.03, 43.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_SD_Mobridge.Muni.AP.726685_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-100.43, 45.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_SD_Pierre.726686_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-100.28, 44.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_SD_Pierre.Muni.AP.726686_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-100.28, 44.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_SD_Pierre.Muni.AP.726686_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-100.28, 44.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_SD_Rapid.City.726620_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-103.07, 44.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_SD_Rapid.City.Rgnl.AP.726620_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-103.07, 44.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_SD_Rapid.City.Rgnl.AP.726620_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-103.05, 44.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_SD_Sioux.Falls-Foss.Field.726510_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.73, 43.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_SD_Sioux.Falls-Foss.Field.726510_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.75, 43.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_SD_Sioux.Falls.726510_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.73, 43.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_SD_Watertown.Muni.AP.726546_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.15, 44.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_SD_Yankton-Chan.Gurney.Muni.AP.726525_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.38, 42.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TN_Bristol-TriCities.Rgnl.AP.723183_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.4, 36.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TN_Bristol.723183_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.4, 36.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TN_Chattanooga-Lovell.Field.AP.723240_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-85.2, 35.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TN_Chattanooga-Lovell.Field.AP.723240_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-85.2, 35.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TN_Chattanooga.723240_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-85.2, 35.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TN_Crossville.Mem.AP.723265_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-85.08, 35.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TN_Dyersburg.Muni.AP.723347_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.4, 36.02] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TN_Jackson-McKellar.Sipes.Rgnl.AP.723346_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.92, 35.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TN_Knoxville-McGhee.Tyson.AP.723260_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.98, 35.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TN_Knoxville-McGhee.Tyson.AP.723260_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.98, 35.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TN_Knoxville.723260_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.98, 35.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TN_Memphis.723340_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.98, 35.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TN_Memphis.Intl.AP.723340_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-90, 35.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TN_Memphis.Intl.AP.723340_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.98, 35.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TN_Nashville.723270_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.68, 36.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TN_Nashville.Intl.AP.723270_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.68, 36.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TN_Nashville.Intl.AP.723270_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.68, 36.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Abilene-Dyess.AFB.690190_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-99.85, 32.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Abilene.722660_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-99.68, 32.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Abilene.Rgnl.AP.722660_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-99.68, 32.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Abilene.Rgnl.AP.722660_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-99.71, 32.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Alice.Intl.AP.722517_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-98.03, 27.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Amarillo.723630_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-101.7, 35.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Amarillo.Intl.AP.723630_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-101.7, 35.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Amarillo.Intl.AP.723630_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-101.9, 34.99] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Austin-Camp.Mabry.722544_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.77, 30.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Austin-Mueller.Muni.AP.722540_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.7, 30.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Austin-Mueller.Muni.AP.722540_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.74, 30.29] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Austin.722540_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.7, 30.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Beaumont-Port.Arthur.722410_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.02, 29.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Brownsville-South.Padre.Island.AP.722500_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.43, 25.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Brownsville-South.Padre.Island.AP.722500_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.43, 25.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Brownsville.722500_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.43, 25.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Childress.Muni.AP.723604_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-100.28, 34.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_College.Station-Easterwood.Field.722445_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.37, 30.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Corpus.Christi.722510_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.5, 27.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Corpus.Christi.Intl.AP.722510_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.5, 27.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Corpus.Christi.Intl.AP.722510_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.63, 27.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Corpus.Christi.NAS.722515_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.28, 27.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Cotulla.AP.722526_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-99.22, 28.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Cox.Field.722587_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.45, 33.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Dalhart.Muni.AP.722636_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-102.55, 36.02] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Dallas-Addison.AP.722598_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.83, 32.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.02, 32.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Dallas-Love.Field.722583_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.85, 32.85] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Dallas-Redbird.AP.722599_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.87, 32.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Del.Rio-Laughlin.AFB.722615_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-100.78, 29.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Del.Rio.722610_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-100.78, 29.36] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Del.Rio.722610_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-100.91, 29.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Draughon-Miller.Central.Texas.AP.722577_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.4, 31.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_El.Paso.722700_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-106.4, 31.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_El.Paso.Intl.AP.722700_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-106.4, 31.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_El.Paso.Intl.AP.722700_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-106.5, 31.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Fort.Hood.722570_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.72, 31.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Fort.Worth-Alliance.AP.722594_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.32, 32.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Fort.Worth-Meacham.AP.722596_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.37, 32.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Fort.Worth-Stephenville-Clark.Field.722600_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.37, 32.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Fort.Worth.722596_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.05, 32.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Fort.Worth.NAS.722595_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.45, 32.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Galveston.722420_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.8, 29.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Georgetown.AWOS.722547_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.68, 30.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Greenville.Muni.AP.722588_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.07, 33.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Harlingen-Valley.Intl.AP.722505_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.65, 26.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Hondo.Muni.AP.722533_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-99.17, 29.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Houston-Bush.Intercontinental.AP.722430_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.35, 29.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Houston-Bush.Intercontinental.AP.722430_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.37, 30] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Houston-D.W.Hooks.AP.722429_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.55, 30.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Houston-Ellington.AFB.722436_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.09, 29.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Houston-Intercontinental.722430_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.37, 29.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Houston-William.P.Hobby.AP.722435_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.28, 29.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Killeen-Fort.Hood.Rgnl.AP.722576_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.83, 31.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Killeen.Muni.AWOS.722575_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.68, 31.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Kingsville.722516_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.82, 27.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Kingsville.722516_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.82, 27.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Laredo.Intl.AP.722520_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-99.46, 27.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Laredo.Intl.AP.722520_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-99.49, 27.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Longview-Gregg.County.AP.722470_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.98, 32.29] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Lubbock.722670_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-101.82, 33.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Lubbock.Intl.AP.722670_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-101.82, 33.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Lubbock.Intl.AP.722670_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-101.82, 33.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Lufkin-Angelina.Co.AP.722446_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.75, 31.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Lufkin-Angelina.Co.AP.722446_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.75, 31.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Lufkin.722446_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.75, 31.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Marfa.AP.722640_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-104.02, 30.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_McAllen-Miller.Intl.AP.722506_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-98.17, 26.31] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_McGregor.AWOS.722563_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.32, 31.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Midland-Odessa.722650_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-102.2, 31.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Midland.Intl.AP.722650_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-102.18, 31.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Midland.Intl.AP.722650_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-102.18, 31.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Mineral.Wells.Muni.AP.722597_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-98.07, 32.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Nacogdoches.AWOS.722499_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.72, 31.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Palacios.Muni.AP.722555_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.25, 28.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Port.Arthur-Jefferson.Co.AP.722410_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.02, 29.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Port.Arthur-Jefferson.Co.AP.722410_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.02, 29.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Randolph.AFB.722536_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-98.28, 29.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Rockport-Aransas.Co.AP.722524_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.05, 28.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_San.Angelo-Mathis.AP.722630_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-100.5, 31.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_San.Angelo-Mathis.AP.722630_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-100.5, 31.35] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_San.Angelo.722630_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-100.5, 31.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_San.Antonio-Kelly.AFB.722535_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-98.58, 29.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_San.Antonio-Stinson.AP.722523_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-98.47, 29.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_San.Antonio.722536_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-98.47, 29.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_San.Antonio.Intl.AP.722530_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-98.28, 29.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_San.Antonio.Intl.AP.722530_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-98.47, 29.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Sherman-Perrin.AFB.722541_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.67, 33.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Tyler-Pounds.Field.722448_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.4, 32.35] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Victoria.722550_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.92, 28.85] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Victoria.Rgnl.AP.722550_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.93, 28.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Waco.722560_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.22, 31.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Waco.Rgnl.AP.722560_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.22, 31.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Waco.Rgnl.AP.722560_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.23, 31.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Wichita.Falls.723510_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-98.48, 33.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Wichita.Falls.Muni.AP.723510_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-98.5, 33.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Wichita.Falls.Muni.AP.723510_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-98.5, 33.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_TX_Wink-Winkler.County.AP.722656_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-103.2, 31.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_UT_Blanding.Muni.AP.724723_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-109.48, 37.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_UT_Bryce.Canyon.AP.724756_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-112.15, 37.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_UT_Bryce.Canyon.AP.724756_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-112.15, 37.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_UT_Cedar.City.724755_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-113.1, 37.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_UT_Cedar.City.Muni.AP.724755_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-113.1, 37.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_UT_Cedar.City.Muni.AP.724755_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-113.1, 37.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_UT_Delta.Muni.AP.724795_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-112.58, 39.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_UT_Hanksville.AP.724735_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-110.72, 38.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_UT_Moab-Canyonlands.Field.724776_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-109.54, 38.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_UT_Ogden-Hill.AFB.725755_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-111.97, 41.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_UT_Ogden-Hinkley.AP.725750_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-112.02, 41.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_UT_Provo.Muni.AWOS.725724_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-111.72, 40.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_UT_Saint.George.AWOS.724754_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-113.6, 37.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_UT_Salt.Lake.City.725720_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-111.97, 40.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_UT_Salt.Lake.City.Intl.AP.725720_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-111.97, 40.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_UT_Salt.Lake.City.Intl.AP.725720_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-111.97, 40.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_UT_Vernal.AP.725705_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-109.52, 40.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_UT_Wendover.USAF.Auxiliary.Field.725810_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-114.03, 40.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Abingdon-Virgina.Highlands.AP.724058_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.03, 36.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Arlington-Ronald.Reagan.Washington.Natl.AP.724050_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.03, 38.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Blacksburg-Virginia.Tech.AP.724113_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.42, 37.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Charlottesville-Albemarle.County.AP.724016_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-78.45, 38.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Danville.Rgnl.AP.724106_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.33, 36.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Davison.AAF.724037_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.18, 38.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Farmville.Muni.AP.724017_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-78.43, 37.35] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Franklin.Muni.AP.723083_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.9, 36.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Fredericksburg-Shannon.AP.724033_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.45, 38.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Hillsville-Twin.County.AP.724107_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.82, 36.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Hot.Springs-Ingalls.Field.724115_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.83, 37.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Langley.AFB.745980_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.35, 37.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Leesburg.Muni.AP-Godfrey.Field.724055_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.57, 39.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Lynchburg.724100_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.2, 37.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Lynchburg.Rgnl.AP-Preston.Glen.Field.724100_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.2, 37.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Manassas.Muni.AWOS.724036_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.52, 38.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Marion-Wytheville-Mountain.Empire.AP.724056_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.35, 36.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Martinsville-Blue.Ridge.AP.745985_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.02, 36.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Melfa-Accomack.County.AP.724026_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.77, 37.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Newport.News.723086_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.5, 37.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Norfolk.723080_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.2, 36.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Norfolk.Intl.AP.723080_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.2, 36.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Norfolk.Intl.AP.723080_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.2, 36.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Norfolk.NAS.723085_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.28, 36.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Oceana.NAS.723075_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.03, 36.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Petersburg.Muni.AP.724014_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.52, 37.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Pulaski-New.River.Valley.AP.724116_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.68, 37.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Quantico.MCAS.724035_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.3, 38.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Richmond.724010_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.33, 37.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Richmond.Intl.AP.724010_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.33, 37.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Richmond.Intl.AP.724010_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.32, 37.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Roanoke.724110_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.97, 37.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Roanoke.Rgnl.AP-Woodrum.Field.724110_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.97, 37.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Roanoke.Rgnl.AP-Woodrum.Field.724110_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.97, 37.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Staunton-Shenandoah.Valley.Rgnl.AP.724105_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-78.9, 38.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Sterling-Washington.Dulles.724030_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.45, 38.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Sterling-Washington.Dulles.Intl.AP.724030_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.45, 38.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Sterling-Washington.Dulles.Intl.AP.724030_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.47, 38.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Winchester.Rgnl.AP.724053_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-78.15, 39.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VA_Wise-Lonesome.Pine.AP.724117_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.53, 36.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VT_Burlington.726170_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-73.15, 44.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VT_Burlington.Intl.AP.726170_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-73.15, 44.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VT_Burlington.Intl.AP.726170_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-73.15, 44.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VT_Montpelier.AP.726145_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.57, 44.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VT_Rutland.State.AP.725165_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.95, 43.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_VT_Springfield-Hartnes.State.AP.726115_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.52, 43.35] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Bellingham.Intl.AP.727976_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.53, 48.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Bremerton.National.AP.727928_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.75, 47.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Ephrata.Muni.AP.727826_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-119.52, 47.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Fairchild.AFB.727855_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.65, 47.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Fort.Lewis-Gray.AAF.742070_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.58, 47.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Hanford.727840_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-119.6, 46.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Hoquiam.AP.727923_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-123.93, 46.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Kelso.AP.727924_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.9, 46.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Moses.Lake-Grant.County.AP.727827_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-119.32, 47.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Olympia.727920_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.9, 46.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Olympia.AP.727920_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.9, 46.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Olympia.AP.727920_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.9, 46.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Pasco-Tri.Cities.AP.727845_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-119.12, 46.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Port.Angeles-William.R.Fairchild.Intl.AP.727885_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-123.5, 48.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Pullman-Moscow.Rgnl.AP.727857_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.12, 46.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Quillayute.727970_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-124.55, 47.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Quillayute.State.AP.727970_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-124.57, 47.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Renton.Muni.AP.727934_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.22, 47.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Seattle-Boeing.Field.727935_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.25, 47.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Seattle-Tacoma.727930_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.3, 47.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Seattle-Tacoma.Intl.AP.727930_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.3, 47.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Seattle-Tacoma.Intl.AP.727930_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.32, 47.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Snohomish.County.AP.727937_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.28, 47.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Spokane-Felts.Field.727856_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.32, 47.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Spokane.727855_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.53, 47.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Spokane.Intl.AP.727850_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.65, 47.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Spokane.Intl.AP.727850_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.59, 47.49] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Stampede.Pass.727815_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-121.33, 47.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Tacoma-McChord.AFB.742060_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.48, 47.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Tacoma.Narrows.AP.727938_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.58, 47.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_The.Dalles.Muni.AP.726988_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-121.15, 45.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Toledo-Winlock-Ed.Carlson.Mem.AP.727926_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.8, 46.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Walla.Walla.City-County.AP.727846_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-118.28, 46.1] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Wenatchee-Pangborn.Mem.AP.727825_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-120.2, 47.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Whidbey.Island.NAS.690230_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.66, 48.35] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Whidbey.Island.NAS.690230_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.67, 48.35] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Yakima.727810_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-120.53, 46.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Yakima.Air.Terminal-McAllister.Field.727810_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-120.53, 46.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WA_Yakima.Air.Terminal-McAllister.Field.727810_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-120.55, 46.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WI_Appleton-Outagamie.County.AP.726457_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.52, 44.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WI_Eau.Claire.726435_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.48, 44.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WI_Eau.Claire.County.AP.726435_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.48, 44.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WI_Eau.Claire.County.AP.726435_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.48, 44.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WI_Ephraim.AWOS.726626_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.15, 45.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WI_Green.Bay-Austin.Straubel.Intl.AP.726450_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.13, 44.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WI_Green.Bay-Austin.Straubel.Intl.AP.726450_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.13, 44.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WI_Green.Bay.726450_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.13, 44.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WI_Janesville-Rock.County.AP.726415_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.03, 42.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WI_La.Crosse.726430_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.25, 43.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WI_La.Crosse.Muni.AP.726430_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.25, 43.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WI_La.Crosse.Muni.AP.726430_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.25, 43.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WI_Lone.Rock.AP.726416_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.18, 43.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WI_Madison-Dane.County.Rgnl.AP.726410_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.33, 43.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WI_Madison-Dane.County.Rgnl.AP.726410_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.33, 43.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WI_Madison.726410_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.33, 43.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WI_Manitowac.Muni.AWOS.726455_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.68, 44.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WI_Marshfield.Muni.AP.726574_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.18, 44.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WI_Milwaukee-Mitchell.Intl.AP.726400_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.9, 42.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WI_Milwaukee-Mitchell.Intl.AP.726400_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.9, 42.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WI_Milwaukee.726400_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.9, 42.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WI_Minocqua-Woodruff-Lee.Field.726404_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.73, 45.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WI_Mosinee-Central.Wisconsin.AP.726465_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.67, 44.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WI_Phillips-Price.County.AP.726468_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.4, 45.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WI_Rhinelander-Oneida.County.AP.727415_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.47, 45.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WI_Rice.Lake.Muni.AP.726467_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.72, 45.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WI_Sturgeon.Bay-Door.County.AP.726458_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.42, 44.85] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WI_Watertown.Muni.AP.726464_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.72, 43.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WI_Wausau.Muni.AP.726463_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.63, 44.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WI_Wittman.Rgnl.AP.726456_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.55, 43.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WV_Beckley-Raleigh.County.Mem.AP.724120_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.12, 37.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WV_Bluefield-Mercer.County.AP.724125_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.24, 37.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WV_Charleston-Yeager.AP.724140_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.6, 38.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WV_Charleston-Yeager.AP.724140_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.58, 38.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WV_Charleston.724140_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.6, 38.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WV_Clarksburg-Harrison.Marion.Rgnl.AP.724175_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.23, 39.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WV_Elkins-Randolph.County.AP.724170_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.85, 38.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WV_Elkins.724170_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.85, 38.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WV_Huntington-Tri.State.Walker.Long.Field.724250_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.55, 38.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WV_Huntington.724250_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.55, 38.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WV_Lewisburg-Greenbrier.Valley.AP.724127_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.4, 37.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WV_Martinsburg-Eastern.WV.Rgnl.AP.724177_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.98, 39.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WV_Morgantown.Muni-Hart.Field.724176_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.92, 39.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WV_Parkersburg-Wood.County-Gill.Robb.Wilson.AP.724273_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.43, 39.35] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WV_Wheeling-Ohio.County.AP.724275_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.65, 40.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WY_Casper-Natrona.County.Intl.AP.725690_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-106.47, 42.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WY_Casper-Natrona.County.Intl.AP.725690_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-106.47, 42.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WY_Casper.725690_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-106.47, 42.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WY_Cheyenne.725640_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-104.82, 41.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WY_Cheyenne.Muni.AP.725640_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-104.82, 41.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WY_Cheyenne.Muni.AP.725640_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-104.8, 41.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WY_Cody.Muni.AWOS.726700_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-109.02, 44.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WY_Evanston-Uinta.County.AP-Burns.Field.725775_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-111.03, 41.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WY_Gillette-Gillette.County.AP.726650_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-105.53, 44.35] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WY_Green.River-Greater.Green.River.Intergalactic.Spaceport.725744_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-109.07, 41.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WY_Green.River-Greater.Green.River.Intergalactic.Spaceport.725744_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-109.44, 41.46] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WY_Jackson.Hole.AP.725776_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-110.73, 43.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WY_Lander-Hunt.Field.725760_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-108.73, 42.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WY_Lander.725760_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-108.73, 42.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WY_Laramie-General.Brees.Field.725645_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-105.68, 41.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WY_Rawlins.Muni.AP.725745_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-107.2, 41.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WY_Riverton.Rgnl.AP.725765_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-108.45, 43.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WY_Rock.Springs.725744_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-109.07, 41.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WY_Sheridan.726660_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-106.97, 44.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WY_Sheridan.County.AP.726660_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-106.97, 44.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WY_Sheridan.County.AP.726660_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-106.97, 44.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "USA_WY_Worland.Muni.AP.726665_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "mos": "Download Modelica Weather File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-107.95, 43.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "VIR_Charlotte.Amalie-Harry.S.Truman.AP.785430_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.97, 18.35] + } + }, + { + "type": "Feature", + "properties": { + "title": "ARG_Buenos.Aires.875760_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.53, -34.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "Resistencia Intl AP_Chaco_ARG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-59.05, -27.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "Saenz Peña AP_Chaco_ARG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-60.45, -26.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "Corrientes Intl AP_Corrientes_ARG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.77, -27.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "Monte Caseros AP_Corrientes_ARG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-57.65, -30.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "Paso de los Libres Intl AP_Corrientes_AR", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-57.15, -29.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "Concordia_Entre Rios_ARG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.02, -31.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "Gualeguaychu AP_Entre Rios_ARG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.62, -33] + } + }, + { + "type": "Feature", + "properties": { + "title": "Parana AP_Entre Rios_ARG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-60.48, -31.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "Formosa Intl AP_Formosa_ARG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.23, -26.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "Posadas_Misiones_ARG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-55.97, -27.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "Puerto Iguazu Intl AP_Misiones_ARG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-54.47, -25.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "Ceres_Santa Fe_ARG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.95, -29.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "Reconquista AP_Santa Fe_ARG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-59.7, -29.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "Rosario Intl AP_Santa Fe_ARG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-60.78, -32.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "Sauce Viejo AP_Santa Fe_ARG", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-60.82, -31.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "BOL_La.Paz.852010_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-68.18, -16.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "Estação Comandante Ferraz_..._ATA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.38, -62.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "Feijó AP_AC_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.34, -8.14] + } + }, + { + "type": "Feature", + "properties": { + "title": "Parque Estadual Chandless_AC_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-69.93, -9.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "Porto Walter_AC_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.74, -8.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "Rio Branco_AC_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-68.17, -9.96] + } + }, + { + "type": "Feature", + "properties": { + "title": "Arapiraca AP_AL_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-36.62, -9.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "Coruripe_AL_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-36.29, -10.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "Maceió-Palmares Intl AP_AL_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-35.78, -9.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "Maceió_AL_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-35.74, -9.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "Palmeira dos Índios_AL_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-36.63, -9.41] + } + }, + { + "type": "Feature", + "properties": { + "title": "Pão de Açúcar_AL_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-37.44, -9.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "São Luís do Quitunde_AL_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-35.57, -9.29] + } + }, + { + "type": "Feature", + "properties": { + "title": "Autazes_AM_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-59.13, -3.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "Barcelos AP_AM_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-62.92, -0.99] + } + }, + { + "type": "Feature", + "properties": { + "title": "Coari_AM_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-63.15, -4.1] + } + }, + { + "type": "Feature", + "properties": { + "title": "Humaitá AP_AM_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-63.07, -7.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "Itacoatiara AP_AM_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.48, -3.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "Manacapuru_AM_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-60.63, -3.29] + } + }, + { + "type": "Feature", + "properties": { + "title": "Manaus-Gomes Intl AP_AM_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-59.98, -3.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "Manaus-Gomez Intl AP_AM_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-60.03, -3.1] + } + }, + { + "type": "Feature", + "properties": { + "title": "Maués_AM_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-57.67, -3.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "Parintins_AM_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-56.76, -2.64] + } + }, + { + "type": "Feature", + "properties": { + "title": "Presidente Figueiredo_AM_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-60.03, -2.06] + } + }, + { + "type": "Feature", + "properties": { + "title": "Urucará AP_AM_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-57.76, -2.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "Macapá-Alcolumbre Intl AP_AP_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-51.07, 0.04] + } + }, + { + "type": "Feature", + "properties": { + "title": "Oiapoque_AP_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-51.86, 3.81] + } + }, + { + "type": "Feature", + "properties": { + "title": "Porto Grande_AP_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-51.41, 0.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "Tartarugalzinho_AP_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-50.92, 1.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "Amargosa AP_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-39.62, -13.01] + } + }, + { + "type": "Feature", + "properties": { + "title": "Barra AP_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-43.14, -11.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "Barreiras_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-44.99, -12.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "Belmonte_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-39.22, -16.09] + } + }, + { + "type": "Feature", + "properties": { + "title": "Bom Jesus da Lapa AP_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-43.42, -13.26] + } + }, + { + "type": "Feature", + "properties": { + "title": "Brumado_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-41.67, -14.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "Buritirama_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-43.65, -10.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "Caravelas_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-39.2, -17.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "Conde_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-37.62, -11.81] + } + }, + { + "type": "Feature", + "properties": { + "title": "Correntina_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-44.62, -13.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "Cruz das Almas_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-39.1, -12.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "Delfino_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-41.21, -10.46] + } + }, + { + "type": "Feature", + "properties": { + "title": "Euclides da Cunha_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-39, -10.54] + } + }, + { + "type": "Feature", + "properties": { + "title": "Feira de Santana_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-38.97, -12.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "Guanambi_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-42.75, -14.21] + } + }, + { + "type": "Feature", + "properties": { + "title": "Ibotirama_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-43.21, -12.19] + } + }, + { + "type": "Feature", + "properties": { + "title": "Ilhéus_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-39.05, -14.79] + } + }, + { + "type": "Feature", + "properties": { + "title": "Ipiaú_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-39.73, -14.14] + } + }, + { + "type": "Feature", + "properties": { + "title": "Irecê_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-41.86, -11.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "Itaberaba_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-40.31, -12.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "Itapetinga_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-40.24, -15.24] + } + }, + { + "type": "Feature", + "properties": { + "title": "Itiruçu_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-40.15, -13.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "Jacobina_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-40.47, -11.21] + } + }, + { + "type": "Feature", + "properties": { + "title": "Lençóis_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-41.39, -12.56] + } + }, + { + "type": "Feature", + "properties": { + "title": "Macajuba_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-40.36, -12.14] + } + }, + { + "type": "Feature", + "properties": { + "title": "Maraú_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-38.97, -13.91] + } + }, + { + "type": "Feature", + "properties": { + "title": "Paulo Afonso_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-38.22, -9.41] + } + }, + { + "type": "Feature", + "properties": { + "title": "Piatã_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-41.77, -13.16] + } + }, + { + "type": "Feature", + "properties": { + "title": "Porto Seguro_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-39.18, -16.39] + } + }, + { + "type": "Feature", + "properties": { + "title": "Queimadas_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-39.62, -10.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "Remanso_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-42.08, -9.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "Salvador-Magalhães Intl AP_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-38.33, -12.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "Salvador_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-38.51, -12.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "Santa Rita de Cássia_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-44.52, -11.01] + } + }, + { + "type": "Feature", + "properties": { + "title": "Senhor do Bonfim_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-40.15, -10.44] + } + }, + { + "type": "Feature", + "properties": { + "title": "Serrinha_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-39.02, -11.66] + } + }, + { + "type": "Feature", + "properties": { + "title": "Uauá_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-39.5, -9.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "Uná_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-39.09, -15.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "Valença_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-39.07, -13.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "Vitória da Conquista_BA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-40.84, -14.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "BRA_Belem-Val.de.Caes.821930_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.48, -1.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "BRA_Belem.821930_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.48, -1.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "BRA_Belo.Horizonte-Pampulha.835830_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-43.95, -19.85] + } + }, + { + "type": "Feature", + "properties": { + "title": "BRA_Boa.Vista.820220_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-60.7, 2.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "BRA_Bom.Jesus.da.Lapa.832880_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-43.42, -13.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "BRA_Brasilia.833780_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-47.93, -15.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "BRA_Brasilia.833780_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-47.93, -15.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "Acaraú_CE_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-40.09, -3.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "Barbalha_CE_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-39.27, -7.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "Campos Sales_CE_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-40.36, -7.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "Crateús_CE_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-40.67, -5.19] + } + }, + { + "type": "Feature", + "properties": { + "title": "Fortaleza_CE_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-38.53, -3.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "Fortaleza-Pinto Martins Intl_CE_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-38.53, -3.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "Guaramiranga_CE_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-38.93, -4.26] + } + }, + { + "type": "Feature", + "properties": { + "title": "Iguatu_CE_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-39.3, -6.36] + } + }, + { + "type": "Feature", + "properties": { + "title": "Itapipoca_CE_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-39.59, -3.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "Jaguaribe_CE_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-38.63, -5.91] + } + }, + { + "type": "Feature", + "properties": { + "title": "Jaguaruana_CE_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-37.78, -4.79] + } + }, + { + "type": "Feature", + "properties": { + "title": "Morada Nova_CE_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-38.37, -5.11] + } + }, + { + "type": "Feature", + "properties": { + "title": "Quixeramobim_CE_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-39.29, -5.2] + } + }, + { + "type": "Feature", + "properties": { + "title": "Tauá_CE_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-40.28, -6.02] + } + }, + { + "type": "Feature", + "properties": { + "title": "BRA_Campo.Grande.836120_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-54.67, -20.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "BRA_Cuiaba-Marechal.Ron.833620_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-56.1, -15.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "BRA_Curitiba-Afonso.Pen.838400_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-49.17, -25.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "Brasília-Kubitschek Intl AP_DF_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-47.92, -15.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "Brasilia_DF_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-47.93, -15.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "Planaltina_DF_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-47.56, -15.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "Alegre_ES_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-41.53, -20.76] + } + }, + { + "type": "Feature", + "properties": { + "title": "Alfredo Chaves_ES_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-40.75, -20.64] + } + }, + { + "type": "Feature", + "properties": { + "title": "Linhares_ES_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-40.07, -19.39] + } + }, + { + "type": "Feature", + "properties": { + "title": "Nova Venecia_ES_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-40.39, -18.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "Presidente Kennedy_ES_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-41.04, -21.1] + } + }, + { + "type": "Feature", + "properties": { + "title": "Santa Teresa_ES_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-40.58, -19.99] + } + }, + { + "type": "Feature", + "properties": { + "title": "São Mateus_ES_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-39.86, -18.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "Vitória-Salles AP_ES_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-40.28, -20.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "Vitória_ES_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-40.34, -20.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "BRA_Florianopolis.838990_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.55, -27.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "BRA_Fortaleza-Pinto.Mar.823980_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-38.53, -3.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "Alto Paraíso de Goiás_GO_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-47.51, -14.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "Aragarças_GO_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-52.25, -15.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "Caiapônia_GO_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-51.81, -16.96] + } + }, + { + "type": "Feature", + "properties": { + "title": "Catalão_GO_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-47.93, -18.16] + } + }, + { + "type": "Feature", + "properties": { + "title": "Cristalina_GO_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-47.61, -16.79] + } + }, + { + "type": "Feature", + "properties": { + "title": "Goianésia_GO_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-49.12, -15.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "Goiânia_GO_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.78, -15.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "Goiás_GO_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-50.14, -15.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "Itapaci_GO_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-49.55, -14.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "Itumbiara_GO_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-49.19, -18.41] + } + }, + { + "type": "Feature", + "properties": { + "title": "Jataí_GO_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-51.71, -17.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "Luziânia_GO_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-47.95, -16.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "Mineiros_GO_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-52.6, -17.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "Monte Alegre de Goiás_GO_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.89, -13.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "Morrinhos_GO_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-49.1, -17.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "Niquelândia_GO_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.46, -14.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "Paraúna_GO_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-50.43, -16.96] + } + }, + { + "type": "Feature", + "properties": { + "title": "Pires do Rio_GO_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.28, -17.31] + } + }, + { + "type": "Feature", + "properties": { + "title": "Posse_GO_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.37, -14.09] + } + }, + { + "type": "Feature", + "properties": { + "title": "Rio Verde_GO_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-50.93, -17.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "São Simão_GO_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-50.54, -18.99] + } + }, + { + "type": "Feature", + "properties": { + "title": "BRA_Jacareacanga.826400_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-57.73, -6.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "Alto Parnaíba_MA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-45.93, -9.11] + } + }, + { + "type": "Feature", + "properties": { + "title": "Bacabal_MA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-44.8, -4.24] + } + }, + { + "type": "Feature", + "properties": { + "title": "Balsas_MA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.03, -7.46] + } + }, + { + "type": "Feature", + "properties": { + "title": "Barra do Corda_MA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-45.24, -5.51] + } + }, + { + "type": "Feature", + "properties": { + "title": "Buriticupu_MA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.45, -4.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "Carolina_MA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-47.46, -7.34] + } + }, + { + "type": "Feature", + "properties": { + "title": "Caxias_MA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-43.34, -4.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "Chapadinha_MA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-43.35, -3.74] + } + }, + { + "type": "Feature", + "properties": { + "title": "Colinas_MA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-44.23, -6.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "Estreito_MA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-47.42, -6.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "Farol Preguiças_MA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-42.71, -2.59] + } + }, + { + "type": "Feature", + "properties": { + "title": "Farol Santana_MA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-43.62, -2.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "Grajaú_MA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.16, -5.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "Imperatriz_MA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-47.46, -5.56] + } + }, + { + "type": "Feature", + "properties": { + "title": "São Luís-Machado Intl AP_MA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-44.23, -2.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "São Luís_MA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-44.3, -2.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "Turiaçu_MA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-45.37, -1.66] + } + }, + { + "type": "Feature", + "properties": { + "title": "Águas Vermelhas_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-41.46, -15.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "Aimorés_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-41.06, -19.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "Almenara_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-40.69, -16.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "Araxá_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.94, -19.59] + } + }, + { + "type": "Feature", + "properties": { + "title": "Belo Horizonte-Pampulha AP_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-43.95, -19.85] + } + }, + { + "type": "Feature", + "properties": { + "title": "Belo Horizonte-Pampulha AP_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-43.96, -19.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "Buritis_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.42, -15.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "Caldas_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.39, -21.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "Capelinha_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-42.52, -17.69] + } + }, + { + "type": "Feature", + "properties": { + "title": "Carangola_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-42.02, -20.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "Caratinga_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-42.14, -19.79] + } + }, + { + "type": "Feature", + "properties": { + "title": "Chapada Gaúcha_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-45.62, -15.31] + } + }, + { + "type": "Feature", + "properties": { + "title": "Conceição das Alagoas_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.15, -19.99] + } + }, + { + "type": "Feature", + "properties": { + "title": "Curvelo_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-44.43, -18.76] + } + }, + { + "type": "Feature", + "properties": { + "title": "Diamantina AP_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-43.65, -18.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "Dores do Indaiá_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-45.6, -19.46] + } + }, + { + "type": "Feature", + "properties": { + "title": "Espinosa_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-42.8, -14.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "Florestal_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-44.42, -19.89] + } + }, + { + "type": "Feature", + "properties": { + "title": "Formiga_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-45.45, -20.46] + } + }, + { + "type": "Feature", + "properties": { + "title": "Governador Valadares_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-41.95, -18.85] + } + }, + { + "type": "Feature", + "properties": { + "title": "Guarda-Mor_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-47.1, -17.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "Ibirité_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-44.01, -20.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "Itaobim_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-41.29, -16.34] + } + }, + { + "type": "Feature", + "properties": { + "title": "Ituiutaba_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-49.47, -18.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "João Pinheiro AP_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.12, -17.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "Juiz de Fora_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-43.35, -21.76] + } + }, + { + "type": "Feature", + "properties": { + "title": "Mantena_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-40.98, -18.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "Maria da Fé_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-45.38, -22.31] + } + }, + { + "type": "Feature", + "properties": { + "title": "Mocambinho_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-44.02, -15.09] + } + }, + { + "type": "Feature", + "properties": { + "title": "Montalvânia_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-44.37, -14.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "Monte Verde AP_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.03, -22.86] + } + }, + { + "type": "Feature", + "properties": { + "title": "Montes Claros_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-43.86, -16.74] + } + }, + { + "type": "Feature", + "properties": { + "title": "Muriaé_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-42.37, -21.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "Ouro Branco_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-43.69, -20.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "Passa Quatro_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-44.97, -22.39] + } + }, + { + "type": "Feature", + "properties": { + "title": "Passos_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.63, -20.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "Patrocínio_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.99, -18.94] + } + }, + { + "type": "Feature", + "properties": { + "title": "Pirapora AP_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-44.94, -17.34] + } + }, + { + "type": "Feature", + "properties": { + "title": "Rio Pardo de Minas_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-42.44, -15.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "Sacramento_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-47.44, -19.86] + } + }, + { + "type": "Feature", + "properties": { + "title": "Salinas_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-42.29, -16.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "São João del Rei_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-44.26, -21.14] + } + }, + { + "type": "Feature", + "properties": { + "title": "São Romão_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-45.07, -16.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "Serra dos Aimorés_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-40.25, -17.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "Teófilo Otoni_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-41.51, -17.86] + } + }, + { + "type": "Feature", + "properties": { + "title": "Timóteo_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-42.64, -19.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "Três Marias_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-45.24, -18.21] + } + }, + { + "type": "Feature", + "properties": { + "title": "Uberlândia_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.28, -18.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "Unaí AP_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.91, -16.36] + } + }, + { + "type": "Feature", + "properties": { + "title": "Varginha_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-45.43, -21.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "Viçosa_MG_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-42.88, -20.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "Amambai_MS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-55.33, -23] + } + }, + { + "type": "Feature", + "properties": { + "title": "Campo Grande Intl AP_MS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-54.65, -20.44] + } + }, + { + "type": "Feature", + "properties": { + "title": "Chapadão do Sul_MS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-52.62, -18.79] + } + }, + { + "type": "Feature", + "properties": { + "title": "Corumbá Intl AP_MS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-57.65, -19.01] + } + }, + { + "type": "Feature", + "properties": { + "title": "Coxim_MS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-54.44, -18.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "Dourados_MS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-54.81, -22.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "Ivinhema_MS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-53.81, -22.31] + } + }, + { + "type": "Feature", + "properties": { + "title": "Juti_MS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-54.61, -22.86] + } + }, + { + "type": "Feature", + "properties": { + "title": "Miranda_MS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-56.38, -20.24] + } + }, + { + "type": "Feature", + "properties": { + "title": "Nhumirim_MS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-56.62, -18.99] + } + }, + { + "type": "Feature", + "properties": { + "title": "Ponta Porã_MS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-55.73, -22.54] + } + }, + { + "type": "Feature", + "properties": { + "title": "Porto Murtinho AP_MS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-57.88, -21.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "Rio Brilhante_MS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-54.53, -21.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "Sete Quedas_MS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-55.02, -23.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "Sidrolândia_MS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-54.97, -20.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "Três Lagoas AP_MS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-51.68, -20.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "Água Boa_MT_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-52.16, -14.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "Alto Taquari_MT_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-53.29, -17.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "Apiacás_MT_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-57.45, -9.54] + } + }, + { + "type": "Feature", + "properties": { + "title": "Campo Novo do Parecis_MT_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-57.89, -13.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "Campo Verde_MT_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-55.17, -15.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "Carlinda_MT_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-55.83, -9.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "Comodoro_MT_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-59.79, -13.66] + } + }, + { + "type": "Feature", + "properties": { + "title": "Confresa_MT_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-51.57, -10.65] + } + }, + { + "type": "Feature", + "properties": { + "title": "Cotriguaçu_MT_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.41, -9.86] + } + }, + { + "type": "Feature", + "properties": { + "title": "Cuiabá_MT_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-56, -15.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "Gaúcha do Norte_MT_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-53.26, -13.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "Guarantã do Norte_MT_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-54.91, -9.79] + } + }, + { + "type": "Feature", + "properties": { + "title": "Guiratinga_MT_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-53.77, -16.34] + } + }, + { + "type": "Feature", + "properties": { + "title": "Itiquira_MT_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-54.5, -17.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "Juara_MT_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-57.52, -11.26] + } + }, + { + "type": "Feature", + "properties": { + "title": "Juína_MT_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.74, -11.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "Nova Maringá_MT_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-57.09, -13.04] + } + }, + { + "type": "Feature", + "properties": { + "title": "Novo Mundo_MT_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.23, -12.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "Paranatinga_MT_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-54.05, -14.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "Pontes de Lacerda_MT_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-59.35, -15.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "Porto Estrela_MT_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-57.23, -15.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "Querência_MT_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-52.22, -12.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "Rondonópolis_MT_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-54.64, -16.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "Salto do Céu_MT_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.13, -15.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "Santo Antônio do Leste_MT_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-53.88, -14.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "São Félix do Araguaia_MT_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-50.73, -11.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "São José do Rio Claro_MT_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-56.72, -13.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "Sinop_MT_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-55.5, -11.86] + } + }, + { + "type": "Feature", + "properties": { + "title": "Sorriso_MT_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-55.71, -12.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "Tangará da Serra_MT_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-57.49, -14.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "Vila Bela da Santíssima Trind_MT_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-59.95, -15.01] + } + }, + { + "type": "Feature", + "properties": { + "title": "BRA_Manaus.823310_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-60.02, -3.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "Belém-Ribeiro Intl AP_PA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.48, -1.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "Belém_PA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.5, -1.46] + } + }, + { + "type": "Feature", + "properties": { + "title": "Bragança_PA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.78, -1.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "Cametá_PA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-49.49, -2.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "Castanhal_PA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-47.92, -1.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "Conceição do Araguaia_PA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-49.27, -6.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "Itaituba_PA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-55.99, -4.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "Marabá_PA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-49.12, -5.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "Novo Repartimento_PA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-49.93, -4.26] + } + }, + { + "type": "Feature", + "properties": { + "title": "Pacajá_PA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-50.64, -3.84] + } + }, + { + "type": "Feature", + "properties": { + "title": "Paragominas_PA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-47.34, -3.01] + } + }, + { + "type": "Feature", + "properties": { + "title": "Placas_PA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-54.22, -3.86] + } + }, + { + "type": "Feature", + "properties": { + "title": "Rondon do Pará_PA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.07, -4.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "Salinópolis_PA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-47.35, -0.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "Santana do Araguaia_PA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-50.33, -9.34] + } + }, + { + "type": "Feature", + "properties": { + "title": "Serra dos Carajás_PA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-50.14, -6.08] + } + }, + { + "type": "Feature", + "properties": { + "title": "Soure_PA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.52, -0.81] + } + }, + { + "type": "Feature", + "properties": { + "title": "Tomé Açu_PA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.36, -2.59] + } + }, + { + "type": "Feature", + "properties": { + "title": "Tucuruí_PA_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-49.68, -3.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "Areia_PB_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-35.69, -6.96] + } + }, + { + "type": "Feature", + "properties": { + "title": "Cabaceiras_PB_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-36.29, -7.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "Camaratuba_PB_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-35.13, -6.61] + } + }, + { + "type": "Feature", + "properties": { + "title": "Campina Grande_PB_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-35.88, -7.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "João Pessoa_PB_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-34.86, -7.11] + } + }, + { + "type": "Feature", + "properties": { + "title": "Monteiro_PB_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-37.12, -7.89] + } + }, + { + "type": "Feature", + "properties": { + "title": "Patos_PB_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-37.28, -7.02] + } + }, + { + "type": "Feature", + "properties": { + "title": "São Gonçalo_PB_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-38.31, -6.84] + } + }, + { + "type": "Feature", + "properties": { + "title": "Arcoverde_PE_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-37.05, -8.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "Cabrobó_PE_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-39.31, -8.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "Caruaru_PE_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-35.99, -8.24] + } + }, + { + "type": "Feature", + "properties": { + "title": "Floresta_PE_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-38.59, -8.61] + } + }, + { + "type": "Feature", + "properties": { + "title": "Garanhuns_PE_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-36.49, -8.89] + } + }, + { + "type": "Feature", + "properties": { + "title": "Ibimirim_PE_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-37.71, -8.51] + } + }, + { + "type": "Feature", + "properties": { + "title": "Palmares_PE_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-35.57, -8.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "Petrolina_PE_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-40.51, -9.39] + } + }, + { + "type": "Feature", + "properties": { + "title": "Recife-Guararapes-Freyre Intl_PE_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-34.92, -8.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "Recife_PE_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-34.88, -8.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "Serra Talhada_PE_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-38.29, -7.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "Surubim_PE_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-35.79, -7.84] + } + }, + { + "type": "Feature", + "properties": { + "title": "Alvorada do Gurguéia_PI_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-43.86, -8.44] + } + }, + { + "type": "Feature", + "properties": { + "title": "Bom Jesus do Piaui_PI_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-44.36, -9.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "Caracol_PI_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-43.32, -9.29] + } + }, + { + "type": "Feature", + "properties": { + "title": "Castelo do Piaui_PI_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-41.51, -5.35] + } + }, + { + "type": "Feature", + "properties": { + "title": "Esperantina_PI_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-42.26, -3.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "Floriano_PI_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-43.02, -6.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "Gilbués_PI_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-45.35, -9.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "Oeiras_PI_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-42.15, -6.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "Parnaíba_PI_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-41.78, -2.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "Paulistana_PI_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-41.15, -8.14] + } + }, + { + "type": "Feature", + "properties": { + "title": "Picos_PI_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-41.4, -7.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "Piripiri_PI_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-41.78, -4.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "São João do Piauí_PI_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-42.25, -8.36] + } + }, + { + "type": "Feature", + "properties": { + "title": "São Pedro do Piauí_PI_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-42.72, -5.91] + } + }, + { + "type": "Feature", + "properties": { + "title": "São Raimundo Nonato_PI_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-42.7, -9.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "Teresina_PI_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-42.8, -5.09] + } + }, + { + "type": "Feature", + "properties": { + "title": "Uruçuí_PI_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-44.34, -7.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "Valença do Piauí_PI_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-41.74, -6.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "Castro_PR_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-50.01, -24.79] + } + }, + { + "type": "Feature", + "properties": { + "title": "Cidade Gaúcha_PR_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-52.93, -23.36] + } + }, + { + "type": "Feature", + "properties": { + "title": "Clevelândia_PR_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-52.35, -26.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "Curitiba-Pena Intl AP_PR_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-49.18, -25.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "Curitiba_PR_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-49.27, -25.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "Diamante do Norte_PR_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-52.89, -22.64] + } + }, + { + "type": "Feature", + "properties": { + "title": "Dois Vizinhos_PR_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-53.09, -25.69] + } + }, + { + "type": "Feature", + "properties": { + "title": "Foz do Iguaçu-Cataratas Intl_PR_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-54.48, -25.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "General Carneiro_PR_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-51.35, -26.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "Ibaiti_PR_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-50.18, -23.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "Icaraíma_PR_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-53.61, -23.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "Ilha do Mel_PR_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.32, -25.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "Inácio Martins_PR_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-51.08, -25.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "Ivaí_PR_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-50.86, -25.01] + } + }, + { + "type": "Feature", + "properties": { + "title": "Joaquim Távora_PR_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-49.9, -23.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "Londrina_PR_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-51.18, -23.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "Marechal Cândido Rondon_PR_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-54.06, -24.56] + } + }, + { + "type": "Feature", + "properties": { + "title": "Maringá_PR_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-51.94, -23.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "Maringá AP_PR_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-51.92, -23.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "Nova Fátima_PR_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-50.56, -23.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "Nova Tebas_PR_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-51.94, -24.44] + } + }, + { + "type": "Feature", + "properties": { + "title": "Paranapoema_PR_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-52.13, -22.49] + } + }, + { + "type": "Feature", + "properties": { + "title": "Planalto_PR_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-53.75, -25.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "BRA_Petrolina.829840_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-40.55, -9.35] + } + }, + { + "type": "Feature", + "properties": { + "title": "BRA_Porto.Nacional.830630_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.4, -10.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "BRA_Porto.Velho.828240_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-63.92, -8.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "Arraial do Cabo_RJ_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-42.03, -22.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "Cambuci_RJ_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-41.91, -21.58] + } + }, + { + "type": "Feature", + "properties": { + "title": "Campos dos Goytacazes_RJ_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-41.32, -21.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "Duque de Caxias-Xerém_RJ_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-43.3, -22.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "Farol de São Tomé_RJ_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-41.05, -22.04] + } + }, + { + "type": "Feature", + "properties": { + "title": "Macaé_RJ_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-41.79, -22.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "Niterói_RJ_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-43.13, -22.91] + } + }, + { + "type": "Feature", + "properties": { + "title": "Paraty_RJ_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-44.71, -23.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "Petrópolis-Pico do Couto_RJ_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-43.3, -22.46] + } + }, + { + "type": "Feature", + "properties": { + "title": "Resende_RJ_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-44.45, -22.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "Rio De Janeiroo-Galeão-Jobim_RJ_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-43.25, -22.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "Rio de Janeiro-Vila Militar_RJ_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-43.41, -22.86] + } + }, + { + "type": "Feature", + "properties": { + "title": "Teresópolis_RJ_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-42.97, -22.41] + } + }, + { + "type": "Feature", + "properties": { + "title": "Valença_RJ_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-43.7, -22.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "Apodi_RN_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-37.83, -5.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "Caicó_RN_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-37.1, -6.46] + } + }, + { + "type": "Feature", + "properties": { + "title": "Macau_RN_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-36.63, -5.11] + } + }, + { + "type": "Feature", + "properties": { + "title": "Mossoró_RN_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-37.34, -5.19] + } + }, + { + "type": "Feature", + "properties": { + "title": "Natal-Severo Intl AP_RN_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-35.25, -5.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "Natal_RN_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-35.21, -5.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "Touros_RN_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-35.49, -5.16] + } + }, + { + "type": "Feature", + "properties": { + "title": "Ariquemes_RO_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-62.96, -9.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "Cacoal_RO_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.43, -11.45] + } + }, + { + "type": "Feature", + "properties": { + "title": "Porto Velho_RO_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-63.9, -8.76] + } + }, + { + "type": "Feature", + "properties": { + "title": "Vilhena_RO_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-60.16, -12.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "Boa Vista_RR_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-60.65, 2.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "Alegrete_RS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-55.79, -29.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "Bagé_RS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-54.11, -31.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "Bento Gonçalves_RS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-51.52, -29.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "Caçapava do Sul_RS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-53.49, -30.51] + } + }, + { + "type": "Feature", + "properties": { + "title": "Camaquã_RS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-51.83, -30.81] + } + }, + { + "type": "Feature", + "properties": { + "title": "Canela AP_RS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-50.83, -29.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "Canguçu_RS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-52.7, -31.41] + } + }, + { + "type": "Feature", + "properties": { + "title": "Chuí_RS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-53.37, -33.74] + } + }, + { + "type": "Feature", + "properties": { + "title": "Cruz Alta_RS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-53.67, -28.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "Erechim_RS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-52.27, -27.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "Frederico Westphalen_RS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-53.43, -27.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "Jaguarão_RS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-53.38, -32.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "Lagoa Vermelha_RS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-51.51, -28.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "Mostardas_RS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-50.91, -31.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "Palmeira das Missões_RS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-53.32, -27.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "Passo Fundo_RS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-52.41, -28.26] + } + }, + { + "type": "Feature", + "properties": { + "title": "Porto Alegre-Filho Intl AP_RS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-51.18, -30] + } + }, + { + "type": "Feature", + "properties": { + "title": "Porto Alegre_RS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-51.23, -30.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "Quaraí_RS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-56.44, -30.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "Rio Pardo_RS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-52.38, -29.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "Santa Maria_RS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-53.81, -29.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "Santana do Livramento_RS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-55.53, -30.89] + } + }, + { + "type": "Feature", + "properties": { + "title": "Santiago_RS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-54.89, -29.19] + } + }, + { + "type": "Feature", + "properties": { + "title": "Santo Augusto_RS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-53.78, -27.85] + } + }, + { + "type": "Feature", + "properties": { + "title": "São Borja_RS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-56, -28.66] + } + }, + { + "type": "Feature", + "properties": { + "title": "São Gabriel_RS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-54.31, -30.34] + } + }, + { + "type": "Feature", + "properties": { + "title": "São José dos Ausentes_RS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-50.07, -28.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "São Luiz Gonzaga_RS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-54.96, -28.41] + } + }, + { + "type": "Feature", + "properties": { + "title": "Soledade_RS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-52.54, -28.85] + } + }, + { + "type": "Feature", + "properties": { + "title": "Torres_RS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-49.73, -29.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "Tramandaí_RS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-50.14, -30.01] + } + }, + { + "type": "Feature", + "properties": { + "title": "Uruguaiana_RS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-57.09, -29.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "Vacaria_RS_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-50.88, -28.51] + } + }, + { + "type": "Feature", + "properties": { + "title": "BRA_Recife-Guararapes.828990_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-34.85, -8.07] + } + }, + { + "type": "Feature", + "properties": { + "title": "BRA_Recife.828990_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-34.88, -8.1] + } + }, + { + "type": "Feature", + "properties": { + "title": "BRA_Rio.de.Janeiro-Santos.Dumont.837550_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-43.17, -22.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "Araranguá_SC_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-49.5, -28.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "Caçador_SC_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-50.84, -26.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "Curitibanos AP_SC_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-50.6, -27.29] + } + }, + { + "type": "Feature", + "properties": { + "title": "Dionísio Cerqueira_SC_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-53.63, -26.29] + } + }, + { + "type": "Feature", + "properties": { + "title": "Florianópolis-Luz AP_SC_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.55, -27.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "Florianópolis_SC_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.55, -27.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "Indaial_SC_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-49.27, -26.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "Itapoá_SC_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.62, -26.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "Ituporanga_SC_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-49.65, -27.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "Joaçaba-Santa Terezinha Muni_SC_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-51.56, -27.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "Major Vieira_SC_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-50.36, -26.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "Novo Horizonte_SC_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-52.85, -26.41] + } + }, + { + "type": "Feature", + "properties": { + "title": "Rio Negrinho_SC_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-49.58, -26.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "Santa Marta_SC_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.81, -28.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "São Joaquim_SC_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-49.93, -28.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "São Miguel do Oeste AP_SC_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-53.5, -26.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "Urubici_SC_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-49.48, -28.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "Urussanga_SC_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-49.32, -28.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "Xanxerê_SC_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-52.4, -26.94] + } + }, + { + "type": "Feature", + "properties": { + "title": "Aracaju_SE_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-37.07, -10.91] + } + }, + { + "type": "Feature", + "properties": { + "title": "Brejo Grande_SE_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-36.48, -10.47] + } + }, + { + "type": "Feature", + "properties": { + "title": "Carira_SE_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-37.75, -10.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "Itabaianinha_SE_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-37.79, -11.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "Poço Verde_SE_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-38.11, -10.74] + } + }, + { + "type": "Feature", + "properties": { + "title": "Ariranha_SP_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.84, -21.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "Avaré_SP_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.93, -23.1] + } + }, + { + "type": "Feature", + "properties": { + "title": "Bauru_SP_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-49.06, -22.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "Campinas_SP_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-47.06, -22.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "Campos do Jordão_SP_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-45.59, -22.74] + } + }, + { + "type": "Feature", + "properties": { + "title": "Casa Branca_SP_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-47.09, -21.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "Franca_SP_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-47.4, -20.54] + } + }, + { + "type": "Feature", + "properties": { + "title": "Ibitinga_SP_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.8, -21.86] + } + }, + { + "type": "Feature", + "properties": { + "title": "Iguape_SP_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-47.56, -24.71] + } + }, + { + "type": "Feature", + "properties": { + "title": "Itapeva_SP_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.88, -23.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "Itapira_SP_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.81, -22.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "Ituverava_SP_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-47.78, -20.36] + } + }, + { + "type": "Feature", + "properties": { + "title": "Jales_SP_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-50.55, -20.27] + } + }, + { + "type": "Feature", + "properties": { + "title": "José Bonifácio_SP_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-49.92, -21.1] + } + }, + { + "type": "Feature", + "properties": { + "title": "Lins_SP_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-49.74, -21.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "Ourinhos_SP_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-49.87, -22.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "Piracicaba_SP_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-47.65, -22.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "Presidente Prudente_SP_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-51.39, -22.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "Rancharia_SP_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-50.97, -22.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "São Carlos_SP_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-47.89, -22.02] + } + }, + { + "type": "Feature", + "properties": { + "title": "São Luís do Paraitinga_SP_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-45.42, -23.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "São Paulo-Congonhas AP_SP_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.65, -23.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "São Paulo_SP_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.64, -23.85] + } + }, + { + "type": "Feature", + "properties": { + "title": "Sorocaba_SP_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-47.46, -23.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "Taubaté_SP_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-45.56, -23.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "Valparaíso_SP_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-50.93, -21.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "Votuporanga_SP_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-49.97, -20.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "BRA_Salvador.832290_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-38.52, -13.02] + } + }, + { + "type": "Feature", + "properties": { + "title": "BRA_Santa.Maria.839360_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-53.7, -29.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "BRA_Sao.Paulo-Congonhas.837800_SWERA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.65, -23.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "BRA_Sao.Paulo.837800_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.65, -23.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "Araguaína_TO_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.22, -7.18] + } + }, + { + "type": "Feature", + "properties": { + "title": "Araguatins_TO_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.11, -5.64] + } + }, + { + "type": "Feature", + "properties": { + "title": "Dianópolis_TO_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.85, -11.59] + } + }, + { + "type": "Feature", + "properties": { + "title": "Formoso do Araguaia_TO_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-49.61, -11.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "Gurupi_TO_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-49.08, -11.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "Palmas_TO_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.33, -10.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "Paranã_TO_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-47.87, -12.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "Pedro Afonso_TO_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.17, -8.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "Peixe_TO_BRA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.54, -12.02] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHL_Antofagasta.854420_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.43, -23.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHL_Concepcion.856820_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-73.05, -36.77] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHL_Easter.Island.854690_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-109.42, -27.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHL_Punta.Arenas.859340_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.85, -53] + } + }, + { + "type": "Feature", + "properties": { + "title": "CHL_Santiago.855740_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.78, -33.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "COL_Bogota.802220_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.13, 4.7] + } + }, + { + "type": "Feature", + "properties": { + "title": "ECU_Quito.840710_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-78.48, -0.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "PER_Arequipa.847520_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.55, -16.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "PER_Cuzco.846860_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.98, -13.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "PER_Lima.846280_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.12, -12] + } + }, + { + "type": "Feature", + "properties": { + "title": "PRY_Asuncion.862180_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-57.57, -25.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "URY_Montevideo.865800_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-56, -34.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "VEN_Caracas.804150_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [-66.98, 10.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_ACT.Canberra.949260_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [149.18, -35.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_ACT.Canberra.Airport.949260_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [149.2, -35.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_NSW.Armidale.Airport.957730_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [151.62, -30.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_NSW.Cabramurra.959160_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [148.38, -35.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_NSW.Cobar.947110_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [145.83, -31.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_NSW.Coffs.Harbour.947910_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [153.12, -30.32] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_NSW.Dubbo.Airport.957190_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [148.57, -32.22] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_NSW.Mascot-Sydney.Airport.947670_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [151.17, -33.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_NSW.Moree.Aero.955270_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [149.83, -29.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_NSW.Nowra.RAN.Air.Station.947500_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [150.53, -34.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_NSW.Orange.Airport.957260_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [149.13, -33.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_NSW.Richmond.RAAF.957530_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [150.78, -33.6] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_NSW.Sydney.947670_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [151.18, -33.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_NSW.Sydney.947680_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [151.2, -33.85] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_NSW.Thredbo.Village.959080_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [148.3, -36.5] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_NSW.Wagga.Wagga.949100_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [147.45, -35.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_NSW.Williamtown.RAAF.947760_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [151.83, -32.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_NT.Alice.Springs.Airport.943260_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [133.88, -23.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_NT.Darwin.941200_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [130.87, -12.4] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_NT.Darwin.Airport.941200_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [130.88, -12.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_NT.Tennant.Creek.942380_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [134.18, -19.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_QLD.Amberley.945680_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [152.72, -27.63] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_QLD.Brisbane.945780_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [153.1, -27.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_QLD.Brisbane.94578_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [153.13, -27.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_QLD.Cairns.Aero.948270_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [145.75, -16.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_QLD.Charleville.Aero.945100_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [146.27, -26.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_QLD.Gladstone.Airport.943810_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [151.22, -23.87] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_QLD.Longreach.Aero.943460_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [144.28, -23.43] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_QLD.Mackay.943670_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [149.22, -21.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_QLD.Mount.Isa.Aero.943320_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [139.48, -20.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_QLD.Oakey.Aero.945520_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [151.73, -27.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_QLD.Rockhampton.Aero.943740_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [150.48, -23.38] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_QLD.Townsville.Aero.942940_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [146.77, -19.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_QLD.Weipa.Aero.941700_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [141.92, -12.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_QLD.Willis.Island.942990_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [149.97, -16.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_SA.Adelaide-Kent.Town.946750_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [138.62, -34.92] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_SA.Adelaide.946720_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [138.52, -34.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_SA.Ceduna.946530_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [133.7, -32.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_SA.Mount.Gambier.Aero.948210_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [140.78, -37.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_SA.Mt.Lofty.946780_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [138.7, -34.97] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_SA.Oodnadatta.Airport.944760_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [135.45, -27.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_SA.Woomera.Aerodrome.946590_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [136.82, -31.15] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_TAS.Hobart-Ellerslie.Road.949700_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [147.33, -42.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_TAS.Launceston-Ti.Tree.Bend.949690_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [147.12, -41.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_TAS.Launceston.Airport.949680_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [147.2, -41.53] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_TAS.Low.Head.959640_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [146.78, -41.05] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_VIC.Ballarat.Aerodrome.948520_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [143.78, -37.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_VIC.Cape.Otway.Lighthouse.948420_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [143.52, -38.85] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_VIC.East.Sale.Airport.949070_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [147.13, -38.1] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_VIC.Melbourne.948660_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [144.83, -37.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_VIC.Melbourne.948680_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [144.97, -37.82] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_VIC.Mildura.Airport.946930_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [142.08, -34.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_VIC.Moorabbin.Airport.948700_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [145.1, -37.98] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_VIC.Tullamarine-Melbourne.Airport.948660_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [144.85, -37.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_VIC.Warrnambool.Airport.948370_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [142.45, -38.28] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_WA.Albany.Airport.948020_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [117.8, -34.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_WA.Broome.Airport.942030_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [122.23, -17.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_WA.Carnarvon.Airport.943000_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [113.67, -24.88] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_WA.Esperance.946380_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [121.88, -33.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_WA.Forrest.956460_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [128.12, -30.83] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_WA.Geraldton.Airport.944030_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [114.7, -28.8] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_WA.Giles.94461_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [128.3, -25.03] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_WA.Halls.Creek.Airport.942120_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [127.67, -18.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_WA.Kalamunda-Bickley.956100_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [116.13, -32.02] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_WA.Kalgoorlie-Boulder.Airport.946370_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [121.45, -30.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_WA.Katanning.946410_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [117.6, -33.68] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_WA.Learmonth.943020_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [114.08, -22.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_WA.Learmonth.Airport.943020_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [114.08, -22.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_WA.Mandurah.946050_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [115.72, -32.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_WA.Manjimup.946170_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [116.15, -34.25] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_WA.Meekatharra.Airport.944300_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [118.55, -26.62] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_WA.Newman.Airport.943170_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [119.8, -23.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_WA.Perth.946100_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [115.95, -31.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_WA.Perth.Airport.946100_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [115.97, -31.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_WA.Port.Hedland.943120_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [119.1, -20.23] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_WA.Port.Hedland.Airport.943120_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [118.63, -20.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_WA.Swanbourne.946140_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [115.77, -31.95] + } + }, + { + "type": "Feature", + "properties": { + "title": "AUS_WA.Wyndham.942140_RMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [128.12, -15.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "BRN_Bandar.Seri.Begawan.963150_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [114.93, 4.93] + } + }, + { + "type": "Feature", + "properties": { + "title": "FJI_Nadi.916800_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [177.45, -17.75] + } + }, + { + "type": "Feature", + "properties": { + "title": "GUM_Andersen.AFB.912180_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [144.92, 13.57] + } + }, + { + "type": "Feature", + "properties": { + "title": "GUM_Anderson.AFB.912180_TMY2", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [144.83, 13.55] + } + }, + { + "type": "Feature", + "properties": { + "title": "GUM_Tamuning-Won.Pat.Intl.AP.912120_TMY3", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [144.8, 13.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "MHL_Kwajalein.Atoll.913660_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [167.73, 8.73] + } + }, + { + "type": "Feature", + "properties": { + "title": "MYS_George.Town.486010_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [100.27, 5.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "MYS_Kota.Baharu.486150_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [102.28, 6.17] + } + }, + { + "type": "Feature", + "properties": { + "title": "MYS_Kuala.Lumpur.486470_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [101.55, 3.12] + } + }, + { + "type": "Feature", + "properties": { + "title": "MYS_Kuching.964130_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [110.33, 1.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "NZL_Auckland-Auckland.AK.931190_NIWA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [174.79, -37.01] + } + }, + { + "type": "Feature", + "properties": { + "title": "NZL_Auckland.Auckland.931190_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [174.8, -37.02] + } + }, + { + "type": "Feature", + "properties": { + "title": "NZL_Bay.of.Plenty-Tauranga.BP.931850_NIWA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [176.2, -37.67] + } + }, + { + "type": "Feature", + "properties": { + "title": "NZL_Canterbury-Christchurch.CC.937800_NIWA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [172.54, -43.49] + } + }, + { + "type": "Feature", + "properties": { + "title": "NZL_Canterbury.Christchurch.937800_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [172.55, -43.48] + } + }, + { + "type": "Feature", + "properties": { + "title": "NZL_Central.Otago-Lauder.OC.938510_NIWA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [169.69, -45.04] + } + }, + { + "type": "Feature", + "properties": { + "title": "NZL_East.Coast-Napier.EC.933730_NIWA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [176.86, -39.46] + } + }, + { + "type": "Feature", + "properties": { + "title": "NZL_Manawatu-Paraparaumu.MW.934200_NIWA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [174.98, -40.91] + } + }, + { + "type": "Feature", + "properties": { + "title": "NZL_Nelson.Marlborough-Nelson.NM.935460_NIWA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [173.22, -41.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "NZL_Northland-Kaitaia.NL.930120_NIWA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [173.26, -35.13] + } + }, + { + "type": "Feature", + "properties": { + "title": "NZL_Otago-Dunedin.DN.938910_NIWA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [170.51, -45.9] + } + }, + { + "type": "Feature", + "properties": { + "title": "NZL_Queenstown.Lakes-Queenstown.QL.938310_NIWA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [168.74, -45.02] + } + }, + { + "type": "Feature", + "properties": { + "title": "NZL_Rotorua-Rotorua.RR.932470_NIWA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [176.32, -38.11] + } + }, + { + "type": "Feature", + "properties": { + "title": "NZL_Southland-Invercargill.IN.938450_NIWA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [168.33, -46.42] + } + }, + { + "type": "Feature", + "properties": { + "title": "NZL_Taranaki-New.Plymouth.NP.933090_NIWA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [174.18, -39.01] + } + }, + { + "type": "Feature", + "properties": { + "title": "NZL_Taupo.King.Country-Turangi.TP.932450_NIWA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [175.81, -38.99] + } + }, + { + "type": "Feature", + "properties": { + "title": "NZL_Waikato-Hamilton.HN.931730_NIWA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [175.31, -37.78] + } + }, + { + "type": "Feature", + "properties": { + "title": "NZL_Wairarapa-Masterton.WI.934710_NIWA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [175.62, -41.02] + } + }, + { + "type": "Feature", + "properties": { + "title": "NZL_Wellington-Wellington.WN.934360_NIWA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [174.87, -41.41] + } + }, + { + "type": "Feature", + "properties": { + "title": "NZL_Wellington.Wellington.934360_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [174.78, -41.3] + } + }, + { + "type": "Feature", + "properties": { + "title": "NZL_West.Coast-Hokitika.WC.936150_NIWA", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [170.98, -42.72] + } + }, + { + "type": "Feature", + "properties": { + "title": "PHL_Manila.984290_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [121, 14.52] + } + }, + { + "type": "Feature", + "properties": { + "title": "PLW_Koror.Island.914080_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [134.48, 7.33] + } + }, + { + "type": "Feature", + "properties": { + "title": "SGP_Singapore.486980_IWEC", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [103.98, 1.37] + } + }, + { + "type": "Feature", + "properties": { + "title": "UMI_Wake.Island.912450_TMY", + "epw": "EnergyPlus", + "ddy": "Download Design Day File", + "stat": "Download Statistics File", + "all": "Download All", + "dir": "Go To Folder" + }, + "geometry": { + "type": "Point", + "coordinates": [166.65, 19.28] + } + } + ] +} diff --git a/assets/data/locations.geojson.gz b/assets/data/locations.geojson.gz new file mode 100644 index 00000000..09822700 Binary files /dev/null and b/assets/data/locations.geojson.gz differ diff --git a/assets/manifest.json b/assets/manifest.json index 94d8292c..47d5081c 100644 --- a/assets/manifest.json +++ b/assets/manifest.json @@ -474,22 +474,14 @@ "screenshots": [], "shortcuts": [], "url_handlers": [ - { - "origin": "https://clima.cbe.berkeley.edu/" - } - ], - "lang": "en", - "categories": [ - "education", - "utilities", - "weather" + { + "origin": "https://clima.cbe.berkeley.edu/" + } ], + "lang": "en", + "categories": ["education", "utilities", "weather"], "dir": "ltr", "prefer_related_applications": false, "display": "standalone", - "display_override": [ - "window-controls-overlay", - "standalone", - "browser" -] -} \ No newline at end of file + "display_override": ["window-controls-overlay", "standalone", "browser"] +} diff --git a/pages/lib/global_element_ids.py b/pages/lib/global_element_ids.py index c7969b4a..444c66fd 100644 --- a/pages/lib/global_element_ids.py +++ b/pages/lib/global_element_ids.py @@ -132,7 +132,6 @@ class ElementIds(str, Enum): UPLOAD_DATA = "upload-data" UPLOAD_DATA_BUTTON = "upload-data-button" TAB_ONE_MAP = "tab-one-map" - SKELETON_GRAPH_CONTAINER = "skeleton-graph-container" MODAL_HEADER = "modal-header" MODAL_CLOSE_BUTTON = "modal-close-button" MODAL_YES_BUTTON = "modal-yes-button" diff --git a/pages/select.py b/pages/select.py index 71ab90b1..3cd7848a 100644 --- a/pages/select.py +++ b/pages/select.py @@ -1,22 +1,19 @@ import base64 -import json -import re +import os import dash +import dash_leaflet as dl import dash_mantine_components as dmc -import pandas as pd -import plotly.express as px from dash.exceptions import PreventUpdate from dash_extensions.enrich import Serverside, Output, Input, State, html, dcc, callback -from pandas import json_normalize +from dash_extensions.javascript import assign from pages.lib.extract_df import convert_df_units from pages.lib.extract_df import create_df, get_data, get_location_info from pages.lib.global_variables import Variables from pages.lib.global_element_ids import ElementIds -from pages.lib.global_tab_names import TabNames from config import PageUrls, PageInfo -from pages.lib.utils import generate_chart_name, get_default_global_filter_store_data +from pages.lib.utils import get_default_global_filter_store_data dash.register_page( __name__, @@ -34,6 +31,35 @@ "wrong_extension": "The file you have uploaded is not an EPW file", } +_GEO_URL = "/geojson/locations?v=" + str( + int(os.path.getmtime("assets/data/locations.geojson.gz")) +) + +# Create marker and bind tooltip in one function — pointToLayer is only ever called +# for individual point features, never for cluster markers, so properties are always complete. +_point_to_layer = assign("""function(feature, latlng, ctx) { + const p = feature.properties; + const color = p.source === "ep" ? "#3a0ca3" : "#4895ef"; + const marker = L.circleMarker(latlng, { + radius: 5, color: color, fillColor: color, fillOpacity: 0.8, weight: 1 + }); + + let html = '' + (p.title || '') + '
' + + 'Lat: ' + latlng.lat.toFixed(2) + ', Lon: ' + latlng.lng.toFixed(2) + '
'; + if (p.source === 'ob') { + html += 'Period: ' + (p.period || 'N/A') + '
' + + 'Elevation: ' + (p.elev || 'N/A') + ' m
' + + 'Time zone: GMT' + (p.tz || 'N/A') + '
' + + '99% Heating DB: ' + (p.heat99 || 'N/A') + '
' + + '1% Cooling DB: ' + (p.cool1 || 'N/A') + '
' + + 'Source: Climate.OneBuilding.Org'; + } else { + html += 'Source: EnergyPlus'; + } + marker.bindTooltip(html, {sticky: true, opacity: 0.9}); + return marker; +}""") + def layout(): """Contents in the first tab 'Select Weather File'""" @@ -58,15 +84,31 @@ def layout(): style={"borderStyle": "dashed"}, styles={"label": {"fontWeight": 400}}, ), - # Allow multiple files to be uploaded multiple=True, style={"display": "grid"}, ), - dmc.Skeleton( - visible=False, - id=ElementIds.SKELETON_GRAPH_CONTAINER, - height=500, - children=dmc.Box(id=ElementIds.TAB_ONE_MAP), + dl.Map( + id="map-container", + center=[20, 0], + zoom=2, + style={"height": "500px", "width": "100%"}, + children=[ + dl.TileLayer( + url="https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png", + attribution=( + '© OpenStreetMap' + ' contributors © CARTO' + ), + ), + dl.GeoJSON( + id=ElementIds.TAB_ONE_MAP, + url=_GEO_URL, + cluster=True, + zoomToBoundsOnClick=True, + pointToLayer=_point_to_layer, + superClusterOptions={"radius": 80, "maxZoom": 15}, + ), + ], ), dmc.Modal( id=ElementIds.MODAL, @@ -137,7 +179,6 @@ def alert(): ], prevent_initial_call=True, ) -# @code_timer def submitted_data( _, __, @@ -159,9 +200,7 @@ def submitted_data( "orange", get_default_global_filter_store_data(), ) - location_info = get_location_info( - lines, url_store - ) # we might need to split this call into two, one returns df and one returns location_info + location_info = get_location_info(lines, url_store) return ( location_info, lines, @@ -180,7 +219,6 @@ def submitted_data( decoded_bytes = base64.b64decode(content_string) try: if "epw" in list_of_names[0]: - # Assume that the user uploaded a CSV file try: decoded_string = decoded_bytes.decode("utf-8") except UnicodeDecodeError: @@ -235,15 +273,10 @@ def submitted_data( def switch_si_ip(_, si_ip_input, url_store, lines): if lines is not None: df, _ = create_df(lines, url_store) - df = convert_df_units(df, si_ip_input) - return Serverside(df), si_ip_input else: - return ( - None, - None, - ) + return (None, None) @callback( @@ -298,12 +331,11 @@ def enable_tabs_when_data_is_loaded(meta, data): prevent_initial_call=True, ) def display_modal_when_data_clicked(_, click_map, __, opened): - """display the modal to the user and check if he wants to use that file""" + """Display the modal when a map location is clicked.""" if click_map: - url = re.search( - r'href=[\'"]?([^\'" >]+)', click_map["points"][0]["customdata"][-1] - ).group(1) - return not opened, url + url = (click_map.get("properties") or {}).get("url") + if url: + return not opened, url return opened, "" @@ -314,64 +346,7 @@ def display_modal_when_data_clicked(_, click_map, __, opened): ) def change_text_modal(click_map): if click_map: - return [f"Analyse data from {click_map['points'][0]['hovertext']}?"] + title = (click_map.get("properties") or {}).get("title") + if title: + return [f"Analyse data from {title}?"] return ["Analyse data from this location?"] - - -@callback( - Output(ElementIds.SKELETON_GRAPH_CONTAINER, "children"), - Input(ElementIds.SELECT_URL, "pathname"), -) -def plot_location_epw_files(pathname): - # print(pathname) - if pathname != "/": - raise PreventUpdate - - with open("./assets/data/epw_location.json", encoding="utf8") as data_file: - data = json.load(data_file) - - df = json_normalize(data[Variables.FEATURES.col_name]) - df[[Variables.LON.col_name, Variables.LAT.col_name]] = pd.DataFrame( - df[Variables.GEOMETRY_COORDINATES.col_name].tolist() - ) - df[Variables.LAT.col_name] += 0.010 - df = df.rename(columns={"properties.epw": "Source"}) - - fig = px.scatter_mapbox( - df.head(2585), - lat="lat", - lon="lon", - hover_name="properties.title", - color_discrete_sequence=["#3a0ca3"], - hover_data=["Source"], - zoom=2, - height=500, - ) - df_one_building = pd.read_csv("./assets/data/one_building.csv", compression="gzip") - - fig2 = px.scatter_mapbox( - df_one_building, - lat="lat", - lon="lon", - hover_name=df_one_building[Variables.NAME.col_name], - color_discrete_sequence=["#4895ef"], - hover_data=[ - "period", - "elevation (m)", - "time zone (GMT)", - "99% Heating DB", - "1% Cooling DB ", - "Source", - ], - zoom=2, - height=500, - ) - fig.add_trace(fig2.data[0]) - fig.update_layout(mapbox_style="carto-positron") - fig.update_layout(margin={"r": 0, "t": 0, "l": 0, "b": 0}) - - return dcc.Graph( - id=ElementIds.TAB_ONE_MAP, - figure=fig, - config=generate_chart_name(TabNames.EPW_LOCATION_SELECT), - ) diff --git a/scripts/build_locations_geojson.py b/scripts/build_locations_geojson.py new file mode 100644 index 00000000..74f532ef --- /dev/null +++ b/scripts/build_locations_geojson.py @@ -0,0 +1,97 @@ +""" +Build assets/data/locations.geojson.gz from the two source data files. +Run from the repo root: pipenv run python scripts/build_locations_geojson.py +""" + +import gzip +import json +import math +import re +import pandas as pd +from pathlib import Path + +REPO_ROOT = Path(__file__).resolve().parent.parent +EPW_JSON = REPO_ROOT / "assets" / "data" / "epw_location.json" +ONE_BUILDING_CSV = REPO_ROOT / "assets" / "data" / "one_building.csv" +OUT = REPO_ROOT / "assets" / "data" / "locations.geojson.gz" + +URL_RE = re.compile(r'href=[\'"]?([^\'" >]+)') + + +def extract_url(html: str) -> str: + m = URL_RE.search(html) + return m.group(1) if m else "" + + +def _clean(val, default="N/A"): + """Return a clean string or default for NaN / None values.""" + try: + if val is None or (isinstance(val, float) and math.isnan(val)): + return default + except TypeError: + pass + return str(val).strip() or default + + +def build(): + features = [] + + # EnergyPlus locations (first 2585 to match current behaviour) + with open(EPW_JSON, encoding="utf-8") as f: + epw_data = json.load(f) + + for feat in epw_data["features"][:2585]: + props = feat["properties"] + lon, lat = feat["geometry"]["coordinates"] + features.append( + { + "type": "Feature", + "properties": { + "title": props["title"], + "url": extract_url(props["epw"]), + "source": "ep", + }, + "geometry": {"type": "Point", "coordinates": [lon, lat]}, + } + ) + + # OneBuilding locations — exclude future-climate scenario files (_Future/ in URL) + df = pd.read_csv(ONE_BUILDING_CSV, compression="gzip") + df = df[~df["Source"].str.contains("_Future/", na=False)] + for _, row in df.iterrows(): + features.append( + { + "type": "Feature", + "properties": { + "title": row["name"], + "url": extract_url(str(row["Source"])), + "source": "ob", + "period": _clean(row.get("period")), + "elev": _clean(row.get("elevation (m)")), + "tz": _clean(row.get("time zone (GMT)")), + "heat99": _clean(row.get("99% Heating DB")), + "cool1": _clean(row.get("1% Cooling DB ")), + }, + "geometry": { + "type": "Point", + "coordinates": [float(row["lon"]), float(row["lat"])], + }, + } + ) + + geojson = {"type": "FeatureCollection", "features": features} + payload = json.dumps(geojson, separators=(",", ":")).encode("utf-8") + + with gzip.open(OUT, "wb", compresslevel=9) as f: + f.write(payload) + + print( + f"Written {len(features)} features → {OUT} ({OUT.stat().st_size / 1024:.0f} KB gzipped)" + ) + ep = sum(1 for feat in features if feat["properties"]["source"] == "ep") + ob = sum(1 for feat in features if feat["properties"]["source"] == "ob") + print(f" EnergyPlus: {ep} OneBuilding: {ob}") + + +if __name__ == "__main__": + build() diff --git a/tests/test_select.py b/tests/test_select.py index 67bbcfc7..d657f1e8 100644 --- a/tests/test_select.py +++ b/tests/test_select.py @@ -38,5 +38,5 @@ def test_upload_and_map_rendering(page: Page): expect(alert_box).to_contain_text("EPW was successfully loaded!") # Map rendered after file upload - map_container = page.locator("#tab-one-map") + map_container = page.locator("#map-container") expect(map_container).to_be_visible()