Skip to content

Commit

Permalink
Fix Download Link AGB Live Woody Biomass dataset (#1713)
Browse files Browse the repository at this point in the history
* fix link

* one line link
  • Loading branch information
nilsleh authored Nov 5, 2023
1 parent 94d0619 commit fa1862a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"type": "FeatureCollection", "name": "Aboveground_Live_Woody_Biomass_Density", "crs": {"type": "name", "properties": {"name": "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "features": [{"type": "Feature", "properties": {"tile_id": "00N_000E", "download": "tests/data/agb_live_woody_density/00N_000E.tif", "ObjectId": 1, "Shape__Area": 1245542622548.87, "Shape__Length": 4464169.76558139}, "geometry": {"type": "Polygon", "coordinates": [[[0.0, 0.0], [10.0, 0.0], [10.0, -10.0], [0.0, -10.0], [0.0, 0.0]]]}}]}
{"type": "FeatureCollection", "name": "Aboveground_Live_Woody_Biomass_Density", "crs": {"type": "name", "properties": {"name": "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "features": [{"type": "Feature", "properties": {"tile_id": "00N_000E", "Mg_px_1_download": "tests/data/agb_live_woody_density/00N_000E.tif", "ObjectId": 1, "Shape__Area": 1245542622548.87, "Shape__Length": 4464169.76558139}, "geometry": {"type": "Polygon", "coordinates": [[[0.0, 0.0], [10.0, 0.0], [10.0, -10.0], [0.0, -10.0], [0.0, 0.0]]]}}]}
4 changes: 2 additions & 2 deletions tests/data/agb_live_woody_density/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"type": "Feature",
"properties": {
"tile_id": "00N_000E",
"download": os.path.join(
"Mg_px_1_download": os.path.join(
"tests", "data", "agb_live_woody_density", "00N_000E.tif"
),
"ObjectId": 1,
Expand Down Expand Up @@ -74,5 +74,5 @@ def create_file(path: str, dtype: str, num_channels: int) -> None:
json.dump(base_file, f)

for i in base_file["features"]:
filepath = os.path.basename(i["properties"]["download"])
filepath = os.path.basename(i["properties"]["Mg_px_1_download"])
create_file(path=filepath, dtype="int32", num_channels=1)
7 changes: 2 additions & 5 deletions torchgeo/datasets/agb_live_woody_density.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,7 @@ class AbovegroundLiveWoodyBiomassDensity(RasterDataset):

is_image = False

url = (
"https://opendata.arcgis.com/api/v3/datasets/3e8736c8866b458687"
"e00d40c9f00bce_0/downloads/data?format=geojson&spatialRefId=4326"
)
url = "https://opendata.arcgis.com/api/v3/datasets/e4bdbe8d6d8d4e32ace7d36a4aec7b93_0/downloads/data?format=geojson&spatialRefId=4326" # noqa: E501

base_filename = "Aboveground_Live_Woody_Biomass_Density.geojson"

Expand Down Expand Up @@ -123,7 +120,7 @@ def _download(self) -> None:

for item in content["features"]:
download_url(
item["properties"]["download"],
item["properties"]["Mg_px_1_download"],
self.paths,
item["properties"]["tile_id"] + ".tif",
)
Expand Down

0 comments on commit fa1862a

Please sign in to comment.