Skip to content

Instantly share code, notes, and snippets.

@abarciauskas-bgse
Last active December 10, 2019 23:40
Show Gist options
  • Save abarciauskas-bgse/1ff3ebb13726ee1e151a380d1d83f528 to your computer and use it in GitHub Desktop.
Save abarciauskas-bgse/1ff3ebb13726ee1e151a380d1d83f528 to your computer and use it in GitHub Desktop.
atl03_h_ph.geojson
import h5py
import json
f = h5py.File('ATL03_20181013235645_02340114_002_01.h5')
limit = 100
# Should do this for gt1l, gt2r, gt2l, gt3r, gtl3
heights = f['gt1r']['heights']
feature_collection = {
"type": "FeatureCollection",
"totalFeatures": limit,
"features": []
}
features_list = []
for idx in range(0, limit):
height = float(heights['h_ph'][idx])
latitude = float(heights['lat_ph'][idx])
longitude = float(heights['lon_ph'][idx])
feature = {
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [ longitude, latitude ]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": height,
"icon": "harbor",
"title": f"photon-{idx}"
}
}
features_list.append(feature)
feature_collection['features'] = features_list
with open('atl03_h_ph.json', 'w') as outfile:
json.dump(feature_collection, outfile)
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"totalFeatures": 100,
"features": [
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11715068595246,
0.010196330830904512
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 201.31979370117188,
"title": "photon-0"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11715973264872,
0.010197452507431681
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 163.08480834960938,
"title": "photon-1"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.117187071194195,
0.010200841817320297
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 47.54397964477539,
"title": "photon-2"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11720311174675,
0.010202830717906215
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": -20.246318817138672,
"title": "photon-3"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11715841196408,
0.010190826072353228
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 171.2440948486328,
"title": "photon-4"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11716544029913,
0.010191697606252569
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 141.53970336914062,
"title": "photon-5"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11718522192966,
0.01019414985284539
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 57.93684768676758,
"title": "photon-6"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.117122813750775,
0.010179949385980788
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 324.27813720703125,
"title": "photon-7"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11713274794078,
0.010181181450674228
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 282.2904968261719,
"title": "photon-8"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.117128684661886,
0.01018067732379198
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 299.46429443359375,
"title": "photon-9"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.117160080728546,
0.010184570050073173
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 166.76963806152344,
"title": "photon-10"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11715759936013,
0.010184262565938138
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 177.25680541992188,
"title": "photon-11"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11714170486521,
0.010175828864872172
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 247.0132293701172,
"title": "photon-12"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11717052238982,
0.01017940144897719
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 125.21864318847656,
"title": "photon-13"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.117173742960816,
0.010179800787780031
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 111.60746002197266,
"title": "photon-14"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11720648621932,
0.010183860311024313
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": -26.772729873657227,
"title": "photon-15"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11720497414326,
0.010183672914278734
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": -20.382526397705078,
"title": "photon-16"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11720812726229,
0.010184063823992598
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": -33.70800018310547,
"title": "photon-17"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11714426412645,
0.010169683470977886
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 238.7763671875,
"title": "photon-18"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11718721101446,
0.010175008218331822
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 57.26727294921875,
"title": "photon-19"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11713253468808,
0.010161765994309692
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 290.93182373046875,
"title": "photon-20"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11716182797354,
0.010165398040865012
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 167.12457275390625,
"title": "photon-21"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.117175847989266,
0.010167136017783773
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 107.87120056152344,
"title": "photon-22"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11718551721187,
0.010168334975719485
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 67.00627899169922,
"title": "photon-23"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11713017805822,
0.0101550109005393
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 303.4736633300781,
"title": "photon-24"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11716707536372,
0.010159585392664426
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 147.52853393554688,
"title": "photon-25"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.117180757638145,
0.01016128168558786
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 89.70281982421875,
"title": "photon-26"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.117182231881685,
0.01016146487479238
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 83.47209167480469,
"title": "photon-27"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11712469919826,
0.010147868219641025
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 329.2129211425781,
"title": "photon-28"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.117135293463306,
0.010149181739488608
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 284.4354553222656,
"title": "photon-29"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.117135283804814,
0.010149180532518141
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 284.4762878417969,
"title": "photon-30"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.117174028988174,
0.010153983872141163
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 120.72237396240234,
"title": "photon-31"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11719032015957,
0.010156003589905536
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 51.87131881713867,
"title": "photon-32"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11720720449915,
0.010158096913223969
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": -19.485090255737305,
"title": "photon-33"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.117147927271915,
0.010144284750936585
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 233.6215362548828,
"title": "photon-34"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11718933064909,
0.010149417680089663
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 58.63597106933594,
"title": "photon-35"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.117211183642596,
0.010152127237973077
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": -33.718910217285156,
"title": "photon-36"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11713151211918,
0.010135786176183931
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 305.5843811035156,
"title": "photon-37"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.117167238873,
0.010140215446850703
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 154.5862274169922,
"title": "photon-38"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.117174528729144,
0.010141119670728416
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 123.77654266357422,
"title": "photon-39"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11718030088787,
0.010141835274478995
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 99.38157653808594,
"title": "photon-40"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11718458793276,
0.01014236684935355
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 81.26325988769531,
"title": "photon-41"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11719558958142,
0.010143730761681681
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 34.767608642578125,
"title": "photon-42"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.1172065487217,
0.01014508936192831
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": -11.547701835632324,
"title": "photon-43"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11712707465586,
0.010128773384806479
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 326.9239501953125,
"title": "photon-44"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11713551937533,
0.01012982036921598
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 291.2316589355469,
"title": "photon-45"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.117137631122745,
0.010130082186240352
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 282.3062438964844,
"title": "photon-46"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11713989304045,
0.01013036224987836
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 272.7463073730469,
"title": "photon-47"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.117194751384226,
0.010137163607677226
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 40.89419174194336,
"title": "photon-48"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11718938663795,
0.010136498915383154
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 63.56672668457031,
"title": "photon-49"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11721171158476,
0.010139266418990994
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": -30.782657623291016,
"title": "photon-50"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11721209149067,
0.01013931389398803
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": -32.388336181640625,
"title": "photon-51"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11712799742054,
0.010122424178351477
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 325.6091613769531,
"title": "photon-52"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11714858955791,
0.01012497722248649
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 238.57554626464844,
"title": "photon-53"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11715447381045,
0.010125706835921594
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 213.7058868408203,
"title": "photon-54"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11715072488226,
0.01012524198613523
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 229.55062866210938,
"title": "photon-55"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11718849285082,
0.010129924271147197
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 69.92928314208984,
"title": "photon-56"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11715614927887,
0.010119451113854745
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 209.21051025390625,
"title": "photon-57"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.1171685936584,
0.010120993764611959
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 156.61546325683594,
"title": "photon-58"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11719576128686,
0.010124362287617004
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 41.796688079833984,
"title": "photon-59"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11720648345565,
0.010125691799244762
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": -3.517394542694092,
"title": "photon-60"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11720931195908,
0.01012604214773814
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": -15.470972061157227,
"title": "photon-61"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11712869928579,
0.01010958421640383
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 327.8154602050781,
"title": "photon-62"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11715367302858,
0.010112680661391742
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 222.26290893554688,
"title": "photon-63"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11718329354016,
0.01011635311750722
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 97.07516479492188,
"title": "photon-64"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.117214075822076,
0.01012016919643283
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": -33.01729965209961,
"title": "photon-65"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.117131106659066,
0.010103419303717567
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 320.2279052734375,
"title": "photon-66"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11712970278693,
0.010103244906665525
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 326.1616516113281,
"title": "photon-67"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.117138944917215,
0.010104391025956195
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 287.0989074707031,
"title": "photon-68"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.117138179888414,
0.010104295943000576
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 290.33245849609375,
"title": "photon-69"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11714861348106,
0.010105589395953844
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 246.23460388183594,
"title": "photon-70"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11716750208156,
0.010107931643661099
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 166.40274047851562,
"title": "photon-71"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11717515069305,
0.010108879666508277
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 134.07693481445312,
"title": "photon-72"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11718416553964,
0.010109997383047652
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 95.97722625732422,
"title": "photon-73"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11719053706272,
0.010110787371889092
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 69.04933166503906,
"title": "photon-74"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.117193284215,
0.010104664823996499
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 60.026954650878906,
"title": "photon-75"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.1172099266993,
0.010106728464327424
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": -10.307784080505371,
"title": "photon-76"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.1171493706239,
0.01009275642701701
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 248.21148681640625,
"title": "photon-77"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.117161960812396,
0.010094317306696628
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 194.9994354248047,
"title": "photon-78"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.117169446794875,
0.01009524552825117
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 163.36053466796875,
"title": "photon-79"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11716711846867,
0.010094957163706196
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 173.2008514404297,
"title": "photon-80"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11717811748395,
0.010096320759024528
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 126.71489715576172,
"title": "photon-81"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.117182964280516,
0.010096921769109453
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 106.2306900024414,
"title": "photon-82"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.117185200307766,
0.01009719911885217
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 96.78048706054688,
"title": "photon-83"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11719406216919,
0.01009829772021456
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 59.32781219482422,
"title": "photon-84"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11714212946567,
0.010085394918294938
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 281.4061584472656,
"title": "photon-85"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.117154004697845,
0.010086867493422486
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 231.2151641845703,
"title": "photon-86"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11716419359819,
0.010088130372907901
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 188.15235900878906,
"title": "photon-87"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.117160184279825,
0.010087633499099306
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 205.097412109375,
"title": "photon-88"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.117191930032725,
0.01009156947909307
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 70.9283447265625,
"title": "photon-89"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.117204002690656,
0.010093066206215959
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 19.906429290771484,
"title": "photon-90"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.117209486789235,
0.010093746338797421
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": -3.2704946994781494,
"title": "photon-91"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.117211159773625,
0.010093953846988723
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": -10.340846061706543,
"title": "photon-92"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11721648395518,
0.01009461347588248
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": -32.84144973754883,
"title": "photon-93"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11713457818705,
0.010077995098612952
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 315.91259765625,
"title": "photon-94"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11713558674655,
0.010078120095754092
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 311.64984130859375,
"title": "photon-95"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11720292051306,
0.010086468063369403
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 27.070209503173828,
"title": "photon-96"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.117214510846985,
0.010087905037480142
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": -21.912660598754883,
"title": "photon-97"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.117132595091256,
0.010071284842268529
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 326.8858337402344,
"title": "photon-98"
}
},
{
"type": "Feature",
"id": "",
"geometry": {
"type": "Point",
"coordinates": [
-52.11714563019362,
0.010072900807673417
]
},
"geonemtry_name": "GeoLocation",
"properties": {
"photon_height_meters": 271.7920227050781,
"title": "photon-99"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment