-
-
Notifications
You must be signed in to change notification settings - Fork 265
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Question] How can I input manually mapped shorelines into high-resolution orthomosaics? #586
Comments
Hi, I had to do this too. It should be as simple as something like: settings["reference_shoreline"] = np.array(gpd.read_file("your_shoreline.shp").geometry.iloc[0].coords) |
yes, and make sure that the shapefile is in the same coordinate system as your settings['output_epsg'] and your transects |
And to load a shapefile of transects with slope values? it's similar? I also drew transects over a digital elevation model, so I have the specific slope for each of them along the coast, but I’m not sure if the code will use it. |
Slopes are only used during tidal correction |
Here's how I load transects transects_at_site = transects_gdf[transects_gdf.site_id == sitename]
transects = {}
for transect_id in transects_at_site.index:
transects[transect_id] = np.array(transects_at_site.geometry[transect_id].coords) |
An orthomosaic was generated based on aerial photographs. Using QGIS, I mapped the wet-dry sand interface and would like to use that shapefile as a reference line.
Regards
The text was updated successfully, but these errors were encountered: