Creating a shapefile within a zip file with FionaAdd joined data in fiona with new schemaUsing Fiona to write a new shapefile from scratchWriting shapefile with projection defined crashes fionaDifferent output for Fiona Shapefile CRSI can't get fiona to write while copying shapefileDissolving polygons based on attributes with Python (shapely, fiona)?Creating point shapefile from Excel with FionaUnicode problems while writing selected features to a new shapefile with FionaTake pixel locations from rasterio raster and write out shapefileHow do I write a GeoPandas dataframe into a single file (preferably JSON or GeoPackage)?
Information to fellow intern about Hiring?
How do you conduct xenoanthropology after first contact?
What do the Banks children have against barley water?
Why is "Reports" in the sentence below without the article "The"?
My colleague's body is amazing
Is this homebrew feat, Beast of Burden, balanced?
Are white and non-white police officers equally likely to kill black suspects?
Can I interfere when another PC is about to be attacked?
A newer friend of my brother's gave him a load of baseball cards that are supposedly extremely valuable. Is this a scam?
How to deal with fear of taking dependencies
Sort in WP_Query(), not filter? Is it possible?
Why do UK politicians seemingly ignore opinion polls on Brexit?
What are the advantages and disadvantages of running one shots compared to campaigns?
Is it legal to have the "// (c) 2019 John Smith" header in all files when there are hundreds of contributors?
Is it possible to make sharp wind that can cut stuff from afar?
Extreme, but not acceptable situation and I can't start the work tomorrow morning
Weird behaviour when using querySelector
Is Fable (1996) connected in any way to the Fable franchise from Lionhead Studios?
Can a planet have a different gravitational pull depending on its location in orbit around its sun?
Why was the "bread communication" in the arena of Catching Fire left out in the movie?
Wild Shape Centaur Into a Giant Elk: do their Charges stack?
How can I fix this gap between bookcases I made?
Is domain driven design an anti-SQL pattern?
Are cabin dividers used to "hide" the flex of the airplane?
Creating a shapefile within a zip file with Fiona
Add joined data in fiona with new schemaUsing Fiona to write a new shapefile from scratchWriting shapefile with projection defined crashes fionaDifferent output for Fiona Shapefile CRSI can't get fiona to write while copying shapefileDissolving polygons based on attributes with Python (shapely, fiona)?Creating point shapefile from Excel with FionaUnicode problems while writing selected features to a new shapefile with FionaTake pixel locations from rasterio raster and write out shapefileHow do I write a GeoPandas dataframe into a single file (preferably JSON or GeoPackage)?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
According to the Fiona documentation "Fiona lets you read and write zipped Shapefiles."
But I can't find any examples of writing (with Windows file paths). Trying this...
with fiona.open('output_shp.shp', 'w', 'ESRI Shapefile', schema, vfs='zip://output.zip') as o:
# Write
DriverError: /vsizip/output.zip/output.shp is not a directory.
fiona
New contributor
hansen_m is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
According to the Fiona documentation "Fiona lets you read and write zipped Shapefiles."
But I can't find any examples of writing (with Windows file paths). Trying this...
with fiona.open('output_shp.shp', 'w', 'ESRI Shapefile', schema, vfs='zip://output.zip') as o:
# Write
DriverError: /vsizip/output.zip/output.shp is not a directory.
fiona
New contributor
hansen_m is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
According to the Fiona documentation "Fiona lets you read and write zipped Shapefiles."
But I can't find any examples of writing (with Windows file paths). Trying this...
with fiona.open('output_shp.shp', 'w', 'ESRI Shapefile', schema, vfs='zip://output.zip') as o:
# Write
DriverError: /vsizip/output.zip/output.shp is not a directory.
fiona
New contributor
hansen_m is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
According to the Fiona documentation "Fiona lets you read and write zipped Shapefiles."
But I can't find any examples of writing (with Windows file paths). Trying this...
with fiona.open('output_shp.shp', 'w', 'ESRI Shapefile', schema, vfs='zip://output.zip') as o:
# Write
DriverError: /vsizip/output.zip/output.shp is not a directory.
fiona
fiona
New contributor
hansen_m is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
hansen_m is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited Apr 4 at 12:37
Vince
14.8k32849
14.8k32849
New contributor
hansen_m is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked Apr 4 at 0:34
hansen_mhansen_m
61
61
New contributor
hansen_m is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
hansen_m is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
hansen_m is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "79"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
hansen_m is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f317714%2fcreating-a-shapefile-within-a-zip-file-with-fiona%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
hansen_m is a new contributor. Be nice, and check out our Code of Conduct.
hansen_m is a new contributor. Be nice, and check out our Code of Conduct.
hansen_m is a new contributor. Be nice, and check out our Code of Conduct.
hansen_m is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Geographic Information Systems Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f317714%2fcreating-a-shapefile-within-a-zip-file-with-fiona%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown