Skip to main content
Filter by
Sorted by
Tagged with
2 votes
1 answer
27 views

I have downloaded the HEALPix5 DECaPS 3D dust extinction map (from arXiv:2503.02657) and imported it as a numpy array meanmap. The array gives an expected result (51415400, 1, 120) to the meanmap....
Peter Barnes's user avatar
0 votes
0 answers
89 views

I'm currently attempting to convert a PDF into DOCX format using convertapi. While the conversion process itself is successful, I've encountered an issue. The PDF I'm working with contains a watermark ...
Shivam Vishwakarma's user avatar
0 votes
1 answer
75 views

We are trying to convert a fingerprint .tiff image with a 500 ppi resolution to .jpg keeping the same resolution. We managed to convert it but it seems that the resolution information is lost during ...
Henrique Costa's user avatar
0 votes
1 answer
380 views

I have browsed through many articles (i.e. character to integer conversion in fortran) which suggest a solution to the problem. I just can't get it working although I think I follow the suggestions ...
Chris's user avatar
  • 1
0 votes
1 answer
387 views

Back in the days when we did a calendar synchronisatie via Outlook this gave us IDs of the form: ...
Jan Doggen's user avatar
  • 9,086
0 votes
4 answers
2k views

Hi: I'm working with a SQLite (v 3.14.2) in Linux. Apparently, SQLite allows users to store char strings in integer columns (I find this shocking, but that's what it apparently allows). Some of ...
daveg's user avatar
  • 1,221
1 vote
2 answers
851 views

I am reading a frames from my web cam using MediaFoundation APIS. IMFMediaType mediatype = null; Hresult hr= mSourceReaderAsync.GetNativeMediaType((int)MF_SOURCE_READER.FirstAudioStream, i, out ...
ThunderBird's user avatar
0 votes
2 answers
2k views

So i am making a flask web app and i added a docx to pdf converter but its not working every time i will ran into a problem even though it is simple so i am using this python package to convert docx ...
CaptainBeasst's user avatar
1 vote
1 answer
96 views

I'am quite new in C and dealing with text formatting that is a bit challenging for me. I try to enter initials J. S. (whitespace between characters) and name John Smith and my initials array stores ...
Gipsy King's user avatar
0 votes
2 answers
3k views

I am using the code snap given below and its working without error but the converted file is not having .png extension as I am giving png in "OutputFormat". I am running it in Colab and I am ...
Parimal Bhoyar's user avatar
0 votes
1 answer
2k views

I'm using Eclipse CDT to work on a repository which has a .clang-format file, and would like to use it. So - can I somehow convert it into the XML format which the Eclipse formatter uses? Note: The ...
einpoklum's user avatar
  • 137k
0 votes
0 answers
2k views

I'm trying to use Open-XML-PowerTools. And I would like to execute it on powershell command line. However, I haven't got to the point where I can actually use it, because it seems that I could not ...
shun1010's user avatar
0 votes
0 answers
184 views

I am trying to convert JSON data(Childnodes) to tabular format with a Customer column header. I am able to get the exact node via data ,but not sure how to convert it to tabular format. Code tried so ...
Renji's user avatar
  • 401
2 votes
2 answers
3k views

I'm just after recording a Selenium IDE Recording with Google Chrome. I've saved the .SIDE -extension file, and now I'm wondering -- how would I go about converting this file format into .robot so I ...
esaruoho's user avatar
  • 966
3 votes
1 answer
4k views

Does someone know of a converter from Intel .hex file format or Motorola S-record to elf file format?
macro_controller's user avatar
0 votes
1 answer
45 views

Any suggestion on how to convert data as follows into csv file in python: [{ 'name': 'a', 'url': 'url1' }, { 'name': 'b', 'url': 'url2' }, { 'name': 'c', 'url': 'url3' }] thank you.
pythoner's user avatar
3 votes
1 answer
3k views

I am trying to parse a RDF/XML formatted document into JSON-LD in order to frame it. All using Node.js and not utilizing any web service APIs (a not too uncommon solution). I feel that I am almost ...
Fontanka16's user avatar
  • 1,413
7 votes
2 answers
4k views

I'm trying to take html and generate some json that keeps the same structure. I'm trying to use pandoc, as i've had some success in transforming things from format A to format B using pandoc before. ...
Loïc N.'s user avatar
  • 393
0 votes
1 answer
3k views

I need convert an image from BGR to YCbCr in Python using OpenCV. I have an image with size/resolution 512x512, but when the image is opened, the size is 128x128. I'm doing: image = cv2.imread(...
Flávio Losada's user avatar
5 votes
0 answers
2k views

I am trying to convert an mp3 file to pcm file and trying to play it. I want the values as int16. I was able to successfully convert it using MediaCodec and MediaExtractor in android. And i was able ...
hushed_voice's user avatar
  • 3,666
0 votes
2 answers
2k views

We have a requirement where we will be storing data in JSON-LD format for maintaining a catalog and data from the catalog will be pulled in batches to a graph database which supports the RDF data ...
Raghav salotra's user avatar
1 vote
1 answer
3k views

I have dumped a sql table for cities, regions & countries. I have the .sql files in my local machine. I need to convert them to CSV format. So I have a 2 part question. 1): What is the best way ...
user avatar
1 vote
1 answer
4k views

I have a map data whose format is rds. Now I want to use this data in another software which asks for shp format. How to convert rds format data into shp format in R?
Vesper's user avatar
  • 87
0 votes
1 answer
107 views

I trying to display image in pdf when click on print then pdf file is open i try this on button click Dim datastram = New StringBuilder("") Dim bodystringmain As StringBuilder = New ...
user 123's user avatar
3 votes
1 answer
16k views

I am trying to take a response from an API that reports back a JSON object and convert that to a markdown output to present it in a more readable format. I am attempting to use pypandoc to do this and ...
Seth Wahle's user avatar