Commit 2df5e409 authored by Mario Chirinos Colunga's avatar Mario Chirinos Colunga 💬

SCL to JSON

parent bfc50145
...@@ -6,6 +6,7 @@ import numpy as np ...@@ -6,6 +6,7 @@ import numpy as np
import gdal import gdal
import sys import sys
import json import json
from collections import Counter
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
def L2ASCLtoDict(filename, wkt): def L2ASCLtoDict(filename, wkt):
''' '''
...@@ -17,14 +18,11 @@ def L2ASCLtoDict(filename, wkt): ...@@ -17,14 +18,11 @@ def L2ASCLtoDict(filename, wkt):
print ("rows: " + str(rows) + " , cols: " + str(cols)) print ("rows: " + str(rows) + " , cols: " + str(cols))
print(len(data)) print(len(data))
print(len(data[0])) print(len(data[0]))
dataDict = dict() count = Counter([])
# for d in data: for r in data:
# dataClass = str(int(d)) count = count + Counter(r)
# if dataClass in dataDict:
# dataDict[dataClass]+=1 return dict(count)
# else:
# dataDict[dataClass]=0
# return dataDict
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
def main(argv): def main(argv):
if len(sys.argv) != 2: if len(sys.argv) != 2:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment