{"id":50990354,"url":"https://github.com/fzimmermann89/siemens2mrd","last_synced_at":"2026-06-20T01:32:12.417Z","repository":{"id":346651529,"uuid":"1190059764","full_name":"fzimmermann89/siemens2mrd","owner":"fzimmermann89","description":"Siemens to ISMRMRD converter and editor","archived":false,"fork":false,"pushed_at":"2026-03-25T13:56:47.000Z","size":1180,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-26T01:22:12.554Z","etag":null,"topics":["ismrmrd","ismrmrd-conversion","mri","mri-data","raw-data","siemens","twix"],"latest_commit_sha":null,"homepage":"https://siemens2mrd.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fzimmermann89.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-23T23:42:03.000Z","updated_at":"2026-03-25T13:56:51.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/fzimmermann89/siemens2mrd","commit_stats":null,"previous_names":["fzimmermann89/siemens2mrd"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/fzimmermann89/siemens2mrd","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fzimmermann89%2Fsiemens2mrd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fzimmermann89%2Fsiemens2mrd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fzimmermann89%2Fsiemens2mrd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fzimmermann89%2Fsiemens2mrd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fzimmermann89","download_url":"https://codeload.github.com/fzimmermann89/siemens2mrd/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fzimmermann89%2Fsiemens2mrd/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34554511,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-19T02:00:06.005Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ismrmrd","ismrmrd-conversion","mri","mri-data","raw-data","siemens","twix"],"created_at":"2026-06-20T01:32:10.682Z","updated_at":"2026-06-20T01:32:12.411Z","avatar_url":"https://github.com/fzimmermann89.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# siemens2mrd\n\nBrowser-based Siemens Twix to ISMRMRD converter and ISMRMRD editor\n\nDeployed at https://siemens2mrd.app\n\n## Features\n\n- Convert Raw meassurment data from Siemens MRI scanners files to the open ISMRMRD file format\n- Modify the header during conversion or of existing files\n- Merge header information from a second MRD or XML file into the meassurment data\n- Runs fully in your browser, no MR or meta data is send to a server.\n\n## Development\n### Overview\nThis project is split into two parts:\n\n- `src/`: the React and TypeScript application\n- `ismrmrd_wasm/`: local wasm wrapper used to write and read MRD files in the browser\n\nThe XML and XSL parameter maps come from:\n\n- `siemens_to_ismrmrd/parameter_maps`\n\nThird-party license for the bundled components:\n\n- `THIRD_PARTY_NOTICES.md`\n\n### Requirements\n\n- Node.js and npm\n- Emscripten, only if you want to rebuild the wasm writer\n\n### Install\n\n```bash\ngit submodule update --init --recursive\nnpm install\n```\n\n### Run dev server\n\n```bash\nnpm run dev\n```\n\n### Production build\n\n```bash\nnpm run build\n```\n\nNormal app builds do not require Emscripten. The generated wasm runtime is already committed in:\n\n- `ismrmrd_wasm/build/ismrmrd_wasm_writer.js`\n- `ismrmrd_wasm/build/ismrmrd_wasm_writer.wasm`\n\nThe standard build also verifies that the committed wasm runtime still matches:\n\n- `ismrmrd_wasm/src/`\n- `ismrmrd_wasm/include/`\n- the pinned `ismrmrd` and `siemens_to_ismrmrd` submodule revisions\n\n### Rebuild the ISMRMRD wasm wrapper\n\nOnly needed if you change files in `ismrmrd_wasm/` or update the upstream `ismrmrd/` source.\n\n```bash\nnpm run build:ismrmrd-wasm\n```\n\nBy default the rebuild script expects Emscripten in:\n\n- `.tools/emsdk`\n\nYou can override that with:\n\n- `EMSDK_ROOT`\n- `EMCMAKE_BIN`\n- `EM_CONFIG`\n\nThe wrapper build fetches `libhdf5-wasm` automatically via CMake `FetchContent`.\nYou do not need to vendor or install HDF5 separately for the app. It is only needed when rebuilding the wrapper.\n\nThe generated runtime files are written to:\n\n- `ismrmrd_wasm/build/ismrmrd_wasm_writer.js`\n- `ismrmrd_wasm/build/ismrmrd_wasm_writer.wasm`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffzimmermann89%2Fsiemens2mrd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffzimmermann89%2Fsiemens2mrd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffzimmermann89%2Fsiemens2mrd/lists"}