toposhirt/topologytool.py
2026-01-31 19:51:48 -08:00

141 lines
5.3 KiB
Python

import os
import shutil
import sys
from country_iso2ify import get_resolver
import pycountry
from country_bounding_boxes import country_subunits_by_iso_code
import requests
import ee
class Topology:
def __init__(self,
country=None,
iso_country=None,
subregion_mode=False,
refetch_elevation_data=False,
subregion=None,
linemap_size=(800,800),
linemap_rows=30,
linemap_cols=30,
linemap_width=1.0,
linemap_roundcap=True,
linemap_transparent=False
):
self.country = country
self.refetch_elevation_data = refetch_elevation_data
self.iso_country = iso_country
self.subregion = subregion
self.linemap_size = linemap_size
self.linemap_rows = linemap_rows
self.linemap_cols = linemap_cols
self.linemap_width = linemap_width
self.linemap_roundcap = linemap_roundcap
self.linemap_transparent = linemap_transparent
self.subregion_mode = subregion_mode
self.target_region_name = None
self.elevation_filename = None
if self.country is None and self.iso_country is None:
self.country = "Switzerland"
if self.country is None:
self.country = pycountry.countries.get(alpha_2=self.iso_country).name
self.subregion = self.country
if self.iso_country is None:
self.iso_country = get_resolver().resolve(self.country)
if self.subregion_mode is False:
self.target_region_name=self.country
self.subregion = self.country
else:
self.target_region_name=self.subregion
self.elevation_filename = self.target_region_name+".png"
print("Elevation file name is [{}]".format(self.elevation_filename))
def list_subunits(self):
countries = country_subunits_by_iso_code(self.iso_country)
print("Country is [{}] iso code is [{}]".format(self.country, self.iso_country))
item = None
if countries:
for item in countries:
print("Subunit of [{}]: [{}]".format(self.country, item.subunit))
def get_boundingbox(self):
countries = country_subunits_by_iso_code(self.iso_country)
print("bbox--Country is [{}] iso code is [{}] subregion is [{}]".format(self.country, self.iso_country, self.subregion))
# The library is designed to return the main body of the country
# in the first result or by filtering for largest area.
item = None
countries = country_subunits_by_iso_code(self.iso_country)
if countries and self.subregion is None:
for item in countries:
print(self.subregion)
if item.subunit == self.subregion:
return item.bbox
else:
if countries:
for item in countries:
if item.subunit == self.subregion:
return item.bbox
return None
def create_elevation_file(self):
ee.Initialize(project="arizona-topo")
elv = ee.Image('USGS/SRTMGL1_003')
boundingbox = self.get_boundingbox()
region_of_interest = ee.Geometry.BBox(boundingbox[0],
boundingbox[1],
boundingbox[2],
boundingbox[3])
countries = ee.FeatureCollection('FAO/GAUL/2015/level1').select('ADM0_NAME')
# logging.debug("Countries are [{}]".format(countries))
states = ee.FeatureCollection('FAO/GAUL/2015/level1').select('ADM1_NAME')
target_boundary = countries.filter(ee.Filter.eq('ADM0_NAME', self.target_region_name))
elevation_image = elv.updateMask(elv.gt(0))
elevation_clip = elevation_image.clip(target_boundary)
url = elevation_clip.getThumbUrl({
'min': -300, 'max': 8500, 'region': region_of_interest, 'dimensions': 1024,
'crs': 'EPSG:4326',
'fileFormat': 'GeoTIFF',
})
print("url is [{}]".format(url))
print("Downloading image from [{}]".format(url))
response = requests.get(url, stream=True)
with open(self.elevation_filename, 'wb') as out_file:
shutil.copyfileobj(response.raw, out_file)
del response
def create_svg_file(self, rotation=0,file_index=None):
# if no refetch, check if file exists
if os.path.exists(self.elevation_filename):
print("Elevation file exists")
if self.refetch_elevation_data:
print("Refetching elevation data requested")
self.create_elevation_file()
else:
print("Elevation file does not exist, fetching")
self.create_elevation_file()
def main():
topology = Topology(country="France",
subregion_mode=False)
topology.list_subunits()
print(topology.get_boundingbox())
topology.create_svg_file(rotation=0)
sys.exit(0)
t2=Topology(country="United Kingdom",
subregion_mode=True,
subregion="Wales")
t2.list_subunits()
print(t2.get_boundingbox())
t3=Topology(iso_country="US")
t3.list_subunits()
print(t3.get_boundingbox())
if __name__ == "__main__":
main()